/* MOBILE FIRST - ULTRA ANIMÉ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --vert: #556B2F;
    --vert2: #6B8E23;
    --ivoire: #FFFEF2;
    --blanc: #FFF;
    --rose: #FF1493;
    --coral: #FF6347;
    --orange: #FF8C42;
    --or: #DAA520;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--ivoire);
    color: #333;
    overflow-x: hidden;
}
.link {
    color: var(--blanc);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}
/* === FLEURS TROPICALES FLOTTANTES === */
.tropical-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    will-change: transform;  /* ← AJOUTEZ */
}

.flower-float {
    position: absolute;
    opacity: 0.3;
    animation: float-around 30s ease-in-out infinite;
    will-change: transform;  /* ← AJOUTEZ */
}

.f1 {
    width: 280px;
    top: 8%;
    left: -90px;
    animation-delay: 0s;
    animation-duration: 28s;
}

.f2 {
    width: 240px;
    top: 45%;
    right: -80px;
    animation-delay: 10s;
    animation-duration: 32s;
}

.f3 {
    width: 260px;
    bottom: 12%;
    left: 5%;
    animation-delay: 18s;
    animation-duration: 35s;
}

@keyframes float-around {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-50px) translateX(30px) rotate(8deg) scale(1.05); }
    50% { transform: translateY(-100px) translateX(-30px) rotate(-8deg) scale(0.95); }
    75% { transform: translateY(-50px) translateX(30px) rotate(5deg) scale(1.02); }
}

/* === HERO === */
.hero {
  min-height: 90vh;
  background-image:
    linear-gradient(135deg, rgba(23, 36, 2, 0.749), rgba(28, 38, 8, 0.717)),
    url('couple-photo.jpg?v=2');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%; /* ajuste 30% -> 20%/40% selon le cadrage voulu */
  background-attachment: scroll;   /* défaut safe */
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255,20,147,0.25), transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(255,140,66,0.25), transparent 60%);
    animation: pulse-glow 5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 25px;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(218,165,32,0.8));
    animation: logo-bounce 2.5s ease-in-out infinite, logo-spin 10s linear infinite;
    will-change: transform;  /* ← AJOUTEZ */
}

@keyframes logo-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.08); }
}

@keyframes logo-spin {
    0%, 90%, 100% { transform: rotate(0deg); }
    95% { transform: rotate(360deg); }
}

.main-title {
    font-family: 'Great Vibes', cursive;
    font-size: 100px;
    color: white;
    margin: 30px 0;
    text-shadow: 
        0 0 50px rgba(255,20,147,1),
        0 0 90px rgba(255,140,66,0.8),
        5px 5px 20px rgba(0,0,0,0.7);
    animation: shimmer-glow 4s ease-in-out infinite, sway 3s ease-in-out infinite;
}

@keyframes shimmer-glow {
    0%, 100% {
        text-shadow: 
            0 0 50px rgba(255,20,147,1),
            0 0 90px rgba(255,140,66,0.8),
            5px 5px 20px rgba(0,0,0,0.7);
    }
    50% {
        text-shadow: 
            0 0 70px rgba(255,140,66,1),
            0 0 110px rgba(255,20,147,1),
            5px 5px 20px rgba(0,0,0,0.7);
    }
}

@keyframes sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.names-block {
    margin: 40px 0;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 900;
    color: var(--or);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin: 15px 0;
    text-shadow: 4px 4px 12px rgba(0,0,0,0.7);
    animation: slide-in 1.5s ease, glow-pulse 3s ease-in-out infinite;
}

@keyframes slide-in {
    from { transform: translateX(-120px) rotate(-10deg); opacity: 0; }
    to { transform: translateX(0) rotate(0deg); opacity: 1; }
}

@keyframes glow-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
}

.ampersand {
    font-family: 'Great Vibes', cursive;
    font-size: 80px;
    color: var(--rose);
    margin: 20px 0;
    text-shadow: 0 0 30px rgba(255,20,147,1);
    animation: rotate-in 2s ease, pulse-scale 2s ease-in-out infinite;
}

@keyframes rotate-in {
    from { transform: rotate(-720deg) scale(0); }
    to { transform: rotate(0deg) scale(1); }
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.tagline {
    font-size: 26px;
    color: white;
    margin: 35px 0;
    font-style: italic;
    animation: fade-in 2.5s ease;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.date-card {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(25px);
    border: 5px solid var(--rose);
    border-radius: 30px;
    padding: 32px 48px;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    box-shadow: 0 12px 45px rgba(255,20,147,0.6);
    animation: pop-in 2s ease, float-card 4s ease-in-out infinite;
}

@keyframes pop-in {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.12); }
    100% { transform: scale(1); opacity: 1; }
}

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

.date-card i {
    font-size: 45px;
    color: var(--rose);
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.25); }
    20%, 40% { transform: scale(1); }
}

.big-date {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.location {
    font-size: 18px;
    color: var(--or);
}

.arrow-down {
    margin-top: 80px;
    font-size: 50px;
    color: white;
    animation: bounce-arrow 3s infinite;
    cursor: pointer;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-22px); opacity: 0.7; }
}

/* === SECTIONS === */
section {
    min-height: 100vh;
    padding: 100px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    font-family: 'Pacifico', cursive;
    font-size: 52px;
    color: var(--rose);
    text-align: center;
    margin-bottom: 20px;
    
    animation: slide-down 1.5s ease, wiggle 3s ease-in-out infinite;
}

@keyframes slide-down {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

.subtitle {
    text-align: center;
    font-size: 22px;
    color: #666;
    margin-bottom: 60px;
    font-style: italic;
}

/* === COUNTDOWN === */
.countdown-section {
    background: linear-gradient(180deg, var(--ivoire), white);
    position: relative;
}

.flower-side {
    position: absolute;
    width: 350px;
    opacity: 0.4;
    z-index: 0;
}

.flower-side.left {
    left: -120px;
    top: 20%;
    transform: rotate(-20deg);
    animation: sway-left 7s ease-in-out infinite;
}

.flower-side.right {
    right: -120px;
    bottom: 20%;
    transform: rotate(20deg);
    animation: sway-right 7s ease-in-out infinite;
}

@keyframes sway-left {
    0%, 100% { transform: rotate(-20deg) translateX(0); }
    50% { transform: rotate(-15deg) translateX(15px); }
}

@keyframes sway-right {
    0%, 100% { transform: rotate(20deg) translateX(0); }
    50% { transform: rotate(15deg) translateX(-15px); }
}

.flower-side img {
    width: 100%;
}

.countdown-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.count-card {
    background: linear-gradient(135deg, white, var(--ivoire));
    border: 6px solid var(--coral);
    border-radius: 25px;
    padding: 32px 40px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(255,99,71,0.4);
    animation: pop-up 1s ease, float-count 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

.count-card:nth-child(2) { animation-delay: 0.2s; }
.count-card:nth-child(4) { animation-delay: 0.4s; }
.count-card:nth-child(6) { animation-delay: 0.6s; }
.count-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes pop-up {
    0% { transform: scale(0) rotate(270deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

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

.count-card:hover {
    transform: translateY(-15px) rotate(5deg) scale(1.05);
    border-color: var(--rose);
    box-shadow: 0 18px 50px rgba(255,20,147,0.7);
}

.num {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--rose);
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(255,20,147,0.4);
    transition: all 0.3s ease;
}

.count-card:hover .num {
    transform: scale(1.15) rotate(-5deg);
    animation: number-spin 0.5s ease;
}

@keyframes number-spin {
    0%, 100% { transform: scale(1.15) rotate(0deg); }
    50% { transform: scale(1.15) rotate(360deg); }
}

.lbl {
    font-size: 15px;
    color: var(--vert);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 14px;
    font-weight: 700;
}

.sep {
    font-size: 60px;
    color: var(--orange);
    font-weight: bold;
    align-self: center;
    animation: blink-sep 3s infinite;
}

@keyframes blink-sep {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.2); }
}

.msg {
    text-align: center;
    font-size: 26px;
    color: var(--vert);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    z-index: 2;
}

.msg i {
    color: var(--coral);
    animation: heartbeat 2s ease-in-out infinite;
}

/* === PROGRAMME === */
.program-section {
    background: linear-gradient(180deg, white, var(--ivoire));
}

.timeline {
    max-width: 800px;
    width: 100%;
}

.event {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    animation: slide-right 1.2s ease;
    animation-fill-mode: both;
    opacity: 0;
}

.event:nth-child(1) { animation-delay: 0.2s; }
.event:nth-child(2) { animation-delay: 0.4s; }
.event:nth-child(3) { animation-delay: 0.6s; }
.event:nth-child(4) { animation-delay: 0.8s; }
.event:nth-child(5) { animation-delay: 1s; }

@keyframes slide-right {
    from { transform: translateX(-100px) rotate(-5deg); opacity: 0; }
    to { transform: translateX(0) rotate(0deg); opacity: 1; }
}

.icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rose), var(--coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(255,20,147,0.5);
    transition: all 0.5s ease;
}

.event:hover .icon {
    transform: rotate(360deg) scale(1.15);
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.info {
    flex: 1;
    background: white;
    border: 5px solid rgba(255,99,71,0.4);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.event:hover .info {
    transform: translateY(-10px) translateX(10px);
    box-shadow: 0 15px 40px rgba(255,20,147,0.3);
    border-color: var(--rose);
}

.hour {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 14px;
}

.info h3 {
    font-size: 28px;
    color: var(--vert);
    margin-bottom: 14px;
    font-weight: 700;
}

.info p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}
.nav-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.nav-links a {
    font-size: 16px !important;
    color: var(--vert2) !important;
    line-height: 1.8 !important;
     text-decoration: none;
}

/* SECTION MESSAGE ROMANTIQUE */
.love-section {
    background: linear-gradient(180deg, white, var(--ivoire));
    padding: 100px 25px;
}

.love-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

/* PHOTO EN COEUR */
.heart-frame {
    position: relative;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
    margin: 0 auto;
}

.couple-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;  /* Recadre vers le haut */
    border-radius: 50%;
    border: 8px solid var(--rose);
    box-shadow: 0 15px 50px rgba(255, 20, 147, 0.4);
    animation: pulse-photo 3s ease-in-out infinite;
}

@keyframes pulse-photo {
    0%, 100% { transform: scale(1); box-shadow: 0 15px 50px rgba(255, 20, 147, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 20px 60px rgba(255, 20, 147, 0.6); }
}

.heart-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rose), var(--coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
    animation: heartbeat 1.5s ease-in-out infinite;
}

.heart-overlay::before {
    content: '💕';
    font-size: 40px;
}

/* MESSAGE */
.love-message {
    flex: 1;
    min-width: 300px;
    position: relative;
    padding: 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 35px;
    color: var(--rose);
    opacity: 0.3;
}

.quote-icon.right {
    float: right;
}

.love-title {
    font-family: 'Pacifico', cursive;
    font-size: 42px;
    color: var(--rose);
    text-align: center;
    margin: 20px 0 30px;
}

.love-text {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.love-text strong {
    color: var(--rose);
    font-size: 22px;
}

.love-text.main {
    font-size: 24px;
    font-style: italic;
    color: var(--vert);
    font-weight: 600;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,20,147,0.05), rgba(255,140,66,0.05));
    border-radius: 15px;
    border-left: 5px solid var(--rose);
}

.love-signature {
    text-align: right;
    margin-top: 40px;
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.love-signature .names {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: var(--or);
    margin: 10px 0;
    font-style: normal;
}

.heart-icon {
    color: var(--rose);
    font-size: 24px;
    margin-left: 10px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* DRESS CODE BANDEROLE */
/* DRESS CODE BANDEROLE */
.dress-code-banner {
    background: linear-gradient(135deg, #556B2F 0%, #6B8E23 50%, #8FBC8F 100%);
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dress-code-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,20,147,0.1), transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(255,140,66,0.1), transparent 40%);
    pointer-events: none;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.dress-code-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    text-align: center;
    margin-bottom: 10px;
}

.dress-code-text i {
    margin-right: 10px;
    color: var(--or);
}

.dress-code-text strong {
    font-weight: 900;
    color: var(--or);
    font-size: 32px;
}

.color-hearts {
    display: flex;
    gap: 15px;
    align-items: center;
}

.color-heart {
    width: 40px;
    height: 40px;
    position: relative;
    transform: rotate(-45deg);
    animation: float-heart 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.color-heart::before,
.color-heart::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: inherit;
}

.color-heart::before {
    top: -20px;
    left: 0;
}

.color-heart::after {
    top: 0;
    left: 20px;
}

.color-heart:hover {
    transform: rotate(-45deg) scale(1.4);
    z-index: 10;
    animation: heartbeat 0.6s ease infinite;
}

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

@keyframes heartbeat {
    0%, 100% { transform: rotate(-45deg) scale(1.4); }
    50% { transform: rotate(-45deg) scale(1.5); }
}

.color-heart:nth-child(1) { animation-delay: 0s; }
.color-heart:nth-child(2) { animation-delay: 0.2s; }
.color-heart:nth-child(3) { animation-delay: 0.4s; }
.color-heart:nth-child(4) { animation-delay: 0.6s; }
.color-heart:nth-child(5) { animation-delay: 0.8s; }


/* === CARTE === */
.map-section {
    background: linear-gradient(180deg, var(--ivoire), white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.map-container {
    max-width: 900px;
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin: 0 auto;
}

.map-container iframe {
    display: block;
    width: 100%;
}

.directions-btn {
    display: inline-block;
    margin: 25px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--rose), var(--coral));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
}

.directions-btn i {
    margin-right: 10px;
}

/* === RSVP === */
.rsvp-section {
    background: linear-gradient(180deg, var(--ivoire), white);
}

.deadline {
    background: linear-gradient(90deg, var(--coral), var(--rose), var(--orange));
    padding: 22px 50px;
    border-radius: 70px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    color: white;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 12px 35px rgba(255,20,147,0.6);
    animation: wiggle-deadline 4s ease-in-out infinite;
}

@keyframes wiggle-deadline {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-5deg) scale(1.03); }
    75% { transform: rotate(5deg) scale(1.03); }
}

.deadline i {
    font-size: 30px;
    animation: spin-clock 6s linear infinite;
}

@keyframes spin-clock {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form {
    max-width: 800px;
    width: 100%;
    background: white;
    border: 6px solid rgba(255,20,147,0.4);
    border-radius: 32px;
    padding: 60px 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    animation: scale-in 1s ease;
}

@keyframes scale-in {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.field {
    margin-bottom: 30px;
}

.field label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 19px;
    color: var(--rose);
    margin-bottom: 16px;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 18px;
    background: var(--ivoire);
    border: 4px solid rgba(255,140,66,0.4);
    border-radius: 16px;
    font-family: inherit;
    font-size: 18px;
    color: #333;
    transition: all 0.4s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--rose);
    box-shadow: 0 0 30px rgba(255,20,147,0.4);
    background: white;
    transform: translateY(-4px) scale(1.01);
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.radios {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.radios label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--ivoire);
    border: 4px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.radios label:hover {
    border-color: var(--coral);
    background: white;
    transform: translateX(10px) scale(1.02);
}

.radios input[type="radio"] {
    width: 24px;
    height: 24px;
    accent-color: var(--rose);
}

.btn {
    width: 100%;
    padding: 24px 50px;
    background: linear-gradient(135deg, var(--rose), var(--coral));
    border: none;
    border-radius: 70px;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 900;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(255,20,147,0.5);
    margin-top: 40px;
}

.btn:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255,20,147,0.8);
    animation: shake-btn 0.5s ease;
}

@keyframes shake-btn {
    0%, 100% { transform: translateY(-8px) scale(1.03) rotate(0deg); }
    25% { transform: translateY(-8px) scale(1.03) rotate(-2deg); }
    75% { transform: translateY(-8px) scale(1.03) rotate(2deg); }
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* === MERCI === */
.thank-section {
    background: linear-gradient(180deg, white, var(--ivoire));
    text-align: center;
}

.box {
    max-width: 650px;
}

.check {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--rose), var(--coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px;
    box-shadow: 0 15px 50px rgba(255,20,147,0.6);
    animation: bounce-in 1.5s ease;
}

@keyframes bounce-in {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    80% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.check i {
    font-size: 80px;
    color: white;
}

.box h2 {
    font-family: 'Pacifico', cursive;
    font-size: 66px;
    color: var(--rose);
    margin-bottom: 40px;
}

.box p {
    font-size: 26px;
    color: #333;
    margin-bottom: 24px;
    line-height: 2;
}

.hearts {
    font-size: 56px;
    margin: 50px 0;
    animation: pulse 3s infinite;
}

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

.sign {
    margin-top: 50px;
    color: #666;
    font-size: 20px;
}

.sign span {
    font-family: 'Great Vibes', cursive;
    font-size: 66px;
    color: var(--or);
    display: block;
    margin-top: 20px;
}

/* === FOOTER === */
.footer {
    background: var(--vert);
    padding: 70px 25px 40px;
    text-align: center;
    border-top: 8px solid var(--rose);
}

.flogo {
    width: 90px;
    height: 90px;
    margin-bottom: 32px;
    opacity: 0.95;
    filter: drop-shadow(0 8px 25px rgba(218,165,32,0.7));
    animation: logo-bounce 2.5s ease-in-out infinite;
    -webkit-filter: drop-shadow(0 8px 25px rgba(218,165,32,0.7));
}

.fdate {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--orange);
    margin-bottom: 20px;
    font-weight: 900;
}

.fname {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: white;
    margin-bottom: 25px;
}

.fheart {
    font-size: 28px;
    color: var(--rose);
    margin: 25px 0;
    animation: pulse 2s infinite;
}

.fcopy {
    font-family: 'Great Vibes', cursive;
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 2;
}

/* === RESPONSIVE === */

@media (max-width: 768px) {
    .main-title { font-size: 70px; }
    .name { font-size: 35px; }
    .title { font-size: 40px; }
    .date-card{ padding: 10px; }
    .count-card { min-width: 85px; padding: 26px 32px; }
    .num { font-size: 42px !important; }
    .row { grid-template-columns: 1fr; }
    .flower-side { display: none; }
    
    /* HERO - AJUSTEMENTS MOBILE */
    .hero {
        background-position: center 30%;  /* Cache le bas de l'image */
        min-height: 100vh;
        padding: 60px 20px 40px;
    }
    
    .content {
        padding: 20px 20px;
        margin-top: -30px;  /* Remonte tout le contenu */
    }
    
    .logo {
        width: 150px;
        height: 150px;
        margin-bottom: 10px;
    }
    
    .main-title {
        font-size: 70px !important;
        margin: 15px 0;
    }
    
    .names-block {
        margin: 20px 0;
    }
    
    .name {
        font-size: 38px !important;
        margin: 8px 0;
    }
    
    .ampersand {
        font-size: 50px;
        margin: 12px 0;
    }
    
    .tagline {
        font-size: 18px;
        margin: 20px 0;
    }
    
    .date-card {
        padding: 18px 25px !important;
        margin-top: 15px;
    }
    
    .big-date {
        font-size: 24px;
    }
    
    .location {
        font-size: 15px;
    }
    
    .arrow-down {
        margin-top: 40px;
        font-size: 35px;
    }
    
    .love-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .heart-frame {
        width: 280px;
        height: 280px;
    }
    
    .love-message { padding: 30px 25px;}
    .love-title { font-size: 36px;}
    .love-text { font-size: 18px;}
    .love-text.main { font-size: 20px; }

    .dress-code-banner {
        height: 25vh;
        min-height: 180px;
    }
    
    .banner-content {
        gap: 15px;
        padding: 0 15px;
    }
    
    .dress-code-text {
        font-size: 20px;
    }
    
    .dress-code-text strong {
        font-size: 24px;
    }
    
    .color-hearts {
        gap: 10px;
    }
    
    .color-heart {
        width: 32px;
        height: 32px;
    }
    
    .color-heart::before,
    .color-heart::after {
        width: 32px;
        height: 32px;
    }
    
    .color-heart::before {
        top: -16px;
    }
    
    .color-heart::after {
        left: 16px;
    }
}

@media (max-width: 480px) {
    /* HERO - ENCORE PLUS COMPACT */
    .hero {
        background-position: center 25%;  /* Cache encore plus le bas */
    }
    
    .content {
        margin-top: -40px;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .main-title {
        font-size: 65px !important;
    }
    
    .name {
        font-size: 36px !important;
        letter-spacing: 3px;
    }
    
    .ampersand {
        font-size: 45px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .date-card {
        padding: 15px 20px !important;
    }
    
    .big-date {
        font-size: 22px;
    }
    
    .date-card i {
        font-size: 30px;
    }
    
    .dress-code-banner {
        height: 22vh;
        min-height: 160px;
    }
    
    .dress-code-text {
        font-size: 18px;
    }
    
    .dress-code-text strong {
        font-size: 22px;
    }
    
    .color-heart {
        width: 28px;
        height: 28px;
    }
    
    .color-heart::before,
    .color-heart::after {
        width: 28px;
        height: 28px;
    }
    
    .color-heart::before {
        top: -14px;
    }
    
    .color-heart::after {
        left: 14px;
    }
    .nav-links a {
    color: var(--vert2) !important;
    }
}

@media (min-width: 769px) {
    .hero{ background-attachment: fixed; }
    .main-title { font-size: 120px; }
    .name { font-size: 60px; }
    .count-card { min-width: 140px; padding: 40px 50px; }
    .num { font-size: 85px; }
}
