/* ═══════════════════════════════════════════════════════
   VOTREPRÉSENCE.COM — TEMPLATE MARIAGE ÉLÉGANT
   Palette : Rose Gold / Blush / Ivoire / Terracotta
   ═══════════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
    /* Couleurs principales */
    --color-primary: #C9967E;
    --color-primary-light: #D4A574;
    --color-primary-dark: #A87B63;
    --color-accent: #B8836A;
    --color-gold: #C9A96E;
    --color-rose: #E8C4B8;
    --color-blush: #F5E6D3;
    --color-ivory: #FDF8F3;
    --color-cream: #FAF3EC;
    --color-white: #FFFFFF;
    --color-text: #5C4A3A;
    --color-text-light: #8B7B6B;
    --color-text-dark: #3E2E1E;
    --color-bg: #FFFAF5;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #C9967E 0%, #D4A574 50%, #C9A96E 100%);
    --gradient-rose: linear-gradient(135deg, #F5E6D3 0%, #E8C4B8 100%);
    --gradient-hero: linear-gradient(180deg, rgba(253, 248, 243, 0) 0%, rgba(253, 248, 243, 0.3) 50%, rgba(253, 248, 243, 0.8) 100%);

    /* Typography */
    --font-script: 'Great Vibes', cursive;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(92, 74, 58, 0.08);
    --shadow-md: 0 4px 20px rgba(92, 74, 58, 0.12);
    --shadow-lg: 0 8px 40px rgba(92, 74, 58, 0.15);
    --shadow-card: 0 10px 40px rgba(92, 74, 58, 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── UTILITY CLASSES ─── */
.script {
    font-family: var(--font-script);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(201, 150, 126, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 150, 126, 0.5);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* ─── SECTION COMMON STYLES ─── */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__title {
    font-size: 3.2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 400;
}

.section__subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 300;
    margin-top: 12px;
}

.section__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
}

.section__divider span {
    width: 60px;
    height: 1px;
    background: var(--gradient-primary);
}

.section__divider i {
    color: var(--color-primary);
    font-size: 0.7rem;
}

.section__ornament {
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
    opacity: 0.15;
}

.section__ornament--top {
    top: -20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M600 60 C400 0, 200 40, 0 30 L0 0 L1200 0 L1200 30 C1000 40, 800 0, 600 60Z' fill='%23C9967E' opacity='0.3'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.navbar__logo {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.navbar__logo span {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text-light);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__link {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--color-text);
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 30px;
}

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

/* Hamburger Toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.navbar__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&h=1080&fit=crop') 
        center center / cover no-repeat;
    text-align: center;
    padding: 120px 24px 60px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero__floral {
    position: absolute;
    z-index: 2;
    width: 300px;
    height: 300px;
    pointer-events: none;
    opacity: 0.6;
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.hero__title {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: #FFFFFF;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 150, 126, 0.3);
}

.hero__title span {
    font-size: 0.7em;
    color: #E8C9A0;
    margin: 0 8px;
}

.hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.hero__divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

.hero__divider i {
    color: #E8C4B8;
    font-size: 0.8rem;
    animation: heartbeat 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(232, 196, 184, 0.5);
}

.hero__date {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 2px;
    margin-bottom: 32px;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* Countdown */
.hero__countdown {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
    padding: 24px 40px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown__number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
}

.countdown__label {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

.countdown__separator {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   NOTRE HISTOIRE
═══════════════════════════════════════════ */
.histoire {
    background: var(--color-white);
    overflow: hidden;
}

.histoire__content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.histoire__text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 2;
    color: var(--color-text);
    font-style: italic;
    font-weight: 400;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-rose);
    transform: translateX(-50%);
}

.timeline__item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.timeline__item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline__item:nth-child(even) {
    text-align: left;
}

.timeline__dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border: 3px solid var(--color-white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(201, 150, 126, 0.2);
    z-index: 2;
}

.timeline__date {
    flex: 0 0 calc(50% - 40px);
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--color-primary);
    padding: 0 20px;
}

.timeline__card {
    flex: 0 0 calc(50% - 40px);
    background: var(--color-cream);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 150, 126, 0.1);
}

.timeline__card h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.timeline__card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Polaroids */
.polaroids {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.polaroid {
    background: var(--color-white);
    padding: 12px 12px 40px;
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    transition: var(--transition-slow);
    cursor: pointer;
    max-width: 250px;
}

.polaroid:hover {
    transform: scale(1.05) rotate(0deg) !important;
    box-shadow: var(--shadow-lg);
}

.polaroid--1 { transform: rotate(-4deg); }
.polaroid--2 { transform: rotate(2deg) translateY(-10px); }
.polaroid--3 { transform: rotate(-3deg); }

.polaroid__img {
    width: 220px;
    height: 260px;
    overflow: hidden;
    border-radius: 2px;
}

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

.polaroid:hover .polaroid__img img {
    transform: scale(1.1);
}

.polaroid__caption {
    text-align: center;
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-top: 12px;
}

/* ═══════════════════════════════════════════
   INFOS MARIAGE
═══════════════════════════════════════════ */
.infos {
    background: var(--color-bg);
}

.infos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.info-card {
    background: var(--color-white);
    padding: 48px 32px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(201, 150, 126, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

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

.info-card:hover::before {
    opacity: 1;
}

.info-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-rose);
    border-radius: 50%;
    font-size: 1.6rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.info-card:hover .info-card__icon {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.info-card__title {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 400;
}

.info-card__divider {
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.info-card__time {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.info-card__location {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}

.info-card__address {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Map */
.infos__map {
    max-width: 900px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 150, 126, 0.15);
}

/* ═══════════════════════════════════════════
   GALERIE
═══════════════════════════════════════════ */
.galerie {
    background: var(--color-white);
}

.galerie__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.galerie__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
}

.galerie__item--wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

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

.galerie__overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 150, 126, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.galerie__overlay i {
    color: var(--color-white);
    font-size: 2rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.galerie__item:hover img {
    transform: scale(1.1);
}

.galerie__item:hover .galerie__overlay {
    opacity: 1;
}

.galerie__item:hover .galerie__overlay i {
    transform: scale(1);
}

/* ═══════════════════════════════════════════
   DRESS CODE
═══════════════════════════════════════════ */
.dresscode {
    background: var(--color-bg);
    padding: 80px 0;
}

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

.dresscode__text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-text-dark);
    font-style: italic;
    margin-bottom: 32px;
}

.dresscode__colors {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.dresscode__color {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    border: 3px solid var(--color-white);
    transition: var(--transition);
    cursor: pointer;
}

.dresscode__color:hover {
    transform: scale(1.2);
    box-shadow: var(--shadow-md);
}

.dresscode__note {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* ═══════════════════════════════════════════
   RSVP
═══════════════════════════════════════════ */
.rsvp {
    position: relative;
    background:
        url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?w=1920&h=1080&fit=crop')
        center center / cover no-repeat fixed;
    padding: 120px 0;
}

.rsvp__bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(253, 248, 243, 0.92);
    backdrop-filter: blur(4px);
}

.rsvp .container {
    position: relative;
    z-index: 2;
}

.rsvp__title {
    font-size: 3.5rem;
    color: var(--color-primary);
}

.rsvp__heading {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    margin-top: -4px;
}

.rsvp__deadline {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-top: 8px;
}

.rsvp__deadline strong {
    color: var(--color-primary);
}

/* Form Styles */
.rsvp__form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 150, 126, 0.15);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    margin-bottom: 24px;
}

.form__group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(201, 150, 126, 0.25);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-ivory);
    transition: var(--transition);
    outline: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--color-text-light);
    opacity: 0.6;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(201, 150, 126, 0.1);
    background: var(--color-white);
}

.form__group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio buttons */
.form__radio-group {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.form__radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 20px;
    border: 1.5px solid rgba(201, 150, 126, 0.2);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    flex: 1;
    justify-content: center;
    background: var(--color-ivory);
}

.form__radio:hover {
    border-color: var(--color-primary);
    background: rgba(201, 150, 126, 0.05);
}

.form__radio input {
    display: none;
}

.form__radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-rose);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.form__radio input:checked ~ .form__radio-custom {
    border-color: var(--color-primary);
}

.form__radio input:checked ~ .form__radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
}

.form__radio input:checked ~ span:last-child {
    color: var(--color-primary);
    font-weight: 600;
}

.form__radio i {
    color: var(--color-primary);
    font-size: 0.8rem;
}

.rsvp__form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    font-size: 1.1rem;
    padding: 18px;
}

/* RSVP Success */
.rsvp__success {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.rsvp__success-content {
    background: var(--color-white);
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.rsvp__success i {
    font-size: 4rem;
    color: #66bb6a;
    margin-bottom: 20px;
}

.rsvp__success h3 {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.rsvp__success p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
    background: var(--color-cream);
    padding: 80px 0 40px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.footer__floral {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, var(--color-bg) 0%, transparent 100%);
}

.footer__content {
    position: relative;
    z-index: 2;
}

.footer__title {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 400;
}

.footer__title span {
    color: var(--color-gold);
}

.footer__date {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-text-light);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer__divider span {
    width: 50px;
    height: 1px;
    background: var(--gradient-primary);
}

.footer__divider i {
    color: var(--color-primary);
    font-size: 0.65rem;
}

.footer__hashtag {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-primary);
    font-style: italic;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.footer__social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.footer__credit {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.footer__credit a {
    color: var(--color-primary);
    font-weight: 600;
}

.footer__credit a:hover {
    text-decoration: underline;
}

.footer__credit i {
    color: #e57373;
    font-size: 0.7rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-sm);
    transform: scale(0.9);
    transition: var(--transition-slow);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox.active .lightbox__img {
    transform: scale(1);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 2rem;
    padding: 16px;
    transition: var(--transition);
    opacity: 0.7;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lightbox__close {
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
}

.lightbox__prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

/* ═══════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
}

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

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

/* ═══════════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .infos__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .info-card {
        padding: 36px 24px 32px;
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 80px 0;
    }

    .section__title {
        font-size: 2.6rem;
    }

    .infos__grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .galerie__item--wide {
        grid-column: span 2;
    }

    /* Timeline mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline__item,
    .timeline__item:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
        text-align: left;
    }

    .timeline__dot {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline__date,
    .timeline__card {
        flex: 1;
        width: 100%;
    }

    .timeline__date {
        padding: 0;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    /* Navbar mobile */
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(253, 248, 243, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 8px;
        transition: var(--transition);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    }

    .navbar__menu.active {
        right: 0;
    }

    .navbar__link {
        font-size: 1.1rem;
        padding: 14px 20px;
        display: block;
        border-radius: var(--radius-sm);
    }

    .navbar__link:hover {
        background: rgba(201, 150, 126, 0.1);
    }

    /* Hero mobile */
    .hero {
        min-height: 100svh;
        padding: 100px 20px 40px;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .hero__countdown {
        flex-wrap: wrap;
        padding: 20px 24px;
        gap: 4px;
        margin-top: 32px;
    }

    .countdown__item {
        min-width: 55px;
    }

    .countdown__number {
        font-size: 1.8rem;
    }

    /* Polaroids mobile */
    .polaroids {
        gap: 24px;
    }

    .polaroid {
        max-width: 200px;
    }

    .polaroid__img {
        width: 180px;
        height: 220px;
    }

    /* RSVP mobile */
    .rsvp__form {
        padding: 32px 24px;
    }

    .form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form__radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .rsvp__heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 3rem;
    }

    .section__title {
        font-size: 2.2rem;
    }

    .polaroids {
        flex-direction: column;
        align-items: center;
    }

    .polaroid--1,
    .polaroid--2,
    .polaroid--3 {
        transform: rotate(0deg);
    }

    .galerie__grid {
        grid-template-columns: 1fr;
    }

    .galerie__item--wide {
        grid-column: span 1;
    }

    .info-card__time {
        font-size: 1.5rem;
    }

    .countdown__separator {
        display: none;
    }

    .hero__countdown {
        gap: 8px;
    }

    .footer__title {
        font-size: 2.4rem;
    }
}

/* ═══════════════════════════════════════════
   PRINT STYLES
═══════════════════════════════════════════ */
@media print {
    .navbar,
    .scroll-top,
    .lightbox,
    .hero__countdown {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 20px;
    }

    .section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Sélection */
::selection {
    background: rgba(201, 150, 126, 0.3);
    color: var(--color-text-dark);
}
