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

/* ============================================
   ANIMATIONS ÉLÉGANTES
   ============================================ */

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes goldShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ============================================
   STYLES DE BASE
   ============================================ */

body {
    font-family: 'Lato', 'Segoe UI', sans-serif;
    background-image: url('../images/fond-uni.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: transparent;
    min-height: 100vh;
    color: #2c2416;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
    position: relative;
}

/* Fond uni sur html aussi pour couvrir toute la page */
html {
    background-image: url('../images/fond-uni.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: transparent;
    min-height: 100vh;
}

/* Supprimer body::before pour laisser voir le fond uni */
body::before {
    display: none;
}

@keyframes subtleShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.page {
    animation: fadeIn 0.8s ease-out;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* ============================================
   NAVIGATION ÉLÉGANTE
   ============================================ */

.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(252, 250, 248, 0.95));
    backdrop-filter: blur(15px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(192, 132, 168, 0.15);
    display: none;
    -webkit-backdrop-filter: blur(15px);
}

.nav-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 2rem;
    font-family: 'Great Vibes', cursive;
    background: linear-gradient(135deg, #c084a8, #9b6b9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(192, 132, 168, 0.3);
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(192, 132, 168, 0.4));
    letter-spacing: 3px;
}

.nav-logo:active {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu li {
    cursor: pointer;
    color: #3a3230;
    font-weight: 500;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
    position: relative;
}

.nav-menu li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c084a8, #9b6b9e);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li:hover {
    color: #c084a8;
    transform: translateY(-2px);
}

.nav-menu li:hover::after {
    width: 100%;
}

.nav-menu li.active {
    color: #c084a8;
    font-weight: 600;
}

.nav-menu li.active::after {
    width: 100%;
}

/* Menu mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #c084a8, #9b6b9e);
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(252, 250, 248, 0.98));
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(192, 132, 168, 0.2);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    padding: 18px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    color: #3a3230;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.3s ease;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav li:active {
    background: rgba(192, 132, 168, 0.1);
    color: #c084a8;
}

/* Pages */
.page {
    display: none;
    padding-top: 100px;
}

.page.active {
    display: block;
}

.page.home {
    padding-top: 0;
}

/* ============================================
   PAGE D'ACCUEIL ÉLÉGANTE
   ============================================ */

.home-header {
    text-align: center;
    margin: 40px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(254, 252, 254, 0.96) 50%,
        rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border-radius: 35px;
    padding: 80px 50px;
    box-shadow: 
        0 30px 90px rgba(220, 190, 220, 0.18),
        0 10px 40px rgba(200, 180, 210, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(230, 210, 230, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1.5px solid transparent;
    background-clip: padding-box;
}

.home-header::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(
        135deg, 
        rgba(245, 220, 240, 0.25) 0%, 
        rgba(230, 210, 235, 0.3) 25%,
        rgba(220, 200, 230, 0.25) 50%,
        rgba(230, 210, 235, 0.3) 75%,
        rgba(245, 220, 240, 0.25) 100%
    );
    border-radius: 35px;
    z-index: -1;
    animation: rotateBorder 8s linear infinite;
    background-size: 200% 200%;
}

@keyframes rotateBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.home-header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        circle at center,
        rgba(245, 230, 245, 0.06) 0%,
        rgba(240, 225, 240, 0.04) 30%,
        transparent 70%
    );
    z-index: 0;
    animation: pulse 6s ease-in-out infinite;
}

.home-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 75vh;
}

.logo-section {
    flex: 0 0 auto;
    padding-top: 0;
    margin-bottom: 0;
}

.countdown-section {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
}

.monogram {
    font-size: 7.5rem;
    font-family: 'Great Vibes', cursive;
    background: linear-gradient(
        135deg, 
        rgba(220, 180, 210, 1) 0%,
        rgba(200, 160, 200, 1) 25%,
        rgba(180, 150, 190, 1) 50%,
        rgba(200, 160, 200, 1) 75%,
        rgba(220, 180, 210, 1) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    filter: drop-shadow(0 6px 15px rgba(210, 180, 210, 0.3));
    animation: fadeIn 1.2s ease-out 0.3s both, subtleGlow 4s ease-in-out infinite;
    letter-spacing: 5px;
    position: relative;
}

@keyframes subtleGlow {
    0%, 100% { 
        filter: drop-shadow(0 6px 15px rgba(210, 180, 210, 0.3));
    }
    50% { 
        filter: drop-shadow(0 8px 20px rgba(220, 190, 220, 0.4));
    }
}

.event-type {
    font-size: 1.8rem;
    font-family: 'Cinzel', serif;
    color: #6a5d5a;
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: fadeIn 1.2s ease-out 0.5s both;
}

.names {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: #3a3230;
    margin: 15px 0 40px 0;
    font-weight: 600;
    animation: fadeIn 1.2s ease-out 0.7s both;
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
}

.names::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4b0ca, #b495b4, transparent);
    animation: expandLine 1.2s ease-out 1.4s both;
}

@keyframes expandLine {
    to {
        width: 70%;
    }
}

/* Décorations subtiles rose pâle et violet */
.lemon-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(240, 220, 235, 0.25), rgba(220, 200, 220, 0.18), rgba(210, 190, 215, 0.12));
    opacity: 0.5;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(220, 200, 220, 0.12);
    border: 1px solid rgba(230, 210, 230, 0.15);
}

.lemon-decoration::before {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: rgba(210, 180, 210, 0.5);
    animation: sparkle 3s ease-in-out infinite;
}

.lemon-1 { 
    top: 30px; 
    left: 30px; 
    animation-delay: 0s;
}

.lemon-2 { 
    top: 60px; 
    right: 40px; 
    animation-delay: 1.5s;
    width: 50px;
    height: 50px;
}

.lemon-3 { 
    bottom: 50px; 
    left: 50px; 
    animation-delay: 3s;
    width: 45px;
    height: 45px;
}

/* ============================================
   COMPTEUR ÉLÉGANT
   ============================================ */

.countdown {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 0 auto 40px;
    flex-wrap: nowrap;
    animation: fadeIn 1.2s ease-out 0.9s both;
    max-width: 800px;
    width: 100%;
}

.countdown-item {
    text-align: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    min-width: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    border: none;
}

.countdown-number {
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: linear-gradient(
        135deg, 
        rgba(232, 180, 212, 1) 0%,
        rgba(192, 132, 168, 1) 30%,
        rgba(155, 107, 158, 1) 60%,
        rgba(192, 132, 168, 1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(192, 132, 168, 0.3));
    animation: pulseNumbers 3s ease-in-out infinite;
}

@keyframes pulseNumbers {
    0%, 100% {
        filter: drop-shadow(0 4px 10px rgba(192, 132, 168, 0.3));
    }
    50% {
        filter: drop-shadow(0 5px 15px rgba(192, 132, 168, 0.4));
    }
}

.countdown-label {
    font-size: 1rem;
    font-family: 'Cinzel', serif;
    color: #6a5d5a;
    text-transform: lowercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* ============================================
   BOUTONS ÉLÉGANTS
   ============================================ */

.home-button {
    background: linear-gradient(
        135deg,
        rgba(210, 170, 200, 1) 0%,
        rgba(180, 150, 180, 1) 50%,
        rgba(210, 170, 200, 1) 100%
    );
    background-size: 200% 100%;
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s ease-out 1.4s both;
    min-height: 60px;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 
        0 15px 45px rgba(210, 180, 210, 0.35),
        0 8px 25px rgba(190, 160, 190, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.home-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.home-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: width 0.6s ease, height 0.6s ease;
}

.home-button:hover {
    background-position: 100% 0;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 25px 65px rgba(210, 180, 210, 0.4),
        0 15px 40px rgba(190, 160, 190, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 4px;
}

.home-button:hover::before {
    transform: translateX(100%);
}

.home-button:hover::after {
    width: 300px;
    height: 300px;
}

.home-button:active {
    transform: translateY(-2px) scale(1);
}

/* ============================================
   PAGE MENU ÉVÉNEMENTS
   ============================================ */

.events-menu {
    text-align: center;
    padding: 50px 0;
}

.menu-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: #3a3230;
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.menu-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c084a8, #9b6b9e, transparent);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.event-button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(252, 250, 249, 0.8) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    padding: 45px 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(10px);
}

.event-button::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #c084a8, #e8b4d4, #9b6b9e);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.event-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c084a8, #e8b4d4, #9b6b9e);
    border-radius: 25px 25px 0 0;
}

.event-button:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(192, 132, 168, 0.3);
}

.event-button:hover::before {
    opacity: 0.15;
}

.event-button:hover::before {
    opacity: 0.3;
}

.event-button h3 {
    font-size: 2rem;
    font-family: 'Cinzel', serif;
    color: #3a3230;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    letter-spacing: 3px;
    font-weight: 600;
}

.event-button:hover h3 {
    color: #c084a8;
    transform: scale(1.05);
}

.event-button .date {
    color: #6a5d5a;
    font-size: 1.05rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.event-button .location {
    color: #7a6d6a;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* ============================================
   PAGES D'ÉVÉNEMENTS
   ============================================ */

.event-page {
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(252, 248, 252, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%
    );
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 30px;
    padding: 50px;
    margin: 30px 0;
    box-shadow: 
        0 25px 70px rgba(192, 132, 168, 0.2),
        0 10px 35px rgba(155, 107, 158, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg, 
        rgba(232, 180, 212, 0.8) 0%,
        rgba(192, 132, 168, 0.9) 25%,
        rgba(155, 107, 158, 0.8) 50%,
        rgba(192, 132, 168, 0.9) 75%,
        rgba(232, 180, 212, 0.8) 100%
    );
    background-size: 200% 100%;
    border-radius: 30px 30px 0 0;
    animation: shimmer 3s linear infinite;
    z-index: 1;
}

.event-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(232, 180, 212, 0.04) 0%,
        transparent 60%
    );
    border-radius: 30px;
    pointer-events: none;
    z-index: 0;
}

/* Style spécial pour la page Houppa */
#houppa .event-page {
    background: linear-gradient(135deg, rgba(255, 254, 253, 0.95) 0%, rgba(252, 250, 248, 0.92) 100%);
}

#houppa .event-page::before {
    background: rgba(255, 255, 255, 0.4);
}

/* Noms des parents/grands-parents */
.parents-names {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 30px 0 40px 0;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #3a3230;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Ombres pour les éléments sur fond floral */
#houppa-section .parents-names,
#houppa-section .parents-left,
#houppa-section .parents-right {
    text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.95),
                 0 0 15px rgba(255, 255, 255, 0.6);
    color: #4a3a37;
}

.parents-left {
    text-align: left !important;
    padding-left: 20px;
    justify-self: start;
    align-self: start;
}

.parents-right {
    text-align: right !important;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
    justify-self: end;
    align-self: start;
}

/* Noms du couple */
.couple-names {
    font-size: 2rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #3a3230;
    margin: 25px 0;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

/* Ombres pour les noms du couple sur fond floral */
#houppa-section .couple-names {
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.95),
                 0 0 25px rgba(255, 255, 255, 0.7),
                 1px 1px 4px rgba(0, 0, 0, 0.15);
    color: #4a3a37;
}

/* Noms en hébreu */
.hebrew-names {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    font-size: 1.3rem;
    margin: 25px 0;
    direction: ltr;
    position: relative;
    z-index: 2;
}

/* Ombres pour les noms hébreux sur fond floral */
#houppa-section .hebrew-names,
#houppa-section .hebrew-name-left,
#houppa-section .hebrew-name-right {
    text-shadow: 1px 1px 8px rgba(255, 255, 255, 0.95),
                 0 0 20px rgba(255, 255, 255, 0.6);
    color: #4a3a37;
}

.hebrew-name-right {
    direction: rtl;
}

.hebrew-name-left {
    direction: rtl;
}

/* Lien itinéraire */
.itinerary-link {
    color: #3a3230;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    margin: 20px 0;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 2;
}

.itinerary-link:hover {
    color: #c084a8;
    transform: translateY(-2px);
}

/* Lien itinéraire pour toutes les sections - visible sur fond floral */
#mairie-section .itinerary-link,
#henne-section .itinerary-link,
#houppa-section .itinerary-link,
#chabbat-section .itinerary-link {
    text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.95),
                 0 0 15px rgba(255, 255, 255, 0.6);
    color: #5a4a47;
    font-size: 1rem;
    margin: 25px 0;
}

/* Hommage aux grands-parents */
.grandparents-tribute {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #5a524f;
    line-height: 1.6;
    margin-top: 40px;
    padding: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Ombres pour l'hommage sur fond floral */
#houppa-section .grandparents-tribute {
    text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.95),
                 0 0 15px rgba(255, 255, 255, 0.6);
    color: #5a4a47;
}

.event-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 30px;
    position: relative;
    z-index: 2;
}

.event-title {
    font-size: 3rem;
    font-family: 'Cinzel', serif;
    color: #3a3230;
    margin-bottom: 25px;
    letter-spacing: 4px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.event-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c084a8, #9b6b9e, transparent);
}

.event-date {
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    color: #6a5d5a;
    margin-bottom: 20px;
    font-style: italic;
}

.event-location {
    color: #7a6d6a;
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    margin-bottom: 35px;
    white-space: pre-line;
}

.event-description {
    color: #5a524f;
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    margin-bottom: 50px;
    white-space: pre-line;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FORMULAIRES ÉLÉGANTS
   ============================================ */

.response-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(252, 250, 248, 0.85) 100%);
    padding: 45px;
    border-radius: 20px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(192, 132, 168, 0.15);
    position: relative;
    z-index: 2;
}

#houppa .response-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 250, 248, 0.92) 100%);
}

.form-title {
    color: #3a3230;
    font-size: 1.8rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 35px;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #3a3230;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid rgba(192, 132, 168, 0.2);
    border-radius: 14px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(252, 250, 252, 0.9) 100%
    );
    color: #3a3230;
    box-shadow: 0 2px 8px rgba(192, 132, 168, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(192, 132, 168, 0.6);
    box-shadow: 
        0 0 0 4px rgba(192, 132, 168, 0.12),
        0 4px 12px rgba(192, 132, 168, 0.15);
    transform: translateY(-2px);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(252, 248, 252, 0.98) 100%
    );
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(192, 132, 168, 0.4);
    box-shadow: 0 3px 10px rgba(192, 132, 168, 0.08);
}

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

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.checkbox-group label:hover {
    background: rgba(192, 132, 168, 0.08);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #c084a8;
}

.submit-button {
    background: linear-gradient(
        135deg, 
        rgba(192, 132, 168, 1) 0%,
        rgba(155, 107, 158, 1) 50%,
        rgba(192, 132, 168, 1) 100%
    );
    background-size: 200% 100%;
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    min-height: 65px;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 
        0 12px 40px rgba(192, 132, 168, 0.4),
        0 6px 20px rgba(155, 107, 158, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.submit-button:hover {
    background-position: 100% 0;
    transform: translateY(-4px);
    box-shadow: 
        0 18px 55px rgba(192, 132, 168, 0.45),
        0 10px 30px rgba(155, 107, 158, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 4px;
}

.submit-button:hover::before {
    transform: translateX(100%);
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button:disabled {
    background: linear-gradient(135deg, rgba(200, 200, 200, 1), rgba(160, 160, 160, 1));
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.6;
}

/* ============================================
   PANNEAU ADMIN
   ============================================ */

.admin-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 250, 248, 0.92) 100%);
    border-radius: 25px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(192, 132, 168, 0.15);
}

.admin-panel h3 {
    font-family: 'Cinzel', serif;
    color: #3a3230;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.responses-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.response-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #c084a8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.response-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #9b6b9e;
}

.response-item.declined {
    border-left-color: #c9302c;
    opacity: 0.7;
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Loading spinner */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

/* Tablettes */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .names {
        font-size: 2.8rem;
    }
    
    .logo-section {
        padding-top: 0;
    }

    .countdown-section {
        padding-bottom: 0;
    }

    .home-content {
        min-height: 70vh;
    }
    
    .monogram {
        font-size: 5rem;
        margin-bottom: 0;
    }
    
    .event-type {
        font-size: 1.4rem;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }
    
    .names {
        font-size: 2.5rem;
        margin: 12px 0 30px 0;
    }
    
    .countdown {
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .countdown-item {
        min-width: auto;
        padding: 0;
    }
    
    .countdown-number {
        font-size: 3rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .event-page {
        padding: 35px;
    }
    
    .response-form {
        padding: 30px;
    }
    
    .event-title {
        font-size: 2.3rem;
    }
    
    .menu-title {
        font-size: 2.3rem;
    }
}

/* Téléphones */
@media (max-width: 480px) {
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }

    .container {
        padding: 10px;
    }

    .home-header {
        padding: 40px 20px;
        min-height: 90vh;
        margin: 15px 0;
        border-radius: 20px;
    }

    .logo-section {
        padding-top: 0;
    }

    .countdown-section {
        padding-bottom: 0;
    }

    .home-content {
        min-height: 80vh;
    }

    .monogram {
        font-size: 3rem;
        margin-bottom: 0;
    }

    .event-type {
        font-size: 1.1rem;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

    .names {
        font-size: 1.5rem;
        margin: 10px 0 25px 0;
        letter-spacing: 1.5px;
    }

    /* Compte à rebours amélioré pour mobile */
    .countdown {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin: 0 auto 30px;
        max-width: 100%;
    }

    .countdown-item {
        min-width: auto;
        width: auto;
        padding: 0;
        flex-shrink: 1;
    }

    .countdown-number {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .countdown-label {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        margin-top: 8px;
    }

    .home-button {
        padding: 16px 35px;
        font-size: 0.85rem;
        width: calc(100% - 20px);
        margin-top: 30px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-logo {
        font-size: 1.6rem;
    }

    .mobile-nav li {
        padding: 20px 12px;
        font-size: 0.95rem;
    }

    .menu-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .events-grid {
        gap: 20px;
        margin: 30px 0;
    }

    .event-button {
        padding: 35px 25px;
    }

    .event-button h3 {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .event-page {
        padding: 30px 20px;
        margin: 20px 0;
        border-radius: 20px;
    }

    .event-title {
        font-size: 2rem;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .event-date {
        font-size: 1.2rem;
    }

    .event-location {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .event-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 35px;
    }

    .parents-names {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .parents-left {
        text-align: left !important;
        padding-left: 5px;
    }

    .parents-right {
        text-align: right !important;
        padding-right: 5px;
        align-items: flex-end;
    }

    .couple-names {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .hebrew-names {
        gap: 40px;
        font-size: 1.1rem;
    }

    .response-form {
        padding: 25px 20px;
    }

    .form-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .form-group {
        margin-bottom: 22px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 14px;
        font-size: 16px;
        border-radius: 10px;
    }

    .submit-button {
        padding: 20px 35px;
        font-size: 1rem;
        margin-top: 15px;
    }

    .checkbox-group label {
        padding: 14px 10px;
        font-size: 0.95rem;
    }

    .admin-panel {
        padding: 25px 20px;
        margin: 30px 0;
    }

    /* Masquer les décorations sur mobile pour plus d'espace */
    .lemon-decoration {
        display: none;
    }

    .page {
        padding-top: 80px;
    }

    .page.home {
        padding-top: 0;
    }
}

/* Petits téléphones (iPhone SE, etc.) */
@media (max-width: 375px) {
    .container {
        padding: 8px;
    }

    .home-header {
        padding: 35px 15px;
        margin: 10px 0;
        border-radius: 15px;
    }

    .logo-section {
        padding-top: 0;
    }

    .countdown-section {
        padding-bottom: 0;
    }

    .home-content {
        min-height: 80vh;
    }

    .monogram {
        font-size: 2.5rem;
        margin-bottom: 0;
    }

    .event-type {
        font-size: 1rem;
        letter-spacing: 2.5px;
        margin-bottom: 8px;
    }

    .names {
        font-size: 1.3rem;
        letter-spacing: 1px;
        margin: 8px 0 20px 0;
    }

    /* Compte à rebours ultra compact */
    .countdown {
        gap: 30px;
        margin: 0 auto 25px;
    }

    .countdown-item {
        padding: 0;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        margin-top: 6px;
    }

    .home-button {
        font-size: 0.8rem;
        padding: 14px 28px;
        margin-top: 25px;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }

    .event-title {
        font-size: 1.7rem;
    }

    .menu-title {
        font-size: 1.8rem;
    }

    .couple-names {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }

    .hebrew-names {
        gap: 30px;
        font-size: 1rem;
    }

    .parents-names {
        font-size: 0.85rem;
        gap: 10px;
        padding: 0 5px;
    }
    
    .parents-left {
        padding-left: 0;
    }
    
    .parents-right {
        padding-right: 0;
    }
}

/* iPhone en mode portrait - optimisation supplémentaire */
@media (max-width: 390px) and (max-height: 844px) {
    .home-header {
        padding: 30px 12px;
        margin: 8px;
        min-height: 88vh;
    }
    
    .logo-section {
        padding-top: 0;
    }

    .countdown-section {
        padding-bottom: 0;
    }

    .home-content {
        min-height: 80vh;
    }
    
    .monogram {
        font-size: 2.8rem;
        margin-bottom: 0;
    }
    
    .event-type {
        font-size: 1.05rem;
        letter-spacing: 2.8px;
    }
    
    .names {
        font-size: 1.4rem;
    }
    
    .countdown {
        margin: 0 auto 20px;
    }
    
    .home-button {
        padding: 16px 35px;
    }
}

/* ============================================
   PAGE TOUS LES ÉVÉNEMENTS
   ============================================ */

.all-events-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
}

/* Sommaire des événements - fond uni */
.events-summary {
    text-align: center;
    background-image: url('../images/fond-uni.png') !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    margin: 60px 0 80px;
    padding: 50px 40px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 30px;
    box-shadow: none;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Retirer les effets décoratifs du sommaire */
.events-summary::before {
    display: none;
}

.summary-title {
    font-size: 3.2rem;
    font-family: 'Playfair Display', serif;
    color: #8B6F7E;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(139, 111, 126, 0.15);
}

/* Retirer la barre décorative sous le titre du sommaire */
.summary-title::after {
    display: none;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-link {
    display: block;
    background-image: url('../images/fond-uni.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    padding: 35px 25px;
    border-radius: 22px;
    border: 1.5px solid rgba(192, 132, 168, 0.25);
    box-shadow: 
        0 4px 15px rgba(192, 132, 168, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: inherit;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.event-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg, 
        rgba(232, 180, 212, 0.7) 0%,
        rgba(192, 132, 168, 0.85) 50%,
        rgba(232, 180, 212, 0.7) 100%
    );
    border-radius: 22px 22px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(192, 132, 168, 0.08) 0%,
        transparent 70%
    );
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-link:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(192, 132, 168, 0.5);
    box-shadow: 
        0 8px 25px rgba(192, 132, 168, 0.2),
        0 4px 15px rgba(192, 132, 168, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.event-link:hover::before {
    opacity: 1;
}

.event-link:hover::after {
    opacity: 1;
}

.event-link h3 {
    font-size: 1.8rem;
    font-family: 'Cinzel', serif;
    color: #3a3230;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.event-link:hover h3 {
    color: #c084a8;
}

.event-link .date {
    color: #6a5d5a;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 10px;
}

.event-link .location {
    color: #7a6d6a;
    font-size: 0.95rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.event-section {
    margin-bottom: 80px;
    animation: fadeIn 0.8s ease-out;
    scroll-margin-top: 100px;
}


.event-section:last-of-type {
    margin-bottom: 80px;
}

/* Fond floral pour toutes les sections d'événements - prend tout le fond */
/* Les fleurs en haut doivent être claires comme pour Chabbat */
/* Utiliser exactement les mêmes paramètres pour toutes les sections (sauf Houppa) */
#mairie-section,
#henne-section,
#chabbat-section {
    position: relative;
    background-image: url('../images/fond-floral.png') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll;
    background-color: transparent !important;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    left: 0;
    right: 0;
}

/* La Houppa utilise son propre fond floral */
#houppa-section {
    position: relative;
    background-image: url('../images/fond-floral-houppa.png') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll;
    background-color: transparent !important;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    left: 0;
    right: 0;
}

/* Ajouter fond uni en bas si le contenu dépasse */
#houppa-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background-image: url('../images/fond-uni.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

#houppa-section .event-page,
#houppa-section .event-header {
    position: relative;
    z-index: 1;
}

#mairie-section .event-page,
#henne-section .event-page,
#houppa-section .event-page,
#chabbat-section .event-page {
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: 100%;
    max-width: 800px;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
}

/* Retirer la barre violette et l'effet glace pour toutes les sections */
#mairie-section .event-page::before,
#mairie-section .event-page::after,
#henne-section .event-page::before,
#henne-section .event-page::after,
#houppa-section .event-page::before,
#houppa-section .event-page::after,
#chabbat-section .event-page::before,
#chabbat-section .event-page::after {
    display: none;
}

#mairie-section .event-header,
#henne-section .event-header,
#houppa-section .event-header,
#chabbat-section .event-header {
    padding: 0 30px 60px 30px;
    margin-top: 300px;
    text-align: center;
}

/* Desktop - plus d'espace en haut */
@media (min-width: 769px) {
    #mairie-section .event-header,
    #henne-section .event-header,
    #houppa-section .event-header,
    #chabbat-section .event-header {
        margin-top: 400px;
    }
}

/* Retirer la barre violette sous le titre pour toutes les sections */
#mairie-section .event-title::after,
#henne-section .event-title::after,
#houppa-section .event-title::after,
#chabbat-section .event-title::after {
    display: none;
}

/* Texte visible sur le fond floral pour toutes les sections */
#mairie-section .event-title,
#henne-section .event-title,
#houppa-section .event-title,
#chabbat-section .event-title {
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.95),
                 0 0 25px rgba(255, 255, 255, 0.7),
                 1px 1px 4px rgba(0, 0, 0, 0.15);
    color: #3a3230;
    font-size: 3.2rem;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

/* Noms du couple */
#mairie-section .mairie-couple-names {
    font-size: 2.5rem;
    font-family: 'Cinzel', serif;
    color: #4a3a37;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.95),
                 0 0 25px rgba(255, 255, 255, 0.7),
                 1px 1px 4px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
    letter-spacing: 3px;
    font-weight: 600;
}

/* Vœux */
#mairie-section .mairie-vows {
    font-size: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    color: #5a4a47;
    text-shadow: 1px 1px 8px rgba(255, 255, 255, 0.95),
                 0 0 20px rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
    font-style: italic;
    letter-spacing: 1px;
}

/* Styles de texte pour toutes les sections avec fond floral */
#mairie-section .event-date,
#henne-section .event-date,
#houppa-section .event-date,
#chabbat-section .event-date {
    text-shadow: 1px 1px 8px rgba(255, 255, 255, 0.95),
                 0 0 20px rgba(255, 255, 255, 0.6);
    color: #5a4a47;
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

#mairie-section .event-location,
#henne-section .event-location,
#houppa-section .event-location,
#chabbat-section .event-location {
    text-shadow: 1px 1px 8px rgba(255, 255, 255, 0.95),
                 0 0 20px rgba(255, 255, 255, 0.6);
    color: #6a5a57;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

#mairie-section .event-description,
#henne-section .event-description,
#houppa-section .event-description,
#chabbat-section .event-description {
    text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.95),
                 0 0 18px rgba(255, 255, 255, 0.6);
    color: #5a4a47;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-top: 30px;
}

/* Media queries pour iPhone - garder les titres sur une ligne */
@media (max-width: 480px) {
    #mairie-section .event-title,
    #henne-section .event-title,
    #houppa-section .event-title,
    #chabbat-section .event-title {
        font-size: 2rem;
        letter-spacing: 2px;
        white-space: nowrap;
    }
    
    #mairie-section .mairie-couple-names {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
        white-space: nowrap;
    }
    
    #mairie-section .mairie-vows {
        font-size: 1.4rem;
    }
    
    #mairie-section .event-date,
    #henne-section .event-date,
    #houppa-section .event-date,
    #chabbat-section .event-date {
        font-size: 1.2rem;
    }
    
    #mairie-section .event-location,
    #henne-section .event-location,
    #houppa-section .event-location,
    #chabbat-section .event-location {
        font-size: 1.1rem;
    }
    
    #mairie-section .event-description,
    #henne-section .event-description,
    #houppa-section .event-description,
    #chabbat-section .event-description {
        font-size: 1rem;
    }
    
    #mairie-section,
    #henne-section,
    #houppa-section,
    #chabbat-section {
        padding: 0;
        min-height: auto;
        margin: 0 -15px;
        width: calc(100% + 30px);
        max-width: none;
        overflow: hidden;
        background-size: cover !important;
        background-position: center top !important;
        box-sizing: border-box;
        position: relative;
    }
    
    /* Forcer les mêmes paramètres pour la Houppa sur mobile */
    #houppa-section {
        background-image: url('../images/fond-floral-houppa.png') !important;
        background-size: cover !important;
        background-position: center top !important;
        min-height: auto;
    }
    
    /* Fond uni en bas sur mobile si le contenu dépasse */
    #houppa-section::after {
        height: 40%;
        opacity: 1;
    }
    
    #mairie-section .event-header,
    #henne-section .event-header,
    #houppa-section .event-header,
    #chabbat-section .event-header {
        padding: 0 20px 40px 20px;
        margin-top: 200px;
    }
}

@media (max-width: 375px) {
    #mairie-section .event-title {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }
    
    #mairie-section .mairie-couple-names {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
}

/* ============================================
   FORMULAIRE UNIFIÉ
   ============================================ */

.unified-form-section {
    max-width: 1000px;
    margin: 80px auto 40px;
    padding: 20px;
    scroll-margin-top: 100px;
}

.unified-form {
    background-image: url('../images/fond-uni.png') !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 28px;
    padding: 55px 50px;
    box-shadow: none;
    border: none;
    position: relative;
    z-index: 2;
}

/* Retirer les effets décoratifs du formulaire */
.unified-form::before {
    display: none;
}

/* Retirer les effets décoratifs du formulaire */
.unified-form::after {
    display: none;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(192, 132, 168, 0.15);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #3a3230;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

/* Retirer la barre décorative sous les titres de section */
.section-title::after {
    display: none;
}

.event-response-section {
    background: transparent;
    padding: 35px;
    border-radius: 18px;
    border: none;
    box-shadow: 
        0 8px 25px rgba(192, 132, 168, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.event-response-section:hover {
    box-shadow: 
        0 12px 35px rgba(192, 132, 168, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(192, 132, 168, 0.25);
}

.guests-field {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border-left: 3px solid #c084a8;
}

/* Animation pour le bouton de chargement */
.submit-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ============================================
   RESPONSIVE - PAGE TOUS LES ÉVÉNEMENTS
   ============================================ */

@media (max-width: 768px) {
    .all-events-container {
        padding: 15px;
    }
    
    .events-summary {
        margin: 40px 0 60px;
        padding: 30px 20px;
    }
    
    .summary-title {
        font-size: 2.3rem;
        margin-bottom: 35px;
    }
    
    .events-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-link {
        padding: 25px 20px;
    }
    
    .event-link h3 {
        font-size: 1.6rem;
    }
    
    .event-section {
        margin-bottom: 40px;
        scroll-margin-top: 80px;
    }
    
    .unified-form-section {
        margin: 60px auto 30px;
        padding: 15px;
    }
    
    .unified-form {
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .event-response-section {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .all-events-container {
        padding: 10px;
    }
    
    .events-summary {
        margin: 30px 0 50px;
        padding: 25px 15px;
        border-radius: 20px;
    }
    
    .summary-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .events-list {
        gap: 15px;
    }
    
    .event-link {
        padding: 20px 15px;
    }
    
    .event-link h3 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .event-link .date,
    .event-link .location {
        font-size: 0.9rem;
    }
    
    .event-section {
        margin-bottom: 30px;
        scroll-margin-top: 70px;
    }
    
    .unified-form-section {
        margin: 40px auto 20px;
        padding: 10px;
    }
    
    .unified-form {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .section-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .event-response-section {
        padding: 20px 15px;
    }
    
    .guests-field {
        padding: 15px;
    }
    
    .form-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
}

/* ============================================
   PAGE RÉSERVATION CHAMBRES
   ============================================ */

#reservation-chambres {
    background-image: url('../images/fond-uni.png') !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    min-height: 100vh;
}

.reservation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.reservation-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #8B6F7E;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.reservation-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.room-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(192, 132, 168, 0.25);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(192, 132, 168, 0.1), 0 3px 10px rgba(155, 107, 158, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(192, 132, 168, 0.15), 0 5px 15px rgba(155, 107, 158, 0.1);
}

.room-image-carousel {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    touch-action: pan-y;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: none;
}

.carousel-image.active {
    display: block;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.dot.active {
    background: rgba(255, 255, 255, 1);
    width: 24px;
    border-radius: 4px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.room-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.room-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #5a4a47;
    margin: 0;
    flex: 1;
}

.room-badge {
    background: rgba(192, 132, 168, 0.15);
    color: #8B6F7E;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 15px;
}

.room-availability {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(192, 132, 168, 0.1);
}

.room-availability .available-count {
    font-weight: 700;
    color: #8B6F7E;
    font-size: 1.2rem;
}

.room-availability.sold-out {
    color: #d32f2f;
}

.room-availability.sold-out .available-count {
    color: #d32f2f;
}

.room-description {
    flex: 1;
    margin-bottom: 20px;
}

.room-description p {
    margin: 10px 0;
    color: #555;
    line-height: 1.6;
}

.room-description p strong {
    color: #5a4a47;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.room-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.room-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B6F7E;
    font-weight: bold;
}

.room-note {
    color: #d32f2f;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

.room-price {
    margin: 20px 0;
    padding: 15px;
    background: rgba(192, 132, 168, 0.05);
    border-radius: 10px;
    border-left: 3px solid #8B6F7E;
}

.room-price strong {
    color: #5a4a47;
    font-size: 1.2rem;
}

.price-euro {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

.extra-person {
    color: #666;
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
}

.reserve-btn {
    background: linear-gradient(135deg, #c084a8 0%, #9b6b9e 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reserve-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, #9b6b9e 0%, #c084a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 132, 168, 0.3);
}

.reserve-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.reservation-button {
    background: linear-gradient(135deg, #c084a8 0%, #9b6b9e 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 30px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 6px rgba(255, 255, 255, 0.95),
                 0 0 15px rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reservation-button:hover {
    background: linear-gradient(135deg, #9b6b9e 0%, #c084a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Modal de réservation */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(192, 132, 168, 0.25);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #c084a8;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #5a4a47;
    margin-bottom: 30px;
    text-align: center;
}

.modal-info {
    background: rgba(192, 132, 168, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

/* Responsive pour la page de réservation */
@media (max-width: 768px) {
    .reservation-container {
        padding: 40px 20px;
    }
    
    .reservation-title {
        font-size: 2.2rem;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .room-image-carousel {
        height: 200px;
    }
    
    .room-content {
        padding: 25px 20px;
    }
    
    .room-name {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .reservation-title {
        font-size: 1.8rem;
    }
    
    .reservation-subtitle {
        font-size: 1rem;
    }
    
    .room-image-carousel {
        height: 180px;
    }
    
    .carousel-dots {
        bottom: 8px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    .room-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .room-badge {
        margin-left: 0;
        align-self: flex-start;
    }
}

/* ============================================
   PAGE ADMIN RÉSERVATIONS
   ============================================ */

#admin-reservations {
    background-image: url('../images/fond-uni.png') !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    min-height: 100vh;
}

.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.admin-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8B6F7E;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.admin-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #5a4a47;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid rgba(192, 132, 168, 0.3);
    padding-bottom: 10px;
}

/* Statistiques */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(192, 132, 168, 0.25);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(192, 132, 168, 0.1), 0 3px 10px rgba(155, 107, 158, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(192, 132, 168, 0.15), 0 5px 15px rgba(155, 107, 158, 0.1);
}

.stat-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #5a4a47;
    margin-bottom: 15px;
    font-weight: 600;
}

.stat-numbers {
    font-size: 2.5rem;
    margin: 15px 0;
    font-weight: 700;
}

.stat-available {
    color: #8B6F7E;
}

.stat-available.sold-out {
    color: #d32f2f;
}

.stat-separator {
    color: #999;
    margin: 0 5px;
}

.stat-total {
    color: #666;
    font-size: 1.8rem;
}

.stat-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.stat-reserved {
    color: #8B6F7E;
    font-size: 0.95rem;
    margin-top: 10px;
    font-weight: 600;
}

/* Actions */
.admin-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.admin-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.refresh-btn {
    background: linear-gradient(135deg, #8B6F7E 0%, #9b6b9e 100%);
    color: white;
}

.refresh-btn:hover {
    background: linear-gradient(135deg, #9b6b9e 0%, #8B6F7E 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 126, 0.3);
}

.export-btn {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
}

.export-btn:hover {
    background: linear-gradient(135deg, #357abd 0%, #4a90e2 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.clear-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.clear-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Liste des réservations */
.admin-reservations-list {
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(192, 132, 168, 0.25);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(192, 132, 168, 0.1), 0 3px 10px rgba(155, 107, 158, 0.05);
    margin-top: 30px;
}

#reservations-list-container {
    min-height: 100px;
}

.loading-text {
    text-align: center;
    color: #666;
    font-style: italic;
}

.no-reservations {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    padding: 40px;
}

.refresh-message {
    background: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    animation: slideDown 0.3s ease;
}

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

.reservations-group {
    margin-bottom: 40px;
}

.group-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #5a4a47;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(192, 132, 168, 0.2);
}

.reservations-items {
    display: grid;
    gap: 20px;
}

.reservation-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(192, 132, 168, 0.2);
    border-left: 4px solid #8B6F7E;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.reservation-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(192, 132, 168, 0.15);
    border-left-color: #9b6b9e;
}

.reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(192, 132, 168, 0.1);
}

.reservation-number {
    font-weight: 700;
    color: #8B6F7E;
    font-size: 1.1rem;
}

.reservation-date {
    color: #666;
    font-size: 0.9rem;
}

.reservation-details {
    display: grid;
    gap: 10px;
}

.detail-row {
    color: #555;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.detail-row strong {
    color: #5a4a47;
    min-width: 20px;
}

.detail-row.message {
    font-style: italic;
    color: #666;
    margin-top: 5px;
    padding-top: 10px;
    border-top: 1px solid rgba(192, 132, 168, 0.1);
}

/* Responsive admin */
@media (max-width: 768px) {
    .admin-container {
        padding: 40px 20px;
    }
    
    .admin-title {
        font-size: 2rem;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .admin-btn {
        width: 100%;
    }
    
    .admin-reservations-list {
        padding: 25px 20px;
    }
    
    .reservation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
