/* ============================================================================
   MODERN FULLSCREEN WEDDING WEBSITE
   Chaque section = plein écran avec animations smooth
   ============================================================================ */

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

:root {
    /* Palette Bohème */
    --primary: #6b8e6f;
    --primary-light: #a8b5a1;
    --primary-dark: #4a6b4d;
    
    --secondary: #c17a5f;
    --secondary-light: #e8a587;
    
    --gold: #d4a574;
    --gold-light: #e8c9a0;
    
    --cream: #f5f0e8;
    --sand: #e8ddd0;
    --beige: #d9c5b2;
    
    --gray-800: #2d2620;
    --gray-700: #3d3630;
    --gray-600: #5a5045;
    --gray-500: #7a6e5f;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================================================
   NAVIGATION - Fixed & Minimale
   ============================================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color 0.3s;
    z-index: 1001;
}

.navbar.scrolled .navbar-brand {
    color: var(--gray-800);
}

.navbar-nav {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.navbar-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.navbar.scrolled .navbar-nav a {
    color: var(--gray-700);
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.navbar-nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    transition: all 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background: var(--gray-800);
}

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

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

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

/* Mobile Menu */
@media (max-width: 968px) {
    .navbar {
        padding: 1rem 2rem;
    }
    
    .navbar.scrolled {
        padding: 1rem 2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--gray-800);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }
    
    .navbar-nav.active {
        right: 0;
    }
    
    .navbar-nav a {
        color: white !important;
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    
    .navbar-nav a::after {
        background: var(--gold);
    }
}

/* Navigation dots */
.nav-dots {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.nav-dot:hover,
.nav-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ============================================================================
   SECTIONS - Fullscreen
   ============================================================================ */

.section-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-snap-align: start;
    padding: 2rem;
}

/* Animations au scroll */
.section-fullscreen > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-fullscreen.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================================
   SECTION 1: HERO
   ============================================================================ */

.hero-section {
    background: linear-gradient(135deg, #2d2620 0%, #4a6b4d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-monogram {
    width: 140px;
    height: 140px;
    margin: 0 auto 3rem;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--gold);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 6rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    line-height: 1;
}

.hero-divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 3rem auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 3rem;
}

.countdown-inline {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-top: 4rem;
}

.countdown-inline-item {
    text-align: center;
}

.countdown-inline-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.countdown-inline-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--beige);
    margin-top: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator::after {
    content: '↓';
    font-size: 2rem;
    color: var(--gold);
}

/* ============================================================================
   SECTION 2: PHOTOS CAROUSEL
   ============================================================================ */

.photos-section {
    background: var(--cream);
}

.carousel-fullscreen {
    width: 100%;
    max-width: 1400px;
    height: 80vh;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.carousel-fullscreen-inner {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-fullscreen-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-fullscreen-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-fullscreen-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
}

.carousel-fullscreen-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.carousel-controls-modern {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-btn-modern {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--gray-800);
}

.carousel-btn-modern:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.carousel-indicators-modern {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    display: flex;
    gap: 1rem;
}

.carousel-indicator-modern {
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator-modern.active {
    background: var(--gold);
    width: 80px;
}

/* ============================================================================
   SECTION 3: QUESTION CAROUSEL
   ============================================================================ */

.questions-section {
    background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
}

.question-carousel-modern {
    max-width: 900px;
    text-align: center;
    padding: 4rem;
}

.question-carousel-modern .subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

.question-carousel-modern h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: var(--gray-800);
}

.question-display {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.question-display-question {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 3rem;
    line-height: 1.5;
}

.question-display-answer {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.question-display-author {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-style: italic;
}

.question-nav-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.question-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-500);
    cursor: pointer;
    transition: all 0.3s;
}

.question-nav-dot:hover,
.question-nav-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* ============================================================================
   SECTION 4: DETAILS
   ============================================================================ */

.details-section {
    background: var(--gray-800);
    color: var(--cream);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
}

.detail-card {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
}

.detail-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.detail-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.detail-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.detail-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--beige);
}

/* ============================================================================
   SECTION 5: INFO BOX
   ============================================================================ */

.info-section {
    background: white;
}

.info-box-modern {
    max-width: 800px;
    padding: 4rem;
    border: 2px solid var(--gold-light);
    background: rgba(212, 165, 116, 0.05);
}

.info-box-modern h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--gray-800);
}

.info-box-modern p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* ============================================================================
   SECTION 6: PHOTOS CTA
   ============================================================================ */

.photos-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.photos-cta-content {
    max-width: 700px;
}

.photos-cta-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: block;
}

.photos-cta-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.photos-cta-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.btn-modern {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--gold);
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-modern:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer-modern {
    background: var(--gray-800);
    color: var(--beige);
    padding: 3rem;
    text-align: center;
}

.footer-monogram-small {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
}

.footer-text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 968px) {
    .hero-title { font-size: 3.5rem; }
    .countdown-inline { flex-wrap: wrap; gap: 2rem; }
    .details-grid { grid-template-columns: 1fr; gap: 2rem; }
    .navbar-nav { gap: 1.5rem; }
    .nav-dots { display: none; }
}

@media (max-width: 640px) {
    .hero-title { font-size: 2.5rem; letter-spacing: 0.2em; }
    .hero-monogram { width: 100px; height: 100px; font-size: 2.5rem; }
    .countdown-inline-number { font-size: 2.5rem; }
    .question-display-answer { font-size: 1.75rem; }
    .navbar { padding: 1rem; }
    .navbar-nav { gap: 1rem; font-size: 0.75rem; }
}

/* ============================================================================
   UTILITIES
   ============================================================================ */

.hidden { display: none; }

.container-center {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
    /* Palette Bohème Luxe */
    --primary: #6b8e6f;
    --primary-light: #a8b5a1;
    --primary-dark: #4a6b4d;
    
    --secondary: #c17a5f;
    --secondary-light: #e8a587;
    --secondary-dark: #a0563e;
    
    --gold: #d4a574;
    --gold-light: #e8c9a0;
    --gold-dark: #b8895e;
    
    --mauve: #a88c99;
    --dusty-rose: #d4a5b5;
    
    --teal: #4a6b6b;
    --teal-dark: #2d4a4a;
    
    /* Neutrals Luxe */
    --cream: #f5f0e8;
    --sand: #e8ddd0;
    --beige: #d9c5b2;
    
    --gray-50: #faf9f7;
    --gray-100: #f5f0e8;
    --gray-200: #e8ddd0;
    --gray-300: #d9c5b2;
    --gray-400: #a8998a;
    --gray-500: #7a6e5f;
    --gray-600: #5a5045;
    --gray-700: #3d3630;
    --gray-800: #2d2620;
    --gray-900: #1a1612;
    
    /* Backgrounds Luxe */
    --bg-dark: linear-gradient(135deg, #2d2620 0%, #3d3630 100%);
    --bg-light: linear-gradient(135deg, #faf9f7 0%, #f5f0e8 100%);
    --bg-warm: linear-gradient(135deg, #f5f0e8 0%, #e8ddd0 100%);
    
    /* Shadows élégantes */
    --shadow-sm: 0 2px 8px rgba(29, 38, 32, 0.08);
    --shadow: 0 4px 16px rgba(29, 38, 32, 0.12);
    --shadow-md: 0 8px 24px rgba(29, 38, 32, 0.16);
    --shadow-lg: 0 16px 40px rgba(29, 38, 32, 0.20);
    
    /* Typography Luxe */
    --font-serif: 'Playfair Display', 'Georgia', 'Cambria', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-light);
    color: var(--gray-800);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================================
   TYPOGRAPHY - Élégante et Raffinée
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* ============================================================================
   LAYOUT
   ============================================================================ */

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

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================================
   NAVIGATION - Épurée et Élégante
   ============================================================================ */

.navbar {
    background: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gray-900);
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.navbar-brand:hover {
    color: var(--gold);
}

.navbar-nav {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.navbar-nav a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.navbar-nav a:hover {
    color: var(--gold);
}

.navbar-nav a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .navbar-nav {
        gap: 1.5rem;
    }
    .navbar-nav a {
        font-size: 0.75rem;
    }
}

/* ============================================================================
   HERO - Luxe et Sophistiqué
   ============================================================================ */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-dark);
    color: var(--cream);
    position: relative;
    padding: 4rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.monogram {
    width: 120px;
    height: 120px;
    margin: 0 auto 3rem;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: var(--cream);
}

.hero-divider {
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 2.5rem auto;
}

.hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--beige);
    font-weight: 500;
}

.hero-date {
    font-size: 1.125rem;
    margin-top: 2rem;
    color: var(--sand);
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    .monogram {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

/* ============================================================================
   COUNTDOWN - Élégant
   ============================================================================ */

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.countdown-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(250, 249, 247, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.countdown-item:hover {
    background: rgba(250, 249, 247, 0.08);
    border-color: var(--gold);
}

.countdown-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--beige);
    margin-top: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .countdown-number {
        font-size: 2.5rem;
    }
}

/* ============================================================================
   SECTIONS
   ============================================================================ */

.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--cream);
}

.section-light {
    background: var(--cream);
}

.section-warm {
    background: var(--bg-warm);
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.section-title .subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.section-dark .section-title p {
    color: var(--beige);
}

.gold-divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}

/* ============================================================================
   CARDS - Luxe
   ============================================================================ */

.card {
    background: white;
    border-radius: 0;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.card-dark {
    background: rgba(45, 38, 32, 0.5);
    border-color: rgba(212, 165, 116, 0.2);
    color: var(--cream);
}

.card-header {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.card-dark .card-header {
    border-bottom-color: rgba(212, 165, 116, 0.2);
}

/* ============================================================================
   BUTTONS - Élégants
   ============================================================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0;
}

.btn-primary {
    background: var(--gold);
    color: var(--gray-900);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--gold-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--gray-900);
}

.btn-outline-light {
    border-color: var(--cream);
    color: var(--cream);
}

.btn-outline-light:hover {
    background: var(--cream);
    color: var(--gray-900);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================================================
   FORMS - Raffinés
   ============================================================================ */

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

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--gray-700);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-300);
    background: white;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s;
    border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

/* Radio buttons */
.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.radio-item label {
    display: block;
    padding: 1rem 2rem;
    border: 2px solid var(--gray-300);
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.radio-item input[type="radio"]:checked + label {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--gray-900);
}

.radio-item label:hover {
    border-color: var(--gold);
}

/* ============================================================================
   GRID LAYOUTS
   ============================================================================ */

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 968px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================================
   FEATURE CARDS
   ============================================================================ */

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--gold);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-dark .feature-title {
    color: var(--cream);
}

.feature-text {
    color: var(--gray-600);
    line-height: 1.8;
}

.section-dark .feature-text {
    color: var(--beige);
}

/* ============================================================================
   INFO BOX
   ============================================================================ */

.info-box {
    background: rgba(212, 165, 116, 0.08);
    border: 1px solid var(--gold-light);
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.info-box-title {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.info-box-content {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ============================================================================
   CAROUSEL - Luxe
   ============================================================================ */

.carousel {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-inner {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    min-width: 100%;
    height: 600px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.carousel-btn {
    background: rgba(250, 249, 247, 0.95);
    border: 1px solid var(--gold);
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--gray-800);
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--gray-900);
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}

.carousel-indicator {
    width: 40px;
    height: 2px;
    background: rgba(250, 249, 247, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.active {
    background: var(--gold);
}

@media (max-width: 768px) {
    .carousel-item { height: 400px; }
}

/* ============================================================================
   PHOTO GALLERY
   ============================================================================ */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    aspect-ratio: 1;
}

.photo-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================================
   UPLOAD ZONE
   ============================================================================ */

.upload-zone {
    border: 2px dashed var(--gray-300);
    padding: 4rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--cream);
}

.upload-zone:hover {
    border-color: var(--gold);
    background: white;
}

.upload-zone.drag-over {
    border-color: var(--gold);
    background: rgba(212, 165, 116, 0.05);
    border-style: solid;
}

/* ============================================================================
   ALERTS
   ============================================================================ */

.alert {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid;
    background: white;
}

.alert-info { border-color: var(--teal); color: var(--teal-dark); }
.alert-success { border-color: var(--primary); color: var(--primary-dark); }
.alert-warning { border-color: var(--gold); color: var(--gold-dark); }
.alert-error { border-color: var(--secondary); color: var(--secondary-dark); }

/* ============================================================================
   QUESTION RESPONSES CAROUSEL
   ============================================================================ */

.question-carousel {
    max-width: 800px;
    margin: 4rem auto;
    padding: 4rem 3rem;
    background: rgba(212, 165, 116, 0.08);
    border: 1px solid var(--gold-light);
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.question-carousel-content {
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.question-carousel-question {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.6;
}

.question-carousel-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2rem;
}

.question-carousel-answer {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.question-carousel-author {
    font-size: 1rem;
    color: var(--gray-600);
    font-style: italic;
    letter-spacing: 0.05em;
}

.question-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.question-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.question-carousel-dot:hover {
    background: var(--gold-light);
}

.question-carousel-dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .question-carousel {
        padding: 3rem 2rem;
        margin: 3rem 1rem;
    }
    
    .question-carousel-question {
        font-size: 1.125rem;
    }
    
    .question-carousel-answer {
        font-size: 1.375rem;
    }
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
    background: var(--gray-900);
    color: var(--beige);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-monogram {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
}

.footer-text {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 2rem;
    letter-spacing: 0.05em;
}

/* ============================================================================
   UTILITIES
   ============================================================================ */

.text-center { text-align: center; }
.text-upper { text-transform: uppercase; letter-spacing: 0.1em; }

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
    /* Palette de mariage bohème-élégante */
    --primary: #6b8e6f;
    --primary-light: #a8b5a1;
    --primary-dark: #4a6b4d;
    
    --secondary: #c17a5f;
    --secondary-light: #e8a587;
    --secondary-dark: #a0563e;
    
    --accent: #d4a574;
    --accent-light: #e8c9a0;
    
    --mauve: #a88c99;
    --dusty-rose: #d4a5b5;
    
    --teal: #4a6b6b;
    --teal-dark: #2d4a4a;
    
    --beige: #d9c5b2;
    --cream: #f5f0e8;
    --sand: #e8ddd0;
    
    --gray-50: #faf9f7;
    --gray-100: #f5f0e8;
    --gray-200: #e8ddd0;
    --gray-300: #d9c5b2;
    --gray-400: #a8998a;
    --gray-500: #7a6e5f;
    --gray-600: #5a5045;
    --gray-700: #3d3630;
    --gray-800: #2d2620;
    --gray-900: #1a1612;
    
    --bg-gradient: linear-gradient(135deg, #f5f0e8 0%, #ffffff 100%);
    --bg-gradient-primary: linear-gradient(135deg, #6b8e6f 0%, #4a6b4d 100%);
    
    --shadow-sm: 0 1px 2px 0 rgba(42, 37, 32, 0.05);
    --shadow: 0 2px 8px 0 rgba(42, 37, 32, 0.08);
    --shadow-md: 0 4px 16px 0 rgba(42, 37, 32, 0.1);
    --shadow-lg: 0 8px 24px 0 rgba(42, 37, 32, 0.12);
    --shadow-xl: 0 16px 48px 0 rgba(42, 37, 32, 0.16);
    
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: 'Playfair Display', Georgia, Cambria, "Times New Roman", serif;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-gradient);
    color: var(--gray-800);
    line-height: 1.7;
    min-height: 100vh;
    font-size: 16px;
}

/* Typography - Plus élégante */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* Container - Plus spacieux */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-sm {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation - Moderne et épurée */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    max-width: 1280px;
    margin: 0 auto;
}

.navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.navbar-brand:hover {
    color: var(--primary);
}

.navbar-nav {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.navbar-nav a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar-nav a:hover {
    color: var(--primary);
}

.navbar-nav a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .navbar-content {
        padding: 1rem 0;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
    .navbar-nav {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Hero Section - Plus spacieuse et élégante */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-date {
    font-size: 1.125rem;
    color: var(--gray-700);
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 4rem 0;
    }
    .hero-emoji { font-size: 3rem; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.25rem; }
}

/* Countdown - Design moderne */
.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto;
}

.countdown-item {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--secondary);
    display: block;
    font-family: var(--font-serif);
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    margin-top: 0.5rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .countdown-item {
        padding: 1.5rem 1rem;
    }
    .countdown-number {
        font-size: 2.5rem;
    }
}

/* Sections - Plus d'espace et d'air */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.section-title p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    .section-title {
        margin-bottom: 3rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Cards - Design moderne et épuré */
.card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-header {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.card-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.card-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .card {
        padding: 2rem 1.5rem;
    }
}

/* Buttons - Plus modernes */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    background: white;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Forms - Plus épurés */
.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: var(--font-sans);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(107, 142, 111, 0.1);
}

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

.form-help {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

/* Radio buttons - Plus modernes */
.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-item {
    position: relative;
}

.radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-item label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
}

.radio-item input[type="radio"]:checked + label {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.radio-item label:hover {
    border-color: var(--secondary-light);
    background: var(--gray-50);
}

.radio-item input[type="radio"]:checked + label:hover {
    background: var(--secondary-dark);
}

/* Grid layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 968px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Photo Gallery */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.photo-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.photo-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 1.5rem;
    color: white;
    font-size: 0.875rem;
}

/* Upload Zone */
.upload-zone {
    border: 3px dashed var(--gray-300);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.upload-zone:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.upload-zone.drag-over {
    border-color: var(--primary);
    background: rgba(107, 142, 111, 0.08);
    border-style: solid;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.upload-text {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

/* Alerts */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid;
}

.alert-info {
    background: #e8f4f0;
    color: var(--teal-dark);
    border-color: var(--teal);
}

.alert-warning {
    background: #fef5e7;
    color: #875d1a;
    border-color: var(--accent);
}

.alert-success {
    background: #e8f4e8;
    color: var(--primary-dark);
    border-color: var(--primary);
}

.alert-error {
    background: #fceaea;
    color: #8b3a3a;
    border-color: var(--secondary-dark);
}

/* Carousel - Plus moderne */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    min-width: 100%;
    height: 600px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    color: var(--gray-700);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-indicator.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    .carousel-controls {
        padding: 0 1rem;
    }
}

/* Footer */
.footer {
    background: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-heart {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.footer-text {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.hidden { display: none; }

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Info Box - Nouveau style pour restrictions */
.info-box {
    background: linear-gradient(135deg, rgba(107, 142, 111, 0.05) 0%, rgba(193, 122, 95, 0.05) 100%);
    border: 2px solid var(--primary-light);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.info-box-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 400;
}

.info-box-content {
    color: var(--gray-700);
    line-height: 1.8;
    text-align: center;
}

/* Feature Cards - Pour la page d'accueil */
.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-text {
    color: var(--gray-600);
    line-height: 1.7;
}

:root {
    /* Palette de mariage bohème-élégante */
    --primary: #6b8e6f;        /* Vert sauge/olive - principal */
    --primary-light: #a8b5a1;  /* Vert sauge clair */
    --primary-dark: #4a6b4d;   /* Vert forêt */
    
    --secondary: #c17a5f;      /* Terracotta chaleureux */
    --secondary-light: #e8a587; /* Corail doux */
    --secondary-dark: #a0563e;  /* Terre cuite foncé */
    
    --accent: #d4a574;         /* Or doux/miel */
    --accent-light: #e8c9a0;   /* Beige doré */
    
    --mauve: #a88c99;          /* Mauve/rose dusty */
    --dusty-rose: #d4a5b5;     /* Rose poudré */
    
    --teal: #4a6b6b;           /* Teal foncé/bleu-gris */
    --teal-dark: #2d4a4a;      /* Bleu-gris profond */
    
    /* Neutrals inspirés de la palette */
    --beige: #d9c5b2;          /* Beige sable */
    --cream: #f5f0e8;          /* Crème doux */
    --sand: #e8ddd0;           /* Sable clair */
    
    --gray-50: #faf9f7;
    --gray-100: #f5f0e8;
    --gray-200: #e8ddd0;
    --gray-300: #d9c5b2;
    --gray-400: #a8998a;
    --gray-500: #7a6e5f;
    --gray-600: #5a5045;
    --gray-700: #3d3630;
    --gray-800: #2d2620;
    --gray-900: #1a1612;
    
    /* Backgrounds avec tons naturels */
    --bg-gradient: linear-gradient(135deg, #f5f0e8 0%, #e8ddd0 50%, #d9c5b2 100%);
    --bg-gradient-primary: linear-gradient(135deg, #6b8e6f 0%, #4a6b4d 100%);
    --bg-gradient-warm: linear-gradient(135deg, #e8c9a0 0%, #d4a574 50%, #c17a5f 100%);
    --bg-gradient-soft: linear-gradient(135deg, #d4a5b5 0%, #a88c99 50%, #6b8e6f 100%);
    
    /* Shadows plus douces et naturelles */
    --shadow-sm: 0 1px 2px 0 rgba(42, 37, 32, 0.05);
    --shadow: 0 4px 6px -1px rgba(42, 37, 32, 0.08);
    --shadow-md: 0 10px 15px -3px rgba(42, 37, 32, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(42, 37, 32, 0.12);
    --shadow-xl: 0 25px 50px -12px rgba(42, 37, 32, 0.2);
    
    /* Fonts */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-gradient);
    color: var(--gray-800);
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--bg-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.navbar-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.navbar-nav a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-gradient-primary);
    transition: width 0.3s;
}

.navbar-nav a:hover {
    color: var(--primary);
}

.navbar-nav a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .navbar-nav {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 142, 111, 0.15) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-emoji {
    font-size: 5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--bg-gradient-soft);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-date {
    font-size: 1.25rem;
    color: var(--gray-700);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-emoji { font-size: 3.5rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.25rem; }
}

/* Countdown */
.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    min-width: 100px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--bg-gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

/* Cards */
.card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(107, 142, 111, 0.1);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(107, 142, 111, 0.2);
}

.card-header {
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    background: white;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(107, 142, 111, 0.15);
}

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

.form-help {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.form-error {
    font-size: 0.875rem;
    color: #ef4444;
    margin-top: 0.25rem;
}

/* Radio buttons */
.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-item {
    position: relative;
}

.radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-item label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.radio-item input[type="radio"]:checked + label {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.radio-item label:hover {
    border-color: var(--secondary);
}

/* Photo Gallery */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.photo-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.photo-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 1rem;
    color: white;
    font-size: 0.875rem;
}

/* Upload Zone */
.upload-zone {
    border: 3px dashed var(--gray-300);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.upload-zone:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.upload-zone.drag-over {
    border-color: var(--primary);
    background: rgba(107, 142, 111, 0.08);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.upload-text {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

/* Alert/Notice */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-info {
    background: #e8f4f0;
    color: var(--teal-dark);
    border-left: 4px solid var(--teal);
}

.alert-warning {
    background: #fef5e7;
    color: #875d1a;
    border-left: 4px solid var(--accent);
}

.alert-success {
    background: #e8f4e8;
    color: var(--primary-dark);
    border-left: 4px solid var(--primary);
}

.alert-error {
    background: #fceaea;
    color: #8b3a3a;
    border-left: 4px solid var(--secondary-dark);
}

/* Section */
.section {
    padding: 4rem 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    height: 500px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }
}

/* Footer */
.footer {
    background: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-heart {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-text {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.hidden { display: none; }

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .container,
    .container-sm {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}
