/* =========================================================
   === SECTION 1 : VARIABLES GLOBALES & RESET CSS ===
   ========================================================= */

:root {
    --color-primary: #8B5E3C;      
    --color-secondary: #C08D6A;    
    --color-text-main: #4A4A4A;    
    --color-bg-light: #FFFFFF;     
    --color-bg-alt: #FAF7F2;       
    --color-border: #E8E3DD;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-text-main);
    line-height: 1.8; 
    background-color: var(--color-bg-alt); /* Crème absolument partout */
    font-size: 1.15rem; 
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1100px; 
    margin: 0 auto;
    padding: 0 25px;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

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

section {
    padding: 7rem 0; 
}

html {
    scroll-behavior: smooth;
}

/* =========================================================
   === SECTION 2 : TYPOGRAPHIE (JUSTIFIÉE ET ÉPURÉE) ===
   ========================================================= */

h1, h2, h3, .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--color-primary);
}

.hero-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--color-primary);
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3.5rem; 
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background-color: var(--color-secondary);
    margin: 1.5rem auto 0;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

h2.active::after {
    width: 40px;
}

h3 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-primary);
}

/* TEXTE JUSTIFIÉ PARTOUT COMME DEMANDÉ */
section p {
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.home p {
    text-align: center; /* Centré pour la page d'accueil */
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hero-quote {
    font-size: 1.8rem;
    font-style: italic;
    text-align: center;
    color: var(--color-primary);
    margin: 3rem auto 4rem;
    max-width: 700px;
    line-height: 1.4;
}

.hero-quote .author {
    display: block;
    font-size: 1rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1.5rem;
    color: #999;
}


/* =========================================================
   === SECTION 3 : NAVIGATION DESKTOP & MENU DÉROULANT ===
   ========================================================= */

.navbar {
    background-color: rgba(255, 255, 255, 0.98); 
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.navbar-flex {
    display: flex;
    justify-content: center;
}

.navbar ul {
    display: flex;
    gap: 2.5rem; 
    list-style: none;
    align-items: center;
}

.navbar a {
    color: var(--color-primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap; 
}

/* Menu Déroulant (Dropdown) */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 1rem 0;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dropdown-content a {
    color: var(--color-text-main);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    display: block;
    text-transform: none; 
    letter-spacing: 1px;
}

.dropdown-content a:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-primary);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

main {
    padding-top: 100px; 
}


/* =========================================================
   === SECTION 4 : NOUVEAU MENU BURGER (PLEIN ÉCRAN CHIC) ===
   ========================================================= */

.burger-menu {
    display: none;
    position: fixed;
    right: 20px; 
    top: 25px;
    z-index: 2000; 
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.burger-menu span,
.burger-menu span::before,
.burger-menu span::after {
    display: block;
    background: var(--color-primary); 
    height: 2px; 
    width: 30px;
    position: absolute;
    content: '';
    transition: 0.3s ease-in-out;
    left: 5px;
}

.burger-menu span { top: 19px; }
.burger-menu span::before { top: -8px; }
.burger-menu span::after { top: 8px; }

.burger-menu.open span { background: transparent; }
.burger-menu.open span::before { transform: translateY(8px) rotate(45deg); background: var(--color-primary); }
.burger-menu.open span::after { transform: translateY(-8px) rotate(-45deg); background: var(--color-primary); }

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    background-color: var(--color-bg-alt);
    z-index: 1500;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; 
}

.mobile-nav a {
    color: var(--color-primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; 
    font-weight: 500;
    text-decoration: none;
}

.mobile-dropdown-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; 
    font-weight: 500;
    color: var(--color-secondary);
    margin-top: 0.5rem;
}

.mobile-submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem !important;
    border-left: 2px solid var(--color-border);
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.mobile-submenu a {
    font-size: 1.4rem;
    color: var(--color-text-main);
}

.mobile-rdv {
    margin-top: 1rem;
}

.mobile-rdv .btn-primary {
    font-size: 1.3rem;
}

@media (max-width: 1000px) {
    .navbar { display: none; }
    .burger-menu { display: block; }
    main { padding-top: 20px; } 
}


/* =========================================================
   === SECTION 5 : IMAGES & GALERIES ===
   ========================================================= */

.header-banner {
    width: 100%;
    height: 80vh; 
    overflow: hidden;
    margin-top: 70px; 
}

.header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.massages-main {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 4px; 
    margin: 0 auto 4rem;
}

.histoire-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 4rem;
}

.histoire-texte {
    flex: 1 1 50%;
}

.histoire-image {
    flex: 1 1 50%;
}

.histoire-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06); 
}

.massages-gallery, .coaching-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 4rem;
}

.massages-gallery img, .coaching-gallery img {
    width: calc(33.333% - 14px);
    border-radius: 4px;
    object-fit: cover;
    aspect-ratio: 4/5; 
}

@media (max-width: 900px) {
    .histoire-layout {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .massages-gallery, .coaching-gallery {
        flex-direction: column;
    }
    .massages-gallery img, .coaching-gallery img {
        width: 100%;
    }
}


/* =========================================================
   === SECTION 6 : LE "MENU SPA" & L'ACCORDÉON ===
   ========================================================= */

.spa-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-column h3 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.menu-subtitle {
    font-size: 1rem;
    color: #888;
    margin-bottom: 2.5rem;
    text-align: left !important;
}

.menu-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.2rem;
}

.menu-name {
    font-weight: 600;
    color: var(--color-text-main);
}

.menu-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #bbbbbb; 
    margin: 0 15px;
    opacity: 0.6;
}

.menu-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Accordéon Cures */
.cure-accordion {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.cure-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 15px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.cure-btn i {
    font-size: 0.8rem;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.cure-accordion.active .cure-btn i {
    transform: rotate(180deg);
}

/* État fermé par défaut */
.cure-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s ease, padding 0.8s ease, opacity 0.8s ease;
    padding: 0 10px;
}

/* État ouvert (activé par le JavaScript) */
.cure-content.show {
    max-height: 4000px; /* Suffisamment grand pour englober tout le texte sur l'endométriose */
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 15px;
}

.cure-accordion.active .cure-content {
    max-height: 200px; /* Assez d'espace pour ouvrir les prix */
    opacity: 1;
    padding-bottom: 15px;
}

.cure-content .menu-item {
    margin-bottom: 0.8rem;
}

.tarif-note {
    font-style: italic;
    font-size: 1rem;
    text-align: center;
    color: #999;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .spa-menu {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* =========================================================
   === SECTION 7 : ENDOMÉTRIOSE ===
   ========================================================= */

.symptoms-list {
    list-style: none;
    margin-bottom: 3rem;
    /* max-width retiré pour s'aligner parfaitement aux paragraphes */
}

.symptoms-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    color: var(--color-text-main);
    text-align: justify; /* Justification appliquée aux points */
    text-justify: inter-word;
}

.symptoms-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px; 
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-secondary);
}

.endo-quote-banner {
    background-color: var(--color-primary);
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 4px;
    margin: 5rem 0;
}

.endo-quote-banner p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    text-align: center;
    margin: 0;
    color: var(--color-bg-light);
    line-height: 1.4;
    font-style: italic;
}


/* =========================================================
   === SECTION 8 : BOUTONS, LIENS & CARTE ===
   ========================================================= */

.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 2px; 
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-primary:hover {
    background-color: var(--color-text-main);
}

.text-center { text-align: center; }

.lieu p {
    text-align: center;
}

/* NOUVEAU STYLE DU BOUTON RETOUR (PAGES SÉPARÉES) */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.back-link:hover {
    color: var(--color-primary);
    transform: translateX(-5px); /* Glisse légèrement vers la gauche */
}


.map-responsive {
    overflow: hidden;
    position: relative;
    max-width: 100%;
    border-radius: 4px;
    height: 450px;
    margin-top: 3rem;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
}


/* =========================================================
   === SECTION 9 : CONTACT & FOOTER ===
   ========================================================= */

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
}

.contact-item img {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
    opacity: 0.8; 
    transition: opacity 0.3s;
}

.contact-item a:hover img {
    opacity: 1;
}

.contact-info p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

.site-footer {
    background-color: transparent;
    color: var(--color-text-main);
    padding: 3rem 0;
    text-align: center;
    font-size: 1rem;
    border-top: 1px solid var(--color-border);
}

/* =========================================================
   === SECTION 10 : RESPONSIVE GLOBAL (MOBILES) ===
   ========================================================= */

@media (max-width: 768px) {
    section { padding: 4rem 0; } 
    .header-banner { height: 50vh; margin-top: 60px; }
    .hero-title { font-size: 2.8rem; }
    h2 { font-size: 2.4rem; margin-bottom: 2rem; }
    .endo-quote-banner { padding: 3rem 1.5rem; margin: 3rem 0; }
    .endo-quote-banner p { font-size: 1.8rem; }
    .map-responsive { height: 300px; }
    .contact-icons { gap: 40px; }
    .transition-banner { padding: 3rem 1rem; }
    .transition-banner p { font-size: 1.6rem; }
    .massages-buttons { gap: 10px; }
    .btn-pink { padding: 10px 18px; font-size: 1rem; }
}

#scroll-to-top {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--color-primary); color: #fff;
    border: none; border-radius: 50%;
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; cursor: pointer;
    opacity: 0; pointer-events: none; transition: 0.3s;
    z-index: 1000;
}
#scroll-to-top.visible { opacity: 1; pointer-events: auto; }


/* =========================================================
   === SECTION 11 : ANIMATIONS ET TRANSITIONS CHICS ===
   ========================================================= */

/* --- 1. Animation de la bannière au chargement (Effet Ken Burns doux) --- */
.header-banner img {
    opacity: 0;
    transform: scale(1.05);
    animation: fadeInBanner 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeInBanner {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- 2. Classes de base pour les éléments qui apparaissent au Scroll --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
}

/* Quand l'élément devient visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- 3. Animation en cascade (Staggered) pour la section Home (au chargement) --- */
.home-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.home-title-anim { animation-delay: 0.3s; }
.home-quote-anim  { animation-delay: 0.6s; }
.home-text-anim   { animation-delay: 0.9s; }

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

/* --- 4. Décalage (Delay) pour les grilles d'images au scroll --- */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }


/* --- 5. Nouveaux bandeaux inter-sections rose pâle luxueux --- */
.transition-banner {
    background-color: #F6EBE6; /* Rose poudré ultra doux et chic qui s'associe au crème et marron */
    padding: 5.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(139, 94, 60, 0.05);
    border-bottom: 1px solid rgba(139, 94, 60, 0.05);
}

.transition-banner p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--color-primary);
    margin: 0;
    font-style: italic;
    letter-spacing: 1px;
    text-align: center !important;
}

/* --- 6. Styles des petits boutons rose sous Alma (Raccourcis chics) --- */
.massages-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 2.5rem 0 3.5rem;
}

.btn-pink {
    display: inline-block;
    background-color: #F6EBE6; /* Rose pâle assorti aux bandeaux */
    color: var(--color-primary) !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 2px;
    border: 1px solid rgba(139, 94, 60, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-pink:hover {
    background-color: var(--color-primary);
    color: #FFFFFF !important;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 94, 60, 0.1);
}


/* ===============================
   FULLPAGE CONTAINER RESPONSIVE
================================== */

html,
body {
    width: 100%;
    overflow-x: hidden;
}

.fullpage-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    width: 100%;
    flex: 1;
}

section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 5rem);
    box-sizing: border-box;
}

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

.container,
.content,
.wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    section {
        min-height: auto;
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    section {
        padding: 3rem 1.25rem;
    }

    .fullpage-container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2.5rem 1rem;
    }
}

/* =========================================================
   === SECTION RETRAITES (CARTES DESTINATIONS) ===
   ========================================================= */

.retraites-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
}

.retraite-card {
    position: relative;
    flex: 1;
    max-width: 50%;
    border-radius: 4px;
    overflow: hidden;
    display: block; /* Pour que le lien prenne toute la place */
    aspect-ratio: 4/3; /* Donne un format rectangulaire harmonieux */
}

.retraite-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Voile sombre pour rendre le texte lisible */
.retraite-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    transition: background-color 0.4s ease;
    z-index: 1;
}

/* Style du texte centré */
.retraite-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff !important; /* Force la couleur blanche */
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 2;
    margin: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Effets au survol de la souris */
.retraite-card:hover img {
    transform: scale(1.05); /* Zoom léger de l'image */
}

.retraite-card:hover .retraite-overlay {
    background-color: rgba(0, 0, 0, 0.1); /* Éclaircit légèrement l'image */
}

/* Responsive pour mobile : on les met l'une sous l'autre */
@media (max-width: 768px) {
    .retraites-gallery {
        flex-direction: column;
    }
    .retraite-card {
        max-width: 100%;
    }
}

/* --- Styles pour la bannière principale --- */
.header-banner {
    position: relative;
    width: 100%;
    /* display: flex; si nécessaire selon ton layout global */
}

/* Le calque semi-transparent (identique à l'esprit "retraite-overlay") */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Ajuste le 0.4 pour rendre plus ou moins sombre */
    z-index: 1;
}

/* Le texte centré sur l'image */
.banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif; /* Rappel de ta typo élégante */
    font-size: 5.5rem; 
    font-weight: 600;
    text-align: center;
    z-index: 2;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); /* Ombre pour une meilleure lisibilité */
}

/* Ajustement de la taille du texte sur mobile */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
}

/* =========================================
   SECTION LIEU & ACCÈS - CARTES INFOS
   ========================================= */

.infos-pratiques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.info-card {
    background-color: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 2.2rem;
    color: var(--color-primary, #d4a3a3); /* Utilise ta variable rose ou une couleur par défaut */
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-card .address {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.info-card .parking-address {
    margin-top: 15px;
}

/* Listes à puces élégantes */
.info-list {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    width: 100%;
    margin-top: 10px;
}

.info-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.info-list li::before {
    content: '•';
    color: var(--color-primary, #d4a3a3);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.instructions-marche {
    margin-top: 15px !important;
    font-size: 0.9rem;
    color: #555;
}

/* Encadré luxueux pour le code de porte */
.code-box {
    background-color: #fdf8f8; /* Un beige/rose extrêmement pâle */
    border: 1px solid #f4e3e3;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 15px;
    font-size: 1rem;
}

.code-box strong {
    font-size: 1.2rem;
    color: var(--color-primary, #d4a3a3);
    letter-spacing: 2px;
}

.merci-text {
    margin-top: 20px;
    color: #888;
}

.instagram-link {
    font-weight: 600;
    text-decoration: none;
    color: var(--color-primary, #d4a3a3);
    border-bottom: 1px solid var(--color-primary, #d4a3a3);
    transition: opacity 0.3s ease;
}

.instagram-link:hover {
    opacity: 0.7;
}

/* Responsive pour mobiles */
@media (max-width: 768px) {
    .infos-pratiques-grid {
        grid-template-columns: 1fr;
    }
}