/* Reset und Grundlagen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #67bebc; /* Angepasst an Logo-Farbe */
    text-decoration: none;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #67bebc; /* Angepasst an Logo-Farbe */
}

.cta-button {
    background: #67bebc; /* Angepasst an Logo-Farbe */
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(103, 190, 188, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb); /* Helle, sanfte Farben */
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #636e72;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #67bebc, #4db6ac); /* Angepasst an Logo-Farbe */
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(103, 190, 188, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #2d3436;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.story-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 3rem;
    font-weight: 700;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f2f6;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #67bebc, #4db6ac); /* Angepasst an Logo-Farbe */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #2d3436;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #636e72;
    line-height: 1.6;
}

/* Premium Section */
.premium-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #67bebc, #4db6ac); /* Angepasst an Logo-Farbe */
    color: white;
}

.premium-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.premium-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.premium-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436; /* Dunklere Farbe für bessere Lesbarkeit */
}

.premium-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.premium-feature i {
    font-size: 1.5rem;
    color: #2d3436; /* Dunklere Farbe für bessere Lesbarkeit */
    margin-top: 0.25rem;
}

.premium-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d3436; /* Dunklere Farbe für bessere Lesbarkeit */
}

.premium-feature p {
    color: #2d3436; /* Dunklere Farbe für bessere Lesbarkeit */
    line-height: 1.6;
}

.premium-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 4rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item i {
    font-size: 3rem;
    color: #67bebc; /* Angepasst an Logo-Farbe */
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #636e72;
    line-height: 1.6;
}

/* Download Section */
.download-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
    text-align: center;
}

.download-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.download-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.download-btn.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.download-btn i {
    font-size: 2rem;
}

.download-btn div {
    text-align: left;
}

.download-btn span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.download-btn strong {
    display: block;
    font-size: 1.1rem;
}

.social-proof {
    margin-top: 2rem;
}

/* Sterne entfernt */

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 4rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #67bebc; /* Angepasst an Logo-Farbe */
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2d3436;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #636e72;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2d3436;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #67bebc; /* Angepasst an Logo-Farbe */
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #67bebc; /* Angepasst an Logo-Farbe */
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .story-content,
    .premium-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card,
    .premium-feature {
        padding: 1.5rem;
    }
}

/* Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.benefit-item,
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Fixer Header Abstand */
main {
    margin-top: 100px; /* 50px Header + extra Luft */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Ankerlinks nicht verdeckt */
}

/* Ensure content is fully visible when navigating via anchor links */
section[id] {
    scroll-margin-top: 60px;
}



/* Premium Section - Textfarbe angepasst */
.premium-text h3,
.premium-feature i,
.premium-feature h4,
.premium-feature p {
    color: #2d3436; /* Dunklere Farbe für bessere Lesbarkeit */
}

/* Header Download Button - Farbe angepasst */
.navbar .cta-button {
    background: #67bebc; /* Logo-Farbe */
    color: white !important;
}

.navbar .cta-button:hover {
    background: #4db6ac; /* Dunklere Variante der Logo-Farbe */
}





/* Language Switcher */
.language-switcher {
    display: flex;
    margin-left: 20px;
    border: 1px solid #67bebc;
    border-radius: 20px;
    overflow: hidden;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 8px 16px;
    color: #67bebc;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.lang-btn.active {
    background: #67bebc;
    color: white;
}

.lang-btn:hov}



/* Additional styles for legal pages */
.page-section {
    padding: 120px 0 80px;
    padding-top: 150px; /* genug Abstand unter dem fixen Header */
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5em;
    border-bottom: 2px solid #67bebc;
    padding-bottom: 10px;
}

.legal-content h3 {
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.legal-content h4 {
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.legal-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: #67bebc;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Contact page specific styles */
.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #67bebc;
}

.contact-method i {
    font-size: 2em;
    color: #67bebc;
    min-width: 50px;
}

.contact-method h3 {
    margin: 0 0 5px 0;
    color: #2c3e50;
}

.contact-method p {
    margin: 0;
    color: #666;
}

.contact-form {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #67bebc;
    box-shadow: 0 0 0 2px rgba(103, 190, 188, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ page specific styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #67bebc;
}

.faq-item h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.2em;
}

.faq-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Imprint page specific styles */
.imprint-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #67bebc;
}

.contact-details h3 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.contact-details h3:first-of-type {
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive design for legal pages */
@media (max-width: 768px) {
    .page-section {
        padding: 150px 0 60px;
    }
    
    .legal-content,
    .contact-info,
    .faq-container,
    .imprint-info {
        padding: 0 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-form {
        padding: 20px;
        margin-top: 30px;
    }
    
    .faq-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .contact-details {
        padding: 20px;
    }
}



/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgb(96, 188, 183); /* Türkis */
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(103, 190, 188, 0.3);
}

.scroll-to-top:hover {
    background: #4db6ac; /* Dunkleres Türkis */
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

