/* 
* Voedingsplan Samenstellen - Lunesthirae
* Styles.css - Main stylesheet
*/

/* ----- Base Styles ----- */
:root {
    /* Colors */
    --color-sage: #5F7161;
    --color-sage-light: #8B9A84;
    --color-cream: #E9DAC1;
    --color-cream-light: #F5EFE6;
    --color-terracotta: #C8B6A6;
    --color-terracotta-dark: #A68B7C;
    --color-yellow: #FFEEB3;
    --color-yellow-light: #FFF8E3;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-shadow: rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Borders & Shadows */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --shadow-sm: 0 2px 8px var(--color-shadow);
    --shadow-md: 0 4px 16px var(--color-shadow);
    --shadow-lg: 0 8px 24px var(--color-shadow);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
    color: var(--color-sage);
    font-weight: 600;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--color-sage);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-sage-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-md);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-terracotta);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    color: var(--color-text-light);
}

/* ----- Buttons ----- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-medium);
    font-size: 0.9rem;
    border: none;
}

.btn-primary {
    background-color: var(--color-sage);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-sage-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background-color: var(--color-cream);
    color: var(--color-text);
}

.btn-secondary:hover {
    background-color: var(--color-terracotta);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ----- Header & Navigation ----- */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
}

.logo a {
    display: block;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: var(--space-md);
}

.nav-list a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-list a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-sage);
    transition: var(--transition-fast);
}

.nav-list a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-sage);
    border-radius: 3px;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition-fast);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* ----- Hero Section ----- */
.hero-section {
    padding: calc(var(--space-xl) + 80px) 0 var(--space-lg);
    background: linear-gradient(135deg, var(--color-cream-light) 0%, var(--color-yellow-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: var(--space-md);
    color: var(--color-sage);
}

.hero-text .subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.badge {
    background-color: var(--color-cream);
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

/* ----- What You'll Learn Section ----- */
.wat-je-leert-section {
    padding: var(--space-xl) 0;
    background-color: var(--color-bg);
}

.learn-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.learn-card {
    background-color: var(--color-cream-light);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    text-align: center;
}

.learn-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm);
    background-color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.learn-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.healthy-plate-visual {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-md);
    background-color: var(--color-yellow-light);
    border-radius: var(--border-radius-lg);
}

.plate-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    margin: var(--space-md) auto;
}

.plate-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.plate-section {
    position: absolute;
    border: 2px solid white;
}

.plate-section::before {
    content: attr(data-label);
    position: absolute;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.vegetables {
    background-color: #8CC084;
    width: 50%;
    height: 100%;
    left: 0;
}

.vegetables::before {
    top: 45%;
    left: 20%;
    color: white;
}

.proteins {
    background-color: #E8B558;
    width: 25%;
    height: 50%;
    right: 0;
    top: 0;
}

.proteins::before {
    top: 20%;
    right: 10%;
    color: var(--color-text);
    transform: translateX(-50%);
}

.carbs {
    background-color: #BC8F5E;
    width: 25%;
    height: 50%;
    right: 0;
    bottom: 0;
}

.carbs::before {
    bottom: 20%;
    right: 10%;
    color: white;
    transform: translateX(-50%);
}

.plate-description {
    font-style: italic;
    color: var(--color-text-light);
}

/* ----- For Who Section ----- */
.voor-wie-section {
    padding: var(--space-xl) 0;
    background-color: var(--color-cream-light);
    position: relative;
}

.voor-wie-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/voor.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.audience-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-md) 0;
    z-index: 1;
}

.audience-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background-color: var(--color-terracotta);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
}

.timeline-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-content {
    width: calc(50% - 40px);
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.3rem;
}

/* ----- Methodology Section ----- */
.de-methode-section {
    padding: var(--space-xl) 0;
    background-color: white;
}

.methode-content {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.methode-image {
    flex: 1;
}

.methode-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.methode-text {
    flex: 1.5;
}

.methode-intro {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
}

.methode-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.methode-point h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: var(--color-sage);
}

.quote-box {
    background-color: var(--color-yellow-light);
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--color-terracotta);
    margin-top: var(--space-md);
}

.quote-box blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.quote-author {
    text-align: right;
    font-weight: 600;
}

/* ----- How it Works Section ----- */
.zo-werkt-het-section {
    padding: var(--space-xl) 0;
    background-color: var(--color-cream-light);
}

.course-format {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.format-item {
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.format-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.format-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm);
    background-color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.format-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.format-item h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.course-schedule {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.course-schedule h3 {
    text-align: center;
    margin-bottom: var(--space-md);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.schedule-week {
    border: 2px solid var(--color-cream);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-medium);
}

.schedule-week:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--color-sage);
}

.week-number {
    background-color: var(--color-sage);
    color: white;
    padding: var(--space-sm);
    text-align: center;
    font-weight: 700;
}

.week-content {
    padding: var(--space-sm);
}

.week-content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.course-details {
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-top: 1px solid var(--color-cream);
    padding-top: var(--space-md);
}

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

/* ----- Pricing Section ----- */
.prijzen-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--color-cream-light) 0%, white 100%);
}

.pricing-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-controls {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.tab-control {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.tab-control::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-terracotta-dark);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.tab-control.active {
    color: var(--color-sage);
}

.tab-control.active::after {
    transform: scaleX(1);
}

.tab-content {
    position: relative;
}

.pricing-tab {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.pricing-tab.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-header {
    padding: var(--space-md);
    background-color: var(--color-cream-light);
    text-align: center;
    position: relative;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-sage);
    margin-bottom: var(--space-sm);
}

.price-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    font-size: 1.5rem;
}

.price-features {
    padding: var(--space-md);
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    margin-bottom: var(--space-sm);
    padding-left: 1.5rem;
    position: relative;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: 700;
}

.price-btn {
    display: block;
    margin: var(--space-sm) var(--space-md) var(--space-md);
}

/* ----- Reviews Section ----- */
.ervaringen-section {
    padding: var(--space-xl) 0;
    background-color: var(--color-yellow-light);
    background-image: url('images/er.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.reviews-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.review-card {
    flex: 0 0 100%;
    padding: 0 var(--space-sm);
}

.review-content {
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--space-sm);
    overflow: hidden;
    border: 3px solid var(--color-cream);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-text {
    font-style: italic;
    margin-bottom: var(--space-md);
}

.review-result, .review-tip {
    background-color: var(--color-cream-light);
    padding: var(--space-sm);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-prev, .carousel-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 var(--space-sm);
    color: var(--color-sage);
}

.carousel-dots {
    display: flex;
    gap: var(--space-xs);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-terracotta);
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    opacity: 1;
    background-color: var(--color-sage);
}

/* ----- FAQ Section ----- */
.faq-section {
    padding: var(--space-xl) 0;
    background-color: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-sm);
    border: 1px solid var(--color-cream);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.faq-question {
    padding: var(--space-md);
    background-color: var(--color-cream-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.accordion-icon::before, .accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-sage);
    transition: var(--transition-fast);
}

.accordion-icon::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

.accordion-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
}

.faq-item.active .accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    padding: var(--space-md);
    max-height: 500px;
}

/* ----- Registration Section ----- */
.inschrijving-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    color: white;
}

.inschrijving-section .section-title,
.inschrijving-section .section-intro {
    color: white;
}

.inschrijving-section .section-title::after {
    background-color: white;
}

.registration-container {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.registration-form {
    flex: 1;
    background-color: white;
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--color-text);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-cream);
    border-radius: var(--border-radius-md);
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-sage);
    box-shadow: 0 0 0 2px rgba(95, 113, 97, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
}

.registration-image {
    flex: 1;
}

.registration-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ----- Map Section ----- */
.locatie-section {
    padding: var(--space-xl) 0;
    background-color: white;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ----- Footer ----- */
.site-footer {
    background-color: var(--color-sage);
    color: white;
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo img {
    margin-bottom: var(--space-sm);
    height: 50px;
    width: auto;
}

.footer-nav h3,
.footer-legal h3,
.footer-newsletter h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li,
.footer-legal ul li {
    margin-bottom: var(--space-xs);
}

.footer-nav ul li a,
.footer-legal ul li a {
    color: var(--color-cream-light);
    transition: var(--transition-fast);
}

.footer-nav ul li a:hover,
.footer-legal ul li a:hover {
    color: white;
}

.newsletter-form .form-group {
    margin-bottom: var(--space-sm);
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .checkbox-group label {
    color: var(--color-cream-light);
}

.newsletter-form .checkbox-group a {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-cream-light);
}

/* ----- Cookie Consent ----- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-text);
    color: white;
    padding: var(--space-md);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    padding-right: var(--space-md);
}

.cookie-content a {
    color: var(--color-cream);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

/* ----- Responsive Styles ----- */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-content,
    .methode-content,
    .registration-container {
        flex-direction: column;
    }
    
    .hero-image,
    .methode-image,
    .registration-image {
        margin-top: var(--space-md);
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 40px;
    }
    
    .timeline-item .timeline-icon {
        position: absolute;
        left: 0;
        margin-right: 20px;
    }
    
    .audience-timeline::before {
        left: 20px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: var(--space-sm);
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: var(--space-md) 0;
        box-shadow: var(--shadow-sm);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-medium);
        z-index: 999;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list li {
        margin: var(--space-xs) 0;
    }
    
    .methode-points {
        grid-template-columns: 1fr;
    }
    
    .course-details {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .learn-cards,
    .course-format,
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto var(--space-sm);
    }
}

/* ----- Animations ----- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.fade-in {
    animation: fadeIn var(--transition-slow) both;
}

.slide-up {
    animation: slideUp var(--transition-slow) both;
}

.slide-down {
    animation: slideDown var(--transition-slow) both;
}