/* ==========================================================================
   1. PALETTE DE COULEURS PRIVEN HAIR & CONFIGURATION GLOBALE
   ========================================================================== */
:root {
    --bg-main: #FDF6F0;
    --bg-card: #FFFFFF;
    --text-main: #232324;
    --text-light: #FFFFFF;
    --accent-gold: #C29D53;
    --bg-beige: #E6D4C3;
    --font-titles: 'Playfair Display', Georgia, serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* ==========================================================================
   2. RÉINITIALISATION & STYLES DE BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}


/* ==========================================================================
   3. STRUCTURE GÉNÉRALE DES SECTIONS
   ========================================================================== */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section > h2 {
    text-align: center;
    font-size: 2rem;
    font-family: var(--font-titles);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section > p {
    text-align: center;
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 35px;
}


.page-titre {
    font-family:'playfair Display',Georgia,serif;
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1E1E1F;
    text-align: center;
    margin-bottom: 10px;
}


/* ==========================================================================
   4. BARRE DE NAVIGATION AVEC IMAGE DE FOND CLAIRE
   ========================================================================== */
body > header {
    background-image: url('imge/IMG-20260620-WA0030.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Le sélecteur "body > header::before" cible UNIQUEMENT le menu du haut */
body > header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 246, 240, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    position: relative;
    z-index: 1;
}

/* Logo Priven adapté au design */
.navbar .logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1E1E1F;
    letter-spacing: 2px;
    padding: 8px 16px;
    position: relative;
}

.navbar .logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C29D53, transparent);
    transition: width 0.3s ease;
}

.navbar .logo:hover::after { width: 80px; }
.navbar .logo:hover { color: #C29D53; }

.navbar a {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 12px;
    color: #232324;
}

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


/* ==========================================================================
   5. SECTION HERO (ACCUEIL) - ORIGINAL
   ========================================================================== */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                      url('imge/IMG-20260620-WA0031.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 5.5rem;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.hero-desc { display: none; }

.hero-tagline {
    display: block;
    font-size: 2.2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e1bd56;
    font-weight: 400;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-block;
    background-color: #e5c463;
    color: #1a1a1a;
    padding: 16px 45px;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-btn:hover {
    background-color: #d9b64b;
    transform: scale(1.02);
}


/* ==========================================================================
   6. SECTION QUI SOMMES-NOUS (Aggi)
   ========================================================================== */
.aggi {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.aggi article { flex: 1.2; min-width: 300px; }
.aggi h2 { font-family: var(--font-titles); font-size: 1.8rem; margin-bottom: 15px; }
.aggi p { margin-bottom: 15px; text-align: justify; font-size: 0.95rem; }
.aggi strong { color: var(--accent-gold); }
.aggi a {
    display: inline-block;
    font-weight: bold;
    color: var(--text-main);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 3px;
    font-size: 0.9rem;
}
.aggi a:hover { color: var(--accent-gold); }
.aggi figure { flex: 0.8; min-width: 280px; text-align: center; }
.aggi figure img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.aggi figcaption { margin-top: 8px; font-style: italic; font-size: 0.85rem; color: #666; }


/* ==========================================================================
   7. BLOCS ATOUTS (Features)
   ========================================================================== */
.features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.features article {
    background-color: var(--bg-card);
    padding: 25px 20px;
    border-radius: 4px;
    border-left: 3px solid var(--accent-gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}
.features h3 { font-size: 1.1rem; margin-bottom: 8px; font-family: var(--font-titles); }
.features p { font-size: 0.9rem; color: #555; }


/* ==========================================================================
   8. SERVICES & GALERIE (Aperçu)
   ========================================================================== */
.services-preview ul,
.gallery-preview ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.services-preview article,
.gallery-preview figure {
    background-color: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(194, 157, 83, 0.15);
}
.services-preview img,
.services-preview video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.gallery-preview img,
.gallery-preview video {
    width: 100%;
    height: 350px;
    object-fit: cover;
}


.services-preview figcaption,
.gallery-preview figcaption { padding: 15px; text-align: center; }
.services-preview h3,
.gallery-preview figcaption { font-size: 1.05rem; font-weight: 600; }
.services-preview figcaption p { font-size: 0.85rem; color: #666; margin-top: 4px; }
.services-preview figcaption a {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--accent-gold);
    text-transform: uppercase;
}
.services-preview figcaption a:hover { color: var(--text-main); }

/* ----- BOUTONS "VOIR LA GALERIE" & "TOUS LES SERVICES" ULTRA PRO ----- */
.services-preview > footer,
.gallery-preview > footer { text-align: center; margin-top: 30px; }
.services-preview > footer a,
.gallery-preview > footer a {
    display: inline-block;
    background: linear-gradient(135deg, #C29D53, #a8843e);
    color: #FFFFFF;
    padding: 14px 35px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(194, 157, 83, 0.35);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
}
.services-preview > footer a:hover,
.gallery-preview > footer a:hover {
    background: linear-gradient(135deg, #a8843e, #8a6b30);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(194, 157, 83, 0.5);
    color: #FFFFFF;
}



.contact-teaser dl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: linear-gradient(145deg, #FFFFFF, #FDF6F0);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(194, 157, 83, 0.15);
    box-shadow: 0 20px 60px rgba(194, 157, 83, 0.08);
    position: relative;
    overflow: hidden;
}
.contact-teaser dl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C29D53, transparent);
}
.contact-teaser dt {
    font-weight: bold;
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--font-titles);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.contact-teaser dt::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
    margin-top: 6px;
    transition: width 0.3s ease;
}
.contact-teaser dl:hover dt::after { width: 50px; }
.contact-teaser dd {
    font-size: 0.95rem;
    white-space: nowrap;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.8;
}

.contact-teaser dd a[href^="tel:"] {
display: inline-flex !important;
width: auto !important;
height: auto !important;
padding: 4px 12px !important;
border-radius: 15px !important;
background-color: var(--accent-gold) !important;
color: #1E1E1F;

}

.contact-teaser dd address { font-style: normal; }
.contact-teaser dd ul {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
    padding: 0;
}
.contact-teaser dd ul li { list-style: none; }
.contact-teaser dd ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
    font-size: 1.25rem !important;
    line-height: 0;
    text-decoration: none;
    transition: all 0.4s ease;
    overflow: hidden;
}
.contact-teaser dd ul li a:hover {
    background: var(--accent-gold);
    color: #FFFFFF;
    transform: scale(1.15) rotate(-5deg);
}/* ==========================================================================
   10. FOOTER
   ========================================================================== */
footer:last-of-type {
    background-color: var(--text-main);
    color: var(--bg-main);
    text-align: center;
    padding: 25px 20px;
    font-size: 0.85rem;
    margin-top: 50px;
    letter-spacing: 0.5px;
}


/* ==========================================================================
   11. PAGE SERVICES & TARIFS
   ========================================================================== */
main h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1E1E1F;
}
main section:has(table) {
    background: #FFFFFF !important;
    margin-bottom: 50px !important;
    padding: 50px !important;
    border-radius: 0px !important;
    border: 1px solid rgba(194, 157, 83, 0.15) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02) !important;
}
main section:has(table) h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 2.2rem !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    margin-bottom: 35px !important;
    color: #1E1E1F !important;
    position: relative !important;
    display: inline-block !important;
}
main section:has(table) h2::after {
    content: "" !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 0 !important;
    width: 50px !important;
    height: 1.5px !important;
    background-color: #C29D53 !important;
}
main table { width: 100% !important; border-collapse: collapse !important; border: none !important; }
main thead { display: none !important; }
main tr {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 22px 0 !important;
    border-bottom: 1px dashed rgba(194, 157, 83, 0.25) !important;
    background: transparent !important;
    transition: all 0.25s ease !important;
}
main tr:last-child { border-bottom: none !important; }
main tr:hover { background-color: rgba(253, 246, 240, 0.6) !important; padding-left: 10px !important; padding-right: 10px !important; }
main td:first-of-type { font-size: 1.15rem !important; font-weight: 500 !important; color: #1E1E1F !important; text-align: left !important; flex: 2 !important; }
main td:nth-of-type(2) { font-family: 'Playfair Display', Georgia, serif !important; font-size: 1.35rem !important; color: #C29D53 !important; font-weight: 600 !important; text-align: right !important; padding: 0 35px !important; flex: 0.5 !important; }
main td:last-of-type { flex: 0.8 !important; text-align: right !important; }

/* ----- BOUTONS "RÉSERVER" ULTRA PRO ----- */
main td:last-of-type a {
    display: inline-block !important;
    background: linear-gradient(135deg, #C29D53, #a8843e) !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(194, 157, 83, 0.3) !important;
    border: none !important;
}
main td:last-of-type a:hover {
    background: linear-gradient(135deg, #a8843e, #8a6b30) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(194, 157, 83, 0.5) !important;
    color: #FFFFFF !important;
}
main section:last-of-type a {
    display: inline-block !important;
    background: linear-gradient(135deg, #e5c463, #d4a83a) !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
    padding: 18px 50px !important;
    text-transform: uppercase !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 30px rgba(229, 196, 99, 0.4) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}
main section:last-of-type a:hover {
    background: linear-gradient(135deg, #d4a83a, #c49a2e) !important;
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 15px 40px rgba(229, 196, 99, 0.6) !important;
}


/* ==========================================================================
   12. PAGE RÉSERVATION
   ========================================================================== */
main:has(select) form {
    max-width: 700px;
    margin: 0 auto 40px auto;
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(194, 157, 83, 0.25) !important;
    padding: 50px;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03) !important;
}
main:has(select) fieldset { border: none !important; padding: 0 !important; margin: 0 0 45px 0 !important; background: transparent !important; }
main:has(select) legend {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #1E1E1F;
    margin-bottom: 30px;
    padding: 0 0 10px 0;
    font-weight: 400;
    width: 100%;
    border-bottom: 1px solid rgba(194, 157, 83, 0.15);
}
main:has(select) label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #1E1E1F;
    margin-bottom: 10px;
}
main:has(select) input[type="text"],
main:has(select) input[type="tel"],
main:has(select) input[type="email"],
main:has(select) input[type="date"],
main:has(select) input[type="time"],
main:has(select) select,
main:has(select) textarea {
    width: 100% !important;
    padding: 16px 20px !important;
    background-color: rgba(253, 246, 240, 0.5) !important;
    border: 1px solid rgba(30, 30, 31, 0.08) !important;
    border-radius: 10px !important;
    font-family: 'Segoe UI', system-ui, sans-serif !important;
    font-size: 1rem !important;
    color: #1E1E1F !important;
    margin-bottom: 25px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}
main:has(select) input:focus,
main:has(select) select:focus,
main:has(select) textarea:focus {
    background-color: #FFFFFF !important;
    border-color: #C29D53 !important;
    box-shadow: 0 0 15px rgba(194, 157, 83, 0.2) !important;
}
main:has(select) textarea { resize: vertical; min-height: 110px; }
main:has(select) ::placeholder { color: #9A9A9F; font-size: 0.95rem; }

/* ----- BOUTON ENVOYER ULTRA PRO ----- */
main:has(select) form button[type="submit"] {
    width: 80% !important;
    background: linear-gradient(135deg, #e5c463, #d4a83a) !important;
    color: #1a1a1a !important;
    border: none !important;
    padding: 18px 0 !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    box-shadow: 0 8px 30px rgba(229, 196, 99, 0.4) !important;
    transition: all 0.3s ease !important;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
main:has(select) form button[type="submit"]:hover {
    background: linear-gradient(135deg, #d4a83a, #c49a2e) !important;
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 15px 40px rgba(229, 196, 99, 0.6) !important;
}


/* ==========================================================================
   13. RESPONSIVE (MOBILE & TABLETTES)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 4rem; }
    .hero-tagline { font-size: 1.8rem; }
    .aggi { flex-direction: column; text-align: center; }
    .aggi article { min-width: unset; }
    .services-preview ul,
    .gallery-preview ul { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (max-width: 768px) {
    .hero { height: 70vh; min-height: 400px; }
    .hero-title { font-size: 2.8rem; }
    .hero-tagline { font-size: 1.4rem; }
    .hero-btn { padding: 14px 30px; font-size: 1rem; }
    section { padding: 40px 15px; }
    section > h2 { font-size: 1.6rem; }
    .services-preview ul,
    .gallery-preview ul { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
    .services-preview img,
    .gallery-preview img { height: 160px; }
    .contact-teaser dl { grid-template-columns: 1fr 1fr; padding: 20px; gap: 20px; border-radius: 16px; }
    .contact-teaser dd ul li a { width: 38px; height: 38px; font-size: 0.9rem; }
    main section:has(table) { padding: 25px !important; }
    main td:first-of-type { font-size: 1rem !important; }
    main td:nth-of-type(2) { font-size: 1.1rem !important; padding: 0 15px !important; }
    main td:last-of-type a { padding: 6px 14px !important; font-size: 0.65rem !important; }
    main section:last-of-type a { padding: 14px 30px !important; font-size: 0.9rem !important; }
    main tr { flex-direction: column !important; gap: 12px !important; }
    main td:first-of-type,
    main td:nth-of-type(2),
    main td:last-of-type { text-align: center !important; width: 100% !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-tagline { font-size: 1.1rem; }
    .contact-teaser dl { grid-template-columns: 1fr; text-align: center; }
    .contact-teaser dd ul { justify-content: center; }
}

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

/* ==========================================================================
   SERVICES & TARIFS – ULTRA PRO 5 ÉTOILES
   ========================================================================== */

/* Fond de la page Services */
.page-services {
    background: linear-gradient(180deg, #FDF6F0 0%, #f8f0e8 50%, #FDF6F0 100%);
}

/* Titre principal */
.page-services h1 {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 15px;
    margin-bottom: 40px;
}
.page-services h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C29D53, #e5c463, #C29D53, transparent);
}
.page-services h1::before {
    content: '✦';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: #C29D53;
    font-size: 0.8rem;
    font-family: serif;
}

/* Sous-titre */
.page-services .section-subtitle {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Séparateur de section */
.section-divider {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}
.section-divider span {
    background: #FDF6F0;
    padding: 0 30px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: #1E1E1F;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}
.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C29D53, #e5c463, #C29D53, transparent);
    z-index: 0;
}

/* Carte service */
.service-section {
    background: linear-gradient(145deg, #FFFFFF, #FDF6F0) !important;
    border: 1px solid rgba(194, 157, 83, 0.2) !important;
    border-radius: 25px !important;
    padding: 40px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 15px 50px rgba(194, 157, 83, 0.06) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.service-section:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 25px 60px rgba(194, 157, 83, 0.15) !important;
    border-color: rgba(194, 157, 83, 0.4) !important;
}
.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #C29D53, #e5c463, #C29D53);
    border-radius: 25px 0 0 25px;
}

/* Photo de service */
.service-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}
.service-image img {
    width: 100%;
    max-height: 350px !important;
    object-fit: cover !important;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.9);
}
.service-section:hover .service-image img {
    transform: scale(1.03);
    filter: brightness(1.05);
}
.service-image figcaption {
    background: linear-gradient(135deg, #1E1E1F, #2a2a2b);
    color: #C29D53;
    padding: 10px;
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Titre du service */
.service-section h3 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #1E1E1F !important;
    margin-bottom: 25px !important;
    padding-left: 15px;
    border-left: 3px solid #C29D53;
}
.service-section h3 i {
    color: #C29D53;
    margin-right: 10px;
    font-size: 1.6rem;
}

/* Tableau */
.page-services table {
    border-collapse: separate !important;
    border-spacing: 0 8px !important;
}
.page-services tr {
    background: rgba(253, 246, 240, 0.5) !important;
    border-radius: 12px !important;
    padding: 18px 20px !important;
    margin-bottom: 8px !important;
    transition: all 0.3s ease !important;
}
.page-services tr:hover {
    background: rgba(194, 157, 83, 0.08) !important;
    transform: translateX(5px) !important;
    box-shadow: 0 4px 15px rgba(194, 157, 83, 0.1) !important;
}
.page-services td:first-of-type {
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    padding-left: 15px !important;
}
.page-services td:nth-of-type(2) {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #C29D53 !important;
    font-family: 'Playfair Display', Georgia, serif !important;
}

/* Bouton Réserver */
.page-services .btn-sm {
    background: linear-gradient(135deg, #1E1E1F, #2a2a2b) !important;
    color: #C29D53 !important;
    border: 1px solid #C29D53 !important;
    padding: 8px 20px !important;
    font-size: 0.7rem !important;
    letter-spacing: 2px !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
}
.page-services .btn-sm:hover {
    background: linear-gradient(135deg, #C29D53, #e5c463) !important;
    color: #1E1E1F !important;
    border-color: transparent !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(194, 157, 83, 0.4) !important;
}

/* Note paiement */
.note-paiement {
    background: linear-gradient(135deg, #FDF6F0, #FFFFFF);
    color: #C29D53;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 50px;
    border: 1px solid rgba(194, 157, 83, 0.3);
}
.note-paiement a {
    color: #e5c463;
    text-decoration: underline;
    font-weight: 600;
}

/* ===== NAVBAR MOBILE ÉLÉGANTE ===== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 15px 10px;
        gap: 8px;
    }
    
    .navbar img {
        margin-bottom: 10px;
    }
    
    .navbar a {
        display: block;
        width: 90%;
        text-align: center;
        padding: 12px 15px;
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 1px;
        border-bottom: 1px solid rgba(194, 157, 83, 0.15);
        transition: all 0.3s ease;
    }
    
    .navbar a:hover {
        background: rgba(194, 157, 83, 0.08);
        color: #C29D53;
    }
    
    .navbar a:last-child {
        border-bottom: none;
    }
}