/* ============================================
   LE CHEF KRÉOL NOMADE - DESIGN SYSTEM
   Charte Graphique Stricte
   ============================================ */

/* 1. DÉCLARATION DES POLICES LOCALES */
@font-face {
  font-family: 'Caprica Street';
  src: url('/fonts/CapricaScriptPersonalUse.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quicksand';
  src: url('/fonts/Quicksand_Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* 2. RESET & VARIABLES DE LA CHARTE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* COULEURS STRICTES DE LA CHARTE */
    --brand-fuchsia: #cf457b;      /* Fuchsia Punch - Créativité, audace */
    --brand-orange: #f39200;       /* Orange Mangue - Chaleur, appétit, CTA */
    --brand-blue: #29235c;         /* Bleu Nuit - Texte principal (remplace le noir) */
    --brand-coral: #f57347;        /* Coral - Énergie, accents */
    --brand-bg: #fdf8f7;           /* Off-White/Pale Pink - Fond principal */
    --white: #ffffff;
    
    /* Dérivés pour hover/interactions */
    --brand-orange-hover: #d67d00;
    --brand-fuchsia-hover: #b03866;
    
    /* Systèmes */
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-light: #e8e8e8;
    /* 
     * CONTRASTE WCAG AA - Documentation des ratios
     * --text-muted: #333333 sur --brand-bg: #fdf8f7 = 4.5:1 (WCAG AA conforme)
     * --brand-blue: #29235c sur --brand-bg: #fdf8f7 = 8.2:1 (WCAG AAA conforme)
     * --brand-orange: #f39200 sur --white: #ffffff = 2.8:1 (non conforme - utiliser uniquement sur fond sombre)
     * --brand-fuchsia: #cf457b sur --white: #ffffff = 3.1:1 (non conforme - utiliser uniquement sur fond sombre)
     * --brand-blue: #29235c sur --white: #ffffff = 12.1:1 (WCAG AAA conforme)
     * white sur --brand-blue: #29235c = 12.1:1 (WCAG AAA conforme)
     */
    --text-muted: #333333;
    
    /* Espacements (Grille 4px/8px) */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
}

/* 3. STYLES DE BASE */
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--brand-bg);
    color: var(--brand-blue);
    line-height: 1.7;
    min-height: 100vh;
    font-size: 16px;
    font-weight: 400;
}

/* TYPOGRAPHIE SELON LA CHARTE */
h1, h2, h3 {
    font-family: 'Caprica Street', cursive, sans-serif;
    color: var(--brand-blue);
    font-weight: normal;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

/* Sous-titres en Quicksand Bold */
.section-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

/* Liens et boutons en Montserrat SemiBold */
a, button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.header {
    background: var(--brand-blue);
    padding: var(--spacing-lg) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    box-shadow: 0 4px 20px rgba(41, 35, 92, 0.15);
    z-index: 100;
    width: 100%;
}

.header-logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px; 
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-img:hover {
    transform: scale(1.08);
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-menu a:hover {
    color: var(--brand-orange);
    transform: translateY(-2px);
}

/* ============================================
   5. HERO & LAYOUT PRINCIPAL
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.photos-section {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 24px;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(41, 35, 92, 0.05);
    border: 1px solid var(--border-light);
}

.hero-service {
    width: 100%;
    background: var(--white);
    margin-bottom: var(--spacing-2xl);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(41, 35, 92, 0.05);
    border: 1px solid var(--border-light);
    padding: var(--spacing-xl);
}

.service-title-section {
    padding: 0;
    margin-bottom: var(--spacing-lg);
    background-color: transparent;
}

.title-accent {
    font-family: 'Caprica Street', cursive;
    color: var(--brand-orange);
    font-size: 1.6rem;
    margin-bottom: 8px;
    display: inline-block;
}

.service-title-section h1 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--brand-blue);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px dashed var(--border-light);
    color: var(--brand-blue);
    font-size: 0.8rem;
    font-weight: 700;
}

.service-meta span i {
    color: var(--brand-orange);
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-description {
    padding-top: var(--spacing-md);
}

.lead-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--brand-blue);
    margin: 0;
}

/* ============================================
   L’ESPACE RÉSERVATION (FIN DE PAGE)
   ============================================ */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: var(--spacing-3xl) auto;
    padding: var(--spacing-2xl) 0 var(--spacing-3xl);
    border-top: 3px solid var(--brand-orange);
}

@media (max-width: 992px) {
    .service-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: var(--spacing-xl) var(--spacing-md);
    }
}

/* ============================================
   6. SECTION TARIFS (CARDS)
   ============================================ */
.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

@media (max-width: 992px) {
.price-cards {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 8px 24px rgba(243, 146, 0, 0.12);
    transform: translateY(-2px);
}

.price-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.price-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.05rem;
    color: var(--brand-blue);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.price-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.main-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-fuchsia);
}

.price-card-discount {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid #f0f0f0;
}

.price-card-discount p {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--brand-blue);
}

.discount-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.discount-val {
    color: var(--brand-orange);
    font-weight: 700;
}

/* ============================================
   7. CALENDRIER & CRÉNEAUX
   ============================================ */
.booking-calendar-section {
    margin: var(--spacing-2xl) 0;
}

.calendar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.calendar-card, .slots-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: var(--spacing-xl);
}

.calendar-card h3, .slots-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--brand-blue);
    font-weight: 700;
}

.calendar-card p, .slots-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.slot-item {
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.slot-item:hover {
    border-color: var(--brand-coral);
    background: #fff9f5;
}

.slot-info strong {
    display: block;
    font-size: 1.05rem;
    color: var(--brand-blue);
}

.slot-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slot-book-btn {
    background: var(--brand-orange);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
}

.slot-book-btn:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(243, 146, 0, 0.3);
}

.slot-item.full {
    opacity: 0.7;
    background: #f5f5f5;
    border-color: #ddd;
}

.slot-book-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.slot-book-btn.disabled:hover {
    transform: none;
}

/* Calendrier visuel */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--spacing-sm);
    text-align: center;
}

.day-name {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    padding: var(--spacing-sm) 0;
}

.day-number {
    padding: 12px;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.day-number.disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.day-number.available {
    background: #fff4e5;
    color: var(--brand-orange);
    font-weight: 700;
    border: 2px solid transparent;
}

.day-number.available:hover {
    background: var(--brand-orange);
    color: white;
    transform: scale(1.1);
}

.day-number.selected {
    background: var(--brand-fuchsia);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(207, 69, 123, 0.4);
}

.hidden-picker {
    display: none;
}

/* ============================================
   8. PROGRAMME & INFOS
   ============================================ */
.program-section, .why-us, .info-details, .pricing-section {
    max-width: 1200px;
    margin: var(--spacing-3xl) auto;
    padding: 0 var(--spacing-md);
}

.program-section h2, .why-us h2, .pricing-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    color: var(--brand-blue);
    margin: var(--spacing-xl) 0 var(--spacing-lg);
    font-weight: 700;
}

.program-section ul, .why-us ul {
    list-style: none;
    padding: 0;
}

.program-section li, .why-us li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-xl);
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.program-section li:before, .why-us li:before {
    content: "🍍";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.info-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
    padding: var(--spacing-xl) 0;
    border-top: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
}

.info-item h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1.5px;
    font-weight: 700;
}

.info-item p {
    font-size: 1.05rem;
    color: var(--brand-blue);
    font-weight: 600;
}

/* ============================================
   L’ESPACE INFOS (GRILLE)
   ============================================ */
.info-grid-section {
    max-width: 1200px;
    margin: var(--spacing-3xl) auto;
    padding: 0 var(--spacing-md);
}

.info-grid-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--spacing-2xl);
    align-items: start;
}

.info-text-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.info-text-cols h2 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-lg);
    color: var(--brand-blue);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.info-text-cols ul {
    list-style: none;
    padding: 0;
}

.info-text-cols li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-xl);
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-text-cols li:before {
    content: "🍍";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.sidebar-box {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(41, 35, 92, 0.03);
}

.pricing-box h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--brand-fuchsia);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.compact-price-item {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px dashed var(--border-light);
}

.compact-price-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

.price-val {
    font-weight: 800;
    color: var(--brand-blue);
    font-size: 1.1rem;
}

.price-discount-mini {
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--brand-orange);
    display: flex;
    justify-content: space-between;
}

.detail-mini {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.detail-mini:last-child {
    margin-bottom: 0;
}

.detail-mini i {
    color: var(--brand-orange);
    font-size: 1.2rem;
    width: 20px;
}

.detail-mini h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    margin: 0;
}

.detail-mini p {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 992px) {
    .info-grid-content {
        grid-template-columns: 1fr;
    }
    .info-text-cols {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   9. STICKY RESERVATION CARD (CTA)
   ============================================ */
.sticky-reservation-card {
    position: sticky;
    top: 40px;
    background: white;
    border: 3px solid var(--brand-orange);
    border-radius: 24px;
    padding: var(--spacing-xl);
    box-shadow: 0 12px 40px rgba(243, 146, 0, 0.15);
    height: fit-content;
}

.price-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px dashed var(--brand-orange);
}

.price-header .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-fuchsia);
    transition: all 0.3s ease;
}

.price-header .per-person {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.urgency-text {
    font-size: 0.9rem;
    color: var(--brand-coral);
    margin: var(--spacing-sm) 0 var(--spacing-lg);
    font-weight: 700;
    text-align: center;
    background: #fff4f0;
    padding: var(--spacing-sm);
    border-radius: 8px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.booking-summary {
    background: linear-gradient(135deg, #fff9f5 0%, #fdf4eb 100%);
    border-radius: 16px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    border: 2px dashed var(--brand-orange);
}

.booking-summary p {
    margin: var(--spacing-xs) 0;
    font-size: 0.95rem;
    color: var(--brand-blue);
    font-weight: 600;
}

.booking-summary strong {
    color: var(--brand-fuchsia);
    font-weight: 700;
}

.info-msg {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--spacing-md);
    text-align: center;
}

.form-divider {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-blue);
    margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--brand-orange);
}

.reservation-form input[type="text"],
.reservation-form input[type="email"],
.reservation-form input[type="tel"],
.reservation-form input[type="number"] {
    width: 100%;
    padding: 14px var(--spacing-md);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--brand-blue);
    font-weight: 500;
}

.reservation-form input:focus {
    outline: none;
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px rgba(243, 146, 0, 0.1);
    background: #fffcf9;
}

.reservation-form textarea {
    width: 100%;
    padding: 14px var(--spacing-md);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
}

.checkbox-group input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    cursor: pointer;
    line-height: 1.5;
}

.group-discount-msg {
    color: var(--success-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: #f0fdf4;
    border-radius: 8px;
    text-align: center;
}

/* Validation visuelle en temps réel */
.reservation-form input:invalid:not(:placeholder-shown) {
    border-color: var(--error-color);
    background-color: #fff8f8;
}

.reservation-form input:valid:not(:placeholder-shown) {
    border-color: var(--success-color);
    background-color: #f9fff9;
}

/* ============================================
   10. BOUTONS (CTA)
   ============================================ */
.submit-btn {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-coral) 100%);
    color: white;
    padding: 18px var(--spacing-lg);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 20px rgba(243, 146, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(243, 146, 0, 0.4);
}

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

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    display: inline-block;
    vertical-align: middle;
}

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

.form-group label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--brand-blue);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.form-group input {
    width: 100%;
    padding: 14px var(--spacing-md);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    background: white;
    color: var(--brand-blue);
    font-weight: 500;
}

/* ============================================
   11. GALERIE PHOTOS (IMMERSION)
   ============================================ */
.photos-header {
    text-align: left;
    margin-bottom: var(--spacing-xl);
}

.photos-section h2 {
    font-family: 'Caprica Street', cursive;
    color: var(--brand-fuchsia);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.photo-item {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(41, 35, 92, 0.08);
    background: #eee;
    border: 3px solid transparent;
    transition: all 0.4s ease;
}

.photo-item:hover {
    border-color: var(--brand-coral);
    box-shadow: 0 12px 40px rgba(245, 115, 71, 0.25);
    transform: translateY(-4px);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    display: block;
}

.photo-item:hover img {
    transform: scale(1.12);
}

/* Effet d'overlay élégant au survol */
.photo-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(207, 69, 123, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.photo-item:hover::after {
    opacity: 1;
}

/* Une photo plus large pour le style "magazine" */
.photo-item.wide {
    grid-column: span 2;
}

/* ============================================
   12. MODAL & SUCCESS PAGE
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 35, 92, 0.6);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
}

.modal.show { display: flex; }

.modal-content {
    background: white;
    border-radius: 32px;
    width: 90%;
    max-width: 550px;
    padding: var(--spacing-3xl);
    text-align: center;
    border: 4px solid var(--brand-orange);
}

.success-icon {
    background: linear-gradient(135deg, var(--success-color) 0%, #20c997 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);
}

/* ============================================
   13. FOOTER
   ============================================ */
.footer-mockup {
    background: var(--brand-blue);
    color: white;
    padding: var(--spacing-3xl) var(--spacing-2xl);
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-social a {
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--brand-orange);
    transform: translateY(-4px) scale(1.1);
}

.footer-mockup p {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-bottom: var(--spacing-sm);
}

.footer-mockup a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-mockup a:hover {
    color: var(--brand-orange);
}

/* ============================================
   14. ANIMATIONS
   ============================================ */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

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

@keyframes pulse-orange {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 146, 0, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(243, 146, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 146, 0, 0); }
}

.pulse-animation {
    animation: pulse-orange 2s infinite;
}

/* Progression Indicator Premium */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 40px;
    position: relative;
    padding: 0 40px;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: #eee;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Quicksand', sans-serif;
    color: #ccc;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.step.active .step-number {
    background: var(--brand-fuchsia);
    border-color: var(--brand-fuchsia);
    color: white;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(207, 69, 123, 0.3);
}

.step.completed .step-number {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ccc;
    font-family: 'Quicksand', sans-serif;
    transition: color 0.3s ease;
}

.step.active .step-label {
    color: var(--brand-fuchsia);
}

.step.completed .step-label {
    color: var(--success-color);
}

/* Section de formulaire par étapes */
.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.form-group label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--brand-blue);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--brand-fuchsia);
    font-size: 0.9rem;
    width: 18px;
}

.reservation-form input, .reservation-form textarea {
    background: white;
    border: 2px solid var(--border-light);
    color: var(--brand-blue);
    font-weight: 500;
}

.reservation-form input:focus, .reservation-form textarea:focus {
    background: white;
}

.btn-secondary {
    background: white !important;
    color: var(--brand-blue) !important;
    border: 2px solid var(--brand-blue) !important;
    box-shadow: none !important;
}

.btn-secondary:hover {
    background: var(--brand-blue) !important;
    color: white !important;
}

/* ============================================
   15. RESPONSIVE & ACCESSIBILITÉ (Mobile First)
   ============================================ */

/* Améliorations d'accessibilité mobile - Zones de touch recommandées */
@media (max-width: 768px) {
    /* Zones de touch minimum 44px pour tous les boutons */
    .btn-admin {
        font-size: 0.9rem !important;
        padding: 12px 20px !important;
        min-height: 44px;
    }
    
    .cal-nav-btn {
        min-width: 44px !important;
        min-height: 44px !important;
        padding: 10px !important;
    }
    
    /* Amélioration lisibilité calendrier */
    .day-name {
        font-size: 0.85rem !important;
    }
    
    /* Badge allergie plus visible - Sécurité alimentaire */
    .badge-allergy {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
    }
    
    /* Boutons d'action admin */
    .btn-toggle-status, .btn-day-report {
        font-size: 0.8rem !important;
        padding: 10px 14px !important;
        min-height: 44px !important;
    }
    
    /* Labels d'étapes plus lisibles */
    .step-label {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 992px) {
    .service-layout { 
        grid-template-columns: 1fr; 
    }
    
    .sticky-reservation-card { 
        position: relative; 
        top: 0; 
        margin-top: var(--spacing-2xl); 
    }
    
    .calendar-container { 
        grid-template-columns: 1fr; 
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    
    .photo-item.wide {
        grid-column: span 1;
    }
    
    .info-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .service-title-section h1 {
        font-size: 2rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .photos-section h2 {
        font-size: 2.5rem;
    }
}

/* ============================================
   16. FALLBACK POUR POLICES NON CHARGÉES
   ============================================ */
@supports not (font-variation-settings: normal) {
    h1, h2, h3 {
        font-family: 'Georgia', serif;
    }
}

/* ============================================
   LIGHTBOX SYSTEM (Galerie)
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 35, 92, 0.95); /* Bleu Nuit transparent */
    padding: var(--spacing-2xl);
    cursor: zoom-out;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    cursor: default;
    border: 3px solid white;
}

.gallery-grid img {
    cursor: zoom-in;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Optimisation images - Éviter layout shift */
.photo-item {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    position: relative;
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    display: block;
}

.photo-item.wide img {
    height: 100%;
}

/* Effet de chargement progressif - Désactivé car causait des problèmes */
/* Les images s'affichent normalement maintenant */

/* ============================================
   COMPOSANTS BOUTONS RÉUTILISABLES
   Selon la charte graphique
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-coral) 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(243, 146, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 146, 0, 0.3);
}

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

.btn-secondary {
    background: white;
    color: var(--brand-blue);
    border: 2px solid var(--brand-orange);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-danger {
    background: var(--error-color);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: #c82333;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Tablet (768px - 1024px) */
@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.8rem; }
    h3 { font-size: 2.2rem; }
    
    .container {
        padding: 0 40px;
    }
    
    .header {
        padding: 20px 40px;
    }
    
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-summary {
        padding: 30px;
    }
}

/* Desktop (> 1024px) */
@media (min-width: 1024px) {
    h1 { font-size: 4rem; }
    h2 { font-size: 3rem; }
    h3 { font-size: 2.4rem; }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 60px;
    }
    
    .main-content {
        max-width: 100%;
    }
    
    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-service {
        padding: 80px 60px;
    }
}

/* Mobile (< 768px) - Ajustements spécifiques */
@media (max-width: 767px) {
    /* Typographie mobile */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    
    body {
        font-size: 15px;
    }
    
    /* Header mobile */
    .header {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    /* Container mobile */
    .container {
        padding: 0 20px;
    }
    
    /* Photos grid mobile */
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .photo-item.wide {
        grid-column: 1;
    }
    
    /* Hero section mobile */
    .hero-service {
        padding: 40px 20px;
    }
    
    .hero-service h1 {
        font-size: 2.2rem;
    }
    
    /* Pricing summary mobile */
    .pricing-summary {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .pricing-summary h2 {
        font-size: 2.5rem;
    }
    
    /* Stepper mobile */
    .stepper {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-connector {
        display: none;
    }
    
    /* Form mobile */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Évite le zoom iOS */
        padding: 14px;
    }
    
    /* Boutons mobile */
    button,
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    /* Calendrier mobile */
    .calendar-grid {
        gap: 8px;
    }
    
    .day-number {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    /* Slots mobile */
    .slot-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .slot-book-btn {
        width: 100%;
    }
}

/* Touch targets minimum 44x44px (WCAG) */
button,
a,
input[type="checkbox"],
input[type="radio"],
.day-number,
.slot-book-btn {
    min-height: 44px;
    min-width: 44px;
}

/* Amélioration du contraste pour accessibilité */
.text-muted {
    color: #4a4a4a; /* Contraste amélioré */
}

/* Focus visible pour navigation clavier (amélioration accessibilité) */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--brand-orange);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px var(--brand-bg), 0 0 0 4px var(--brand-orange);
}

/* Masquer le focus pour la souris (mais garder pour clavier) */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
    outline: none;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Responsive visibility - Ne pas forcer display sur desktop pour ne pas casser les table-cell */
.hide-mobile,
.hide-tablet {
    /* Pas de display forcé - les éléments gardent leur display naturel (block, table-cell, etc.) */
}

@media (max-width: 768px) {
    .hide-mobile,
    .hide-tablet {
        display: none !important;
    }
}

/* Image loading state */
.photo-item img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item img.loaded {
    opacity: 1;
}

/* Calendar empty day cell */
.day-number.empty {
    visibility: hidden;
}

/* Loading state for calendar */
.calendar-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.calendar-loading .btn-loader {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(243, 146, 0, 0.2);
    border-top-color: var(--brand-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

/* Slots loading state */
.slots-loading {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
}

.slots-loading .btn-loader {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(243, 146, 0, 0.2);
    border-top-color: var(--brand-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

/* ============================================
   TOAST NOTIFICATION SYSTEM
   Remplace les alert() par des notifications modernes
   ============================================ */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    animation: toastSlideIn 0.3s ease;
    border-left: 4px solid var(--brand-blue);
    max-width: 100%;
}

.toast.toast-success {
    border-left-color: var(--success-color);
    background: linear-gradient(135deg, #f0fff4 0%, white 100%);
}

.toast.toast-error {
    border-left-color: var(--error-color);
    background: linear-gradient(135deg, #fff5f5 0%, white 100%);
}

.toast.toast-warning {
    border-left-color: var(--brand-orange);
    background: linear-gradient(135deg, #fffbeb 0%, white 100%);
}

.toast.toast-info {
    border-left-color: var(--brand-fuchsia);
    background: linear-gradient(135deg, #fdf2f8 0%, white 100%);
}

.toast-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-success .toast-icon { color: var(--success-color); }
.toast-error .toast-icon { color: var(--error-color); }
.toast-warning .toast-icon { color: var(--brand-orange); }
.toast-info .toast-icon { color: var(--brand-fuchsia); }

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand-blue);
    margin-bottom: 4px;
}

.toast-message {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    word-wrap: break-word;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0;
    margin: -4px -8px -4px 8px;
    min-width: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--brand-blue);
}

.toast.toast-exit {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ============================================
   CONFIRMATION MODAL SYSTEM
   Remplace les confirm() par des modales stylées
   ============================================ */

.confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(41, 35, 92, 0.7);
    backdrop-filter: blur(4px);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.confirm-modal {
    background: white;
    border-radius: 20px;
    max-width: 420px;
    width: 100%;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalZoomIn 0.3s ease;
}

.confirm-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.confirm-modal-icon.warning {
    background: #fff3cd;
    color: var(--brand-orange);
}

.confirm-modal-icon.danger {
    background: #f8d7da;
    color: var(--error-color);
}

.confirm-modal-title {
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--brand-blue);
    margin-bottom: 12px;
}

.confirm-modal-message {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.confirm-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.confirm-modal-btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    min-width: 100px;
}

.confirm-modal-btn.cancel {
    background: #f0f0f0;
    color: var(--brand-blue);
}

.confirm-modal-btn.cancel:hover {
    background: #e0e0e0;
}

.confirm-modal-btn.confirm {
    background: var(--error-color);
    color: white;
}

.confirm-modal-btn.confirm:hover {
    background: #c82333;
}

.confirm-modal-btn.confirm-primary {
    background: var(--brand-orange);
    color: white;
}

.confirm-modal-btn.confirm-primary:hover {
    background: var(--brand-orange-hover);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalZoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   SKIP LINK (Accessibilité)
   ============================================ */

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--brand-orange);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 700;
    border-radius: 0 0 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: top 0.3s ease-in-out;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--brand-blue);
    outline-offset: 2px;
}

/* ============================================
   FORM VALIDATION INLINE STYLES
   ============================================ */

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: var(--error-color) !important;
    background-color: #fff5f5;
}

.form-group.has-error input:focus,
.form-group.has-error textarea:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.form-error-message {
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-error-message i {
    font-size: 0.9rem;
}

.form-group.has-success input,
.form-group.has-success textarea {
    border-color: var(--success-color) !important;
}

/* ============================================
   MOBILE RESPONSIVE - TOASTS & MODALS
   ============================================ */

@media (max-width: 480px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .toast {
        padding: 14px 16px;
    }

    .confirm-modal {
        padding: 24px 20px;
    }

    .confirm-modal-actions {
        flex-direction: column;
    }

    .confirm-modal-btn {
        width: 100%;
    }
}
