/* Wedding Website - Elegant Nature-Inspired Design */

:root {
    /* Color Palette - Elegant Nature */
    --forest-dark: #3b4e00;
    --forest-medium: #3b4e00;
    --sage: #3b4e00;
    --cream: #f4f1ea;
    --gold: #d4af37;
    --terracotta: #c77966;
    --stone: #b5a99a;
    --text-black: #000000;
    
    /* Typography */
    --font-display: 'Great Vibes', cursive;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Effects */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: #000000;
    background-color: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

/* Home page specific overlay with scroll fade */
body.page-home::after {
    display: none;
}

.home-overlay {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: var(--space-xs);
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
    position: fixed;
    top: var(--space-sm);
    right: var(--space-md);
    z-index: 1000;
}

.language-switcher a {
    padding: 0.4rem 1rem;
    text-decoration: none;
    color: var(--text-black);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: var(--transition);
}

/* Mobile: hide fixed switcher, only show the one in nav */
@media (max-width: 1024px) {
    /* Hide the fixed version */
    body > .language-switcher {
        display: none !important;
    }
    
    /* Show only nav version */
    .nav-container .language-switcher {
        display: flex !important;
        position: relative;
        box-shadow: none;
        background: transparent;
        padding: 0;
        gap: 0.25rem;
    }
    
    .nav-container .language-switcher a {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }
}

.language-switcher a.active {
    background: var(--forest-dark);
    color: white;
}

.language-switcher a:hover:not(.active) {
    background: var(--cream);
}

/* Fixed Language Switcher - Top Right */
.language-switcher-fixed {
    position: relative;
    z-index: 99;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    margin: 10px 20px 0 auto;
    width: fit-content;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.language-switcher-fixed a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.language-switcher-fixed a.active {
    color: var(--forest-dark);
}

.language-switcher-fixed a:hover:not(.active) {
    color: #98bb00;
}

@media (max-width: 768px) {
    .language-switcher-fixed {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
    }
    
    .language-switcher-fixed a {
        font-size: 0.85rem;
    }
}

/* Login Page */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-medium) 100%);
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: var(--space-md);
}

.login-box {
    background: white;
    padding: var(--space-lg);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--cream);
}

.login-header h1 {
    color: var(--text-black);
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.wedding-date {
    color: var(--text-black);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
}

.login-box h2 {
    text-align: center;
    margin-bottom: var(--space-xs);
}

.subtitle {
    text-align: center;
    color: var(--stone);
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--text-black);
}

.form-group input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--text-black);
    box-shadow: 0 0 0 3px rgba(45, 90, 71, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    background: #000000;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-primary:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.error-message {
    background: #fee;
    color: #c33;
    padding: var(--space-sm);
    border-radius: 8px;
    margin-bottom: var(--space-md);
    text-align: center;
    font-weight: 500;
}

/* Main Navigation */
.main-nav {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-dark);
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-sm);
    align-items: center;
}

.nav-menu a {
    padding: 1.2rem 1rem;
    text-decoration: none;
    color: var(--forest-dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #98bb00;
}

.btn-rsvp {
    background: var(--gold);
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 50px;
}

.btn-rsvp:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

/* Hamburger Menu Button (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--forest-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-container {
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-brand {
        grid-column: 1;
    }
    
    .language-switcher {
        grid-column: 3;
        justify-self: end;
    }
    
    .language-switcher a {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .nav-toggle {
        grid-column: 4;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        grid-column: 1 / -1;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 1rem;
        width: 100%;
        display: block;
    }
    
    .btn-rsvp {
        border-radius: 8px !important;
        margin: 0.5rem 1rem;
        width: calc(100% - 2rem);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150vh;
    z-index: 0;
    will-change: transform;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 46, 0.7) 0%, rgba(45, 90, 71, 0.5) 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: var(--space-md);
}

.couple-names {
    font-size: 5rem;
    margin-bottom: var(--space-sm);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-family: var(--font-display);
    font-style: italic;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
}

.wedding-details {
    display: inline-block;
}

.wedding-details p {
    font-size: 1.3rem;
    margin: 0.3rem 0;
}

/* Content Section */
.content-section {
    padding: var(--space-xl) var(--space-md);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: var(--space-lg);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.welcome-message {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.welcome-message h2 {
    color: var(--text-black);
    margin-bottom: var(--space-md);
}

.welcome-message p {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    color: var(--text-black);
}

.rsvp-reminder {
    background: white;
    padding: var(--space-lg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: var(--space-md) 0;
    text-align: center;
}

.rsvp-reminder p {
    color: var(--text-black);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    margin-top: var(--space-md);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: white;
    color: #000000;
    text-decoration: none;
    border: 2px solid #000000;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
}

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.quick-link-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.quick-link-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.quick-link-card h3 {
    padding: var(--space-md);
    padding-bottom: var(--space-sm);
}

.quick-link-card .btn-secondary {
    margin: 0 var(--space-md) var(--space-md);
}

/* Footer */
.main-footer {
    background: white;
    color: #3b4e00;
    padding: var(--space-md) var(--space-md);
    text-align: center;
    margin-top: var(--space-lg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

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

.main-footer a {
    color: #98bb00;
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}

.footer-love {
    margin-top: var(--space-xs);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    /* Typography adjustments */
    .couple-names {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .wedding-details p {
        font-size: 1.1rem;
    }
    
    /* Container padding - MINIMAL */
    .container {
        padding: 0 0.5rem; /* Réduit de 1rem à 0.5rem */
    }
    
    .content-section {
        padding: 1rem 0; /* Réduit de 2rem à 1rem */
    }
    
    .nav-container {
        padding: 0.5rem 0.75rem; /* Très réduit */
    }
    
    /* Quick links */
    .quick-links {
        grid-template-columns: 1fr;
        gap: 0.75rem; /* Réduit */
    }
    
    /* Page titles */
    .page-title {
        font-size: 2rem; /* Réduit de 2.5rem */
        margin-bottom: 0.75rem; /* Réduit */
    }
    
    h1 {
        font-size: 1.75rem; /* Réduit de 2rem */
        margin-bottom: 0.5rem;
    }
    
    h2 {
        font-size: 1.5rem; /* Réduit de 1.75rem */
        margin-bottom: 0.5rem;
    }
    
    h3 {
        font-size: 1.25rem; /* Réduit de 1.4rem */
        margin-bottom: 0.4rem;
    }
    
    h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
}

/* Placeholder Content */
.placeholder-content {
    max-width: 700px;
    margin: 3rem auto;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.placeholder-content p {
    font-size: 1.2rem;
    color: var(--text-black);
    line-height: 1.8;
}

.placeholder-content h2 {
    color: var(--text-black);
    margin-bottom: 1.5rem;
}

.gallery-preview {
    margin-top: 2rem;
}

.gallery-preview img {
    transition: var(--transition);
}

.gallery-preview img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES
   ========================================================================== */

/* Container Variations */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Page Titles */
.page-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: 3rem;
}

/* Weekend Schedule (Home Page) */
.weekend-schedule {
    margin: var(--space-xl) 0;
    text-align: center;
}

.venue-subtitle {
    color: var(--text-black);
    font-size: 1.8rem;
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
    font-weight: 400;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.schedule-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.schedule-card.highlight {
    background: var(--forest-dark);
    color: white;
}

.schedule-card h3 {
    color: var(--text-black);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.schedule-card.highlight h3 {
    color: var(--text-black);
}

.event-name {
    font-size: 3rem;
    font-family: var(--font-display);
    margin: var(--space-sm) 0;
    font-weight: 400;
}

.event-time {
    color: var(--text-black);
    font-style: italic;
}

.schedule-card.highlight .event-time,
.schedule-card.highlight .event-attire {
    color: var(--text-black);
}

.event-attire {
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-black);
}

/* Story Page */
.story-content {
    background: white;
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.story-image {
    margin-bottom: var(--space-lg);
    border-radius: 15px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: var(--space-md);
    color: var(--text-black);
}

.story-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.story-images-grid img {
    width: 100%;
    border-radius: 10px;
}

/* Gallery Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 12px 12px 0 0;
}

.gallery-caption {
    padding: var(--space-sm) var(--space-xs);
    font-size: 0.85rem;
    color: #333;
    text-align: center;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
    background: white;
    border-radius: 0 0 12px 12px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    flex-direction: column;
}

.lightbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: -1;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #000;
    cursor: pointer;
    z-index: 10000;
    font-weight: 300;
    line-height: 1;
}

.lightbox-close:hover {
    color: #98bb00;
}

.lightbox-caption {
    color: #000;
    text-align: center;
    font-size: 1rem;
    font-style: italic;
    margin-top: var(--space-md);
    padding: 0 var(--space-lg);
    max-width: 90%;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: var(--space-sm) var(--space-md);
}

/* Gift Modal */
.gift-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.gift-modal.active {
    display: flex;
}

.gift-modal-content {
    background: white;
    padding: var(--space-xl);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.gift-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: 300;
    color: #000;
    cursor: pointer;
    line-height: 1;
}

.gift-modal-close:hover {
    color: #98bb00;
}

.gift-modal-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
}

.gift-bank-details {
    width: 100%;
}

.gift-bank-details p {
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.gift-qr-code {
    text-align: center;
}

@media (max-width: 768px) {
    .gift-modal-content {
        width: 95%;
        padding: var(--space-lg);
    }
}

/* Venue Page */
.venue-hero {
    margin-bottom: var(--space-lg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.venue-hero img {
    width: 100%;
    height: auto;
}

.venue-info-box {
    background: white;
    padding: var(--space-lg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: var(--space-lg);
}

.venue-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-black);
    margin: var(--space-md) 0;
}

.address {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-black);
}

.map-container {
    margin: var(--space-lg) 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.venue-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.venue-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 2 / 3;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.venue-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.venue-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.venue-gallery-item:hover img {
    transform: scale(1.05);
}

.venue-history {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-black);
    margin: var(--space-md) 0;
}

@media (max-width: 768px) {
    .venue-gallery {
        grid-template-columns: 1fr;
    }
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.transport-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.transport-card.highlight {
    background: var(--cream);
    border: 2px solid #000000;
}

.transport-card h3 {
    color: var(--text-black);
    margin-bottom: var(--space-sm);
}

.info-link a {
    color: var(--text-black);
    text-decoration: underline;
}

/* Timeline Page */
.timeline-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-black);
    font-family: var(--font-display);
    margin-bottom: var(--space-xl);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--sage);
}

.timeline-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 144px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--cream);
}

.timeline-item.highlight::after {
    background: var(--terracotta);
    width: 18px;
    height: 18px;
    left: 142px;
}

.timeline-time {
    width: 140px;
    text-align: right;
    font-weight: 600;
    color: var(--text-black);
    padding-top: 4px;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding: var(--space-md);
    border-radius: 12px;
    box-shadow: var(--shadow);
    background: white;
    transition: var(--transition);
}

/* Gradient progression through timeline items */
.timeline-item:nth-child(1) .timeline-content {
    background: #f8faf8;
    border-left: 4px solid #c8d5c8;
}

.timeline-item:nth-child(2) .timeline-content {
    background: #f0f5f0;
    border-left: 4px solid #b5c9b5;
}

.timeline-item:nth-child(3) .timeline-content {
    background: #e8f2e8;
    border-left: 4px solid #9db99d;
}

.timeline-item:nth-child(4) .timeline-content {
    background: #deeede;
    border-left: 4px solid #85a885;
}

.timeline-item:nth-child(5) .timeline-content {
    background: #d4e9d4;
    border-left: 4px solid #6d976d;
}

.timeline-item:nth-child(6) .timeline-content {
    background: var(--forest-dark);
    color: white;
    border-left: 4px solid #000000;
}

.timeline-item.highlight .timeline-content {
    background: var(--forest-dark);
    color: white;
    border-left: 4px solid #000000;
}

.timeline-content h3 {
    color: var(--text-black);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.timeline-item:nth-child(6) .timeline-content h3,
.timeline-item.highlight .timeline-content h3 {
    color: var(--text-black);
    font-size: 1.5rem;
}

.timeline-content p {
    color: var(--text-black);
    margin: 0;
}

.timeline-item:nth-child(6) .timeline-content p,
.timeline-item.highlight .timeline-content p {
    color: var(--text-black);
}

/* Info Page */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.info-card {
    background: white;
    padding: var(--space-lg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-card.highlight {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-medium) 100%);
    color: white;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.info-card h3 {
    color: var(--text-black);
    margin-bottom: var(--space-sm);
}

.info-card.highlight h3 {
    color: var(--text-black);
}

.info-card p {
    line-height: 1.7;
}

.info-card.highlight p {
    color: white;
}

/* Visit Page */
.visit-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-black);
    margin-bottom: var(--space-xl);
}

.visit-section {
    margin-bottom: var(--space-xl);
}

.visit-section h2 {
    color: var(--text-black);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid #000000;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.visit-card {
    background: white;
    padding: var(--space-md);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.visit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.visit-card h3 {
    color: var(--text-black);
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
}

.visit-card p {
    color: var(--text-black);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* RSVP Page */
.rsvp-deadline {
    text-align: center;
    font-size: 1.2rem;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: #fff5f0;
    border-radius: 10px;
}

.rsvp-form {
    background: white;
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.guest-group-title h3 {
    font-size: 1.8rem;
    text-align: center;
    color: var(--text-black);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid #000000;
}

.guest-section {
    background: var(--cream);
    padding: var(--space-lg);
    border-radius: 15px;
    margin-bottom: var(--space-md);
}

.guest-section h4 {
    color: var(--text-black);
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--text-black);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-black);
    box-shadow: 0 0 0 3px rgba(45, 90, 71, 0.1);
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Equal columns */
    gap: var(--space-sm);
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 1.5rem;
    min-height: 80px; /* Equal height for all */
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    background: #f9f9f9;
}

.radio-option:hover {
    border-color: var(--sage);
    background: white;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0; /* Don't shrink the radio button */
}

.radio-option input[type="radio"]:checked {
    accent-color: var(--text-black);
}

.radio-label {
    display: block;
    flex: 1;
    line-height: 1.5;
    font-weight: 500;
}

/* Mobile: Stack radio options vertically */
@media (max-width: 768px) {
    .radio-group:not(.vertical) {
        grid-template-columns: 1fr;
    }
    
    .radio-option {
        min-height: 60px;
    }
}

.form-group-boxed {
    background: #fff9f0;
    border: 2px solid #000000;
    padding: var(--space-lg);
    border-radius: 15px;
    margin: var(--space-lg) 0;
}

.form-group-boxed h4 {
    color: var(--text-black);
    margin-bottom: var(--space-sm);
}

.success-message {
    background: #e8f5e9;
    color: #2e7d32;
    padding: var(--space-md);
    border-radius: 10px;
    margin-bottom: var(--space-md);
    text-align: center;
    font-weight: 600;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: var(--space-md);
    border-radius: 10px;
    margin-bottom: var(--space-md);
    text-align: center;
    font-weight: 600;
}

.info-message {
    background: #e3f2fd;
    color: #1565c0;
    padding: var(--space-md);
    border-radius: 10px;
    margin-bottom: var(--space-md);
    text-align: center;
    font-weight: 600;
}

.help-text {
    font-size: 0.9rem;
    color: var(--stone);
    margin-top: 0.5rem;
    font-style: italic;
}

.rsvp-note {
    text-align: center;
    color: var(--stone);
    font-size: 0.95rem;
    margin-top: var(--space-md);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* Timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-item::after {
        left: 14px;
    }
    
    .timeline-time {
        width: 100%;
        text-align: left;
        padding-left: 40px;
    }
    
    /* Grids */
    .story-images-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Timeline padding reduced */
    .timeline-item {
        padding: 0.75rem; /* Ajouté */
        margin-bottom: 0.75rem; /* Ajouté */
    }
    
    .timeline-content {
        padding: 0.75rem; /* Ajouté */
    }
    
    /* Info boxes */
    .info-box {
        padding: 0.75rem; /* Réduit */
        margin-bottom: 0.75rem;
    }
    
    /* Venue sections */
    .venue-section {
        padding: 0.75rem; /* Réduit */
        margin-bottom: 0.75rem;
    }
    
    /* Forms - MINIMAL PADDING */
    .form-group-boxed {
        padding: 0.75rem 0.5rem; /* Drastiquement réduit */
        margin: 0.75rem 0; /* Réduit */
    }
    
    .member-card {
        padding: 0.75rem; /* Réduit de 1.2rem à 0.75rem */
        margin-bottom: 0.75rem; /* Réduit */
    }
    
    .member-card h4 {
        font-size: 1rem; /* Réduit */
        margin-bottom: 0.5rem;
    }
    
    .menu-section {
        padding: 0.75rem; /* Réduit de 1.2rem à 0.75rem */
        margin-top: 0.75rem; /* Réduit */
    }
    
    .menu-title {
        font-size: 1.1rem; /* Réduit de 1.2rem */
        margin-bottom: 0.75rem; /* Réduit */
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .submit-button {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    
    /* Cards */
    .quick-link-card {
        margin-bottom: 1rem;
    }
    
    /* Lodging grid */
    .lodging-grid {
        grid-template-columns: 1fr;
    }
    
    /* Language switcher - make it more mobile friendly */
    .language-switcher {
        gap: 0.5rem;
    }
    
    .language-switcher button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Fix checkbox and radio button alignment in forms */
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    margin-top: 0;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.6;
}

.radio-label input[type="radio"] {
    flex-shrink: 0;
    margin: 0;
}

.radio-label span {
    flex: 1;
    line-height: 1.6;
}

/* Enhanced Visit Cards with Images */
.visit-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.visit-card-enhanced {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.visit-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.visit-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.visit-card-enhanced:hover .visit-image img {
    transform: scale(1.05);
}

.visit-content {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.visit-content h3 {
    color: var(--text-black);
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
}

.visit-content p {
    color: var(--text-black);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    flex: 1;
}

.visit-link {
    display: inline-block;
    color: var(--text-black);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.visit-link:hover {
    color: var(--text-black);
    transform: translateX(5px);
}

/* Lodging Page */
.lodging-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-black);
    margin-bottom: var(--space-xl);
}

.lodging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.lodging-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.lodging-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.lodging-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.lodging-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.lodging-content {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lodging-content h3 {
    color: var(--text-black);
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.lodging-content p {
    color: var(--text-black);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    flex: 1;
}

.lodging-link {
    display: inline-block;
    color: var(--text-black);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.lodging-link:hover {
    color: var(--text-black);
    transform: translateX(5px);
}

.lodging-note {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: white;
    box-shadow: var(--shadow);
    border-radius: 15px;
    text-align: center;
}

.lodging-note p {
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    color: var(--text-black);
}

.lodging-stars {
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
    line-height: 1;
}

/* ========================================
   RSVP Form - New Menu Design
   ======================================== */

.guest-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.guest-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--sand);
}

.form-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.3rem;
    color: var(--text-black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-subtitle {
    color: var(--stone);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Fancy Radio Buttons (Will you be attending?) */
.radio-buttons-fancy {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Equal columns */
    gap: 1rem;
    margin-top: 1rem;
}

.radio-fancy {
    cursor: pointer;
    display: block;
}

.radio-fancy input[type="radio"] {
    display: none;
}

.radio-fancy-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px; /* Minimum height for equal boxes */
    padding: 1.2rem 1.5rem;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.radio-fancy input[type="radio"]:checked + .radio-fancy-box {
    background: var(--forest-light);
    border-color: var(--text-black);
    color: var(--text-black);
    font-weight: 600;
}

.radio-fancy:hover .radio-fancy-box {
    border-color: var(--text-black);
}

/* Responsive: Stack radio buttons on mobile */
@media (max-width: 768px) {
    .radio-buttons-fancy {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    
    .radio-fancy-box {
        min-height: 60px; /* Smaller on mobile */
    }
}

/* Menu Section */
.menu-section {
    background: #f9faf8;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.menu-title {
    font-size: 1.5rem;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: var(--font-display);
}

.menu-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--forest-medium);
}

.menu-item h5 {
    color: var(--text-black);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-description {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-note {
    color: var(--stone);
    font-style: italic;
    margin-bottom: 1rem;
}

.menu-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-black);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Plat Choice */
.menu-item-choice {
    border-left-color: var(--text-black);
}

.plat-choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.plat-choice-label {
    cursor: pointer;
    display: block;
}

.plat-choice-label input[type="radio"] {
    display: none;
}

.plat-choice-box {
    display: block;
    padding: 1rem;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.plat-choice-label input[type="radio"]:checked + .plat-choice-box {
    background: #fff8e6;
    border-color: var(--text-black);
}

.plat-choice-label:hover .plat-choice-box {
    border-color: var(--text-black);
}

.plat-choice-box strong {
    color: var(--text-black);
    display: block;
    margin-bottom: 0.3rem;
}

/* Simple Radio Buttons (Accommodation) */
.radio-buttons-simple {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.radio-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1.05rem;
}

.radio-simple input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Checkbox Large (Plus-one) */
.checkbox-label-large {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 1.05rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label-large:hover {
    background: #f0f0f0;
}

.checkbox-label-large input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Group Questions */
.group-questions {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    text-align: center;
    color: var(--stone);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Textarea */
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s;
}

textarea:focus {
    outline: none;
    border-color: var(--text-black);
}

/* Responsive */
@media (max-width: 768px) {
    .radio-buttons-fancy {
        grid-template-columns: 1fr;
    }
    
    .plat-choices {
        grid-template-columns: 1fr;
    }
    
    .menu-options {
        flex-direction: column;
        gap: 0.7rem;
    }
    
    .guest-card {
        padding: 1.5rem;
    }
    
    .menu-section {
        padding: 1.5rem;
    }
}

/* RSVP Menu System Improvements */
.member-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.member-name {
    font-size: 1.8rem;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--sage);
    font-family: var(--font-display);
}

.menu-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.menu-item {
    background: #f9faf9;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--forest-medium);
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: #f5f7f5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.menu-item .menu-title {
    font-size: 1.2rem;
    color: var(--text-black);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: left;
}

.menu-item .menu-description {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.menu-item .menu-subtitle {
    color: var(--text-black);
    font-weight: 600;
    margin: 1rem 0 0.8rem 0;
    font-size: 1rem;
}

.menu-item .menu-note {
    color: var(--stone);
    margin: 0.5rem 0 0.8rem 0;
    padding: 0.5rem;
    background: #fff;
    border-radius: 6px;
    border-left: 3px solid #000000;
}

.menu-item .menu-note small {
    font-size: 0.9rem;
}

.checkbox-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    background: white;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.checkbox-option:hover {
    background: var(--sage-light);
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--text-black);
}

.radio-group.vertical {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.radio-option.dish-choice {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.radio-option.dish-choice:hover {
    border-color: var(--text-black);
    background: var(--sage-light);
}

.radio-option.dish-choice input[type="radio"]:checked + .radio-label {
    color: var(--text-black);
    font-weight: 600;
}

.radio-option.dish-choice:has(input[type="radio"]:checked) {
    border-color: var(--text-black);
    background: var(--sage-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.member-separator {
    border: none;
    border-top: 2px dashed var(--sage);
    margin: 2rem 0;
}

.group-section {
    background: var(--sage-light);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.section-title {
    font-size: 1.5rem;
    color: var(--text-black);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

/* Responsive */
@media (max-width: 768px) {
    .member-section {
        padding: 1.5rem;
    }
    
    .menu-item {
        padding: 0.6rem; /* Réduit de 1rem à 0.6rem */
        margin-bottom: 0.6rem; /* Réduit */
    }
    
    .menu-item h5 {
        font-size: 0.95rem; /* Réduit de 1rem */
        margin-bottom: 0.3rem; /* Réduit */
    }
    
    .menu-description {
        font-size: 0.85rem; /* Réduit de 0.9rem */
        line-height: 1.4; /* Réduit de 1.5 */
        margin-bottom: 0.5rem; /* Réduit */
    }
    
    .menu-note {
        font-size: 0.8rem; /* Réduit de 0.85rem */
        margin-bottom: 0.5rem; /* Réduit */
        line-height: 1.3;
    }
    
    .checkbox-label {
        font-size: 0.85rem; /* Réduit de 0.9rem */
        padding: 0.3rem 0; /* Ajouté pour réduire espace vertical */
    }
    
    .checkbox-options {
        flex-direction: column;
        gap: 0.5rem; /* Réduit de 0.8rem */
    }
    
    .menu-options {
        gap: 0.75rem; /* Réduit */
        margin-top: 0.5rem; /* Réduit */
    }
    
    .plat-choices {
        grid-template-columns: 1fr;
        gap: 0.6rem; /* Réduit */
    }
    
    .radio-option {
        padding: 0.75rem; /* Réduit */
        min-height: 50px; /* Réduit de 60px */
    }
    
    /* Form inputs */
    .form-group {
        margin-bottom: 0.75rem; /* Réduit */
    }
    
    .form-group label {
        margin-bottom: 0.3rem; /* Réduit */
        font-size: 1.1rem;
    }
    
    input[type="text"],
    input[type="email"],
    textarea,
    select {
        padding: 0.6rem; /* Réduit */
        font-size: 0.9rem;
    }
    
    /* Submit button */
    .submit-button {
        padding: 0.9rem; /* Réduit de 1.2rem */
        font-size: 1rem;
        margin-top: 0.75rem;
    }
    
    /* Cards and sections */
    .quick-link-card {
        margin-bottom: 0.75rem; /* Réduit */
    }
    
    /* Lodging grid */
    .lodging-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .lodging-card {
        padding: 0;
    }
    
    .lodging-content {
        padding: 0.75rem; /* Réduit */
    }
}
}
