@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f4;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bitter', serif;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #f9f9f4;
    border-bottom: none;
    transition: all 0.4s ease-out;
    padding: 1.5rem 100px;
}

header.scrolled {
    background-color: #f0f0e8;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

header .navbar-brand {
    font-family: 'Bitter', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4b6a4f;
    text-decoration: none;
}

header .nav-link {
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease-out;
}

header .nav-link:hover {
    color: #4b6a4f;
}

main {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 100px;
}

.section {
    padding: 220px 0;
    position: relative;
}

.section-title {
    margin-bottom: 3rem;
    text-align: left;
}

.hero-section {
    padding: 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.35);
    z-index: 5;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    padding-right: 2rem;
}

.intro-image {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.adaptogene-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.adaptogen-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 2px;
    text-align: center;
    border: 1px solid #e8e8e0;
    transition: all 0.4s ease-out;
    cursor: pointer;
}

.adaptogen-card:hover {
    border: 2px solid #4b6a4f;
    box-shadow: 0 12px 24px rgba(75, 106, 79, 0.15);
    transform: scale(1.05);
}

.adaptogen-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 2px;
}

.adaptogen-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #4b6a4f;
}

.adaptogen-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.detail-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8rem;
}

.detail-row {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    align-items: center;
}

.detail-row.reverse {
    grid-template-columns: 40% 60%;
}

.detail-image {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.detail-text h2 {
    color: #4b6a4f;
    margin-bottom: 1.5rem;
}

.detail-text p {
    margin-bottom: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border: 1px solid #e8e8e0;
    margin: 2rem 0;
}

.comparison-table th {
    background-color: #4b6a4f;
    color: white;
    padding: 1.25rem;
    text-align: left;
    font-family: 'Bitter', serif;
    font-weight: 700;
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid #e8e8e0;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.micronutrients-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.micronutrients-image {
    width: 100%;
    height: auto;
}

.micronutrients-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.nutrient-item {
    background-color: white;
    padding: 1.5rem;
    border-left: 4px solid #4b6a4f;
    border-radius: 2px;
}

.nutrient-item h4 {
    color: #4b6a4f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.nutrient-item p {
    color: #666;
    font-size: 0.95rem;
}

.quality-features {
    background-color: white;
    padding: 2rem;
    border: 1px solid #e8e8e0;
    border-radius: 2px;
}

.quality-features ul {
    list-style: none;
    padding-left: 0;
}

.quality-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.quality-features li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: #4b6a4f;
}

.faq-section {
    max-width: 900px;
}

.faq-item {
    background-color: white;
    margin-bottom: 1.5rem;
    border: 1px solid #e8e8e0;
    border-radius: 2px;
    padding: 1.5rem;
}

.faq-question {
    font-family: 'Bitter', serif;
    font-weight: 700;
    color: #4b6a4f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.faq-question::after {
    content: '▼';
    font-size: 0.75rem;
    transition: transform 0.3s ease-out;
}

.faq-item.open .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    margin-top: 1rem;
    color: #666;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

.haltung-section {
    background-color: white;
    padding: 3rem;
    border-radius: 2px;
    border-left: 4px solid #b89e7e;
}

.haltung-section h2 {
    color: #4b6a4f;
    margin-bottom: 1.5rem;
}

.disclaimer-block {
    background-color: #f5f5f0;
    padding: 2.5rem;
    border-left: 4px solid #7a98b2;
    border-radius: 2px;
    margin: 2rem 0;
}

.disclaimer-block h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.disclaimer-block p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
}

.beispiele-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.beispiel-card {
    background-color: white;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #e8e8e0;
    transition: all 0.4s ease-out;
}

.beispiel-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #4b6a4f;
}

.beispiel-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.beispiel-card-content {
    padding: 1.5rem;
}

.beispiel-card h3 {
    color: #4b6a4f;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.beispiel-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background-color: white;
    border-radius: 2px;
}

.cta-section h2 {
    color: #4b6a4f;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4b6a4f;
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    transition: all 0.4s ease-out;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #3a5240;
    box-shadow: 0 6px 16px rgba(75, 106, 79, 0.3);
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-image {
    width: 100%;
    height: auto;
}

.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 2px;
    border: 1px solid #e8e8e0;
}

.contact-form h2 {
    color: #4b6a4f;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease-out;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4b6a4f;
    box-shadow: 0 0 0 3px rgba(75, 106, 79, 0.1);
}

.form-disclaimer {
    background-color: #f5f5f0;
    padding: 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.form-button {
    width: 100%;
    padding: 1rem;
    background-color: #4b6a4f;
    color: white;
    border: none;
    border-radius: 2px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease-out;
}

.form-button:hover {
    background-color: #3a5240;
}

footer {
    background-color: #2c2c2c;
    color: #ddd;
    padding: 3rem 100px;
    margin-top: 6rem;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

footer h4 {
    color: white;
    font-family: 'Bitter', serif;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer a {
    color: #b89e7e;
    text-decoration: none;
    transition: color 0.3s ease-out;
}

footer a:hover {
    color: white;
}

footer .footer-text {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.7;
}

footer .contact-info {
    font-size: 0.95rem;
    line-height: 1.8;
}

footer .contact-info p {
    margin-bottom: 0.5rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #f9f9f4;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 4px;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    margin: 0;
    color: #4b6a4f;
}

.close-button {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease-out;
}

.close-button:hover {
    color: #333;
}

.modal-body {
    color: #555;
    line-height: 1.8;
}

.modal-body h3 {
    color: #4b6a4f;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body ul,
.modal-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: white;
    padding: 1.5rem 100px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-banner.hidden {
    display: none;
}

.cookie-text {
    flex: 1;
    margin-right: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease-out;
}

.cookie-accept {
    background-color: #4b6a4f;
    color: white;
}

.cookie-accept:hover {
    background-color: #3a5240;
}

.cookie-decline {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.cookie-decline:hover {
    background-color: rgba(255,255,255,0.1);
}

.cookie-more {
    color: #b89e7e;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.95rem;
    font-family: 'Roboto', sans-serif;
}

.cookie-more:hover {
    color: white;
}

.thank-you-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
    z-index: 3000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from { transform: translate(-50%, -60%); opacity: 0; }
    to { transform: translate(-50%, -50%); opacity: 1; }
}

.thank-you-message h2 {
    color: #4b6a4f;
    margin-bottom: 1rem;
}

.thank-you-message p {
    color: #666;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    header,
    main,
    footer {
        padding-left: 60px;
        padding-right: 60px;
    }
    
    main {
        max-width: 100%;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    header,
    main,
    footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    header {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .section {
        padding: 120px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .intro-section,
    .contact-section,
    .detail-row,
    .detail-row.reverse,
    .micronutrients-section {
        grid-template-columns: 1fr;
    }
    
    .adaptogene-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .beispiele-grid {
        grid-template-columns: 1fr;
    }
    
    footer .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-banner {
        padding: 1rem 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-text {
        margin-right: 0;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-button {
        width: 100%;
    }
}
