:root {
    --primary-purple: #800080;
    --primary-pink: #FFE6F7;
    --primary-blue: #4B6CB7;
    --primary-blue-light: #E6F0FF;
    --primary-rose: #E25CB3;
    --text-color: #333333;
    --section-shadow: 0 4px 24px 0 rgba(128,0,128,0.07);
    --section-radius: 22px;
}

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

/* Règle générale pour empêcher le débordement horizontal */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Alice', serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #fff 0%, #ffe6f7 100%);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    /* Amélioration globale du rendu du texte */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Header responsive avec flexbox */
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 90px;
    margin-bottom: 4rem;
    padding: 0 2rem;
    gap: 1rem;
}

.header-logo-col {
    margin-bottom: 1rem;
}

.header-butterfly-col {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.header-text-col {
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-nav {
    width: 50px;
    height: auto;
    transition: transform 0.2s;
}

.logo-nav:hover {
    transform: scale(1.05);
}

.logo-main {
    width: 150px;
    height: auto;
}

.poppy {
    width: 150px;
    height: auto;
}

.company-name {
    display: none; /* On cache le texte car il est déjà dans le logo */
}

.header-content h1 {
    color: var(--primary-purple);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-content h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.header-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-purple);
}

/* Styles pour les titres dans header-text-col */
.header-text-col h1 {
    color: var(--primary-purple);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-text-col h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.header-text-col h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-purple);
}

.butterfly {
    width: 80px;
    height: auto;
}

.butterfly-top-right {
    position: absolute;
    top: 20px;
    right: 20px;
}

.butterfly-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.butterfly-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

section {
    scroll-margin-top: 90px;
    margin-bottom: 4rem;
    position: relative;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem 2rem;
    border-radius: var(--section-radius);
    box-shadow: var(--section-shadow);
    transition: box-shadow 0.3s, background 0.3s;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.presentation p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.therapeutic-support {
    background: linear-gradient(120deg, #ffe6f7 60%, #f8e1ff 100%);
    border-left: 8px solid var(--primary-purple);
    box-shadow: 0 4px 32px 0 rgba(128,0,128,0.10);
}

.professional-support {
    background: linear-gradient(120deg, var(--primary-blue-light) 60%, #f0f4fa 100%);
    border-left: 8px solid var(--primary-blue);
    box-shadow: 0 4px 32px 0 rgba(75,108,183,0.10);
}

.therapeutic-support h2 {
    color: var(--primary-purple);
}

.professional-support h2 {
    color: var(--primary-blue);
}

.formation-section {
    background: linear-gradient(120deg, #f5f2ff 60%, #ede7ff 100%);
    border-left: 8px solid #7D4FFE;
    box-shadow: 0 4px 32px 0 rgba(125,79,254,0.10);
}

.formation-section h2 {
    color: #7D4FFE;
}

.formation-download {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #7D4FFE;
    /* Amélioration du rendu du texte */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #7D4FFE;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
    /* Amélioration du rendu du texte */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 1rem;
    line-height: 1.4;
}

.download-link:hover {
    background: #6d3ef5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 79, 254, 0.3);
    /* Amélioration du rendu pendant la transition */
    will-change: transform, background-color, box-shadow;
}

.pdf-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    /* Amélioration du rendu de l'icône */
    -webkit-filter: brightness(0) invert(1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 2rem;
}

ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

li {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.target-icon {
    width: 80px;
    height: 80px;
    background-image: url('images/target.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.papers-icon {
    width: 80px;
    height: 80px;
    background-image: url('images/papers.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

.navbar {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(128,0,128,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
}

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

.poppy-nav {
    width: 40px;
    height: auto;
    transition: transform 0.2s;
}

.poppy-nav:hover {
    transform: scale(1.08) rotate(-5deg);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    min-width: 0;                             /* autorise le shrink en flex */
    flex: 1 1 auto; 
    justify-content: flex-end; 
    gap: .8rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-purple);
    font-family: 'Alice', serif;
    transition: all 0.2s;
    white-space: nowrap;
    font-size: clamp(.95rem, 1vw, 1.1rem);    /* texte légèrement fluide */
    padding: .3rem .5rem;
}

.nav-links a:hover, .nav-links a:focus {
    color: var(--primary-purple);
    border-bottom: 2px solid var(--primary-purple);
    background: transparent;
}

/* Responsive Design - Breakpoints optimisés */

/* Tablettes et petits écrans */
@media (max-width: 1024px) {
    .navbar {
        padding: 0.5rem 2rem;
    }
    
    .nav-links {
        gap: 0.8rem;
    }
    
    .header-logo-col, .header-butterfly-col {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .header-text-col {
        max-width: 100%;
    }
    
    .header-text-col h1 {
        font-size: 2.5rem;
    }
    
    .header-text-col h2 {
        font-size: 1.8rem;
    }
    
    .header-text-col h3 {
        font-size: 1.3rem;
    }
    
    main {
        padding: 1.5rem;
    }
    
    section {
        padding: 2rem 1.5rem;
    }
}

/* Tablettes en mode portrait */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 1rem 0;
    }
    
    .nav-logo {
        margin-bottom: 1rem;
    }
    
    .poppy-nav {
        width: 36px;
    }
    
    .header-container {
        flex-direction: column;
        align-items: center;
        margin-top: 80px;
    }
    
    .header-logo-col, .header-butterfly-col {
        position: static;
        transform: none;
        margin-bottom: 1rem;
    }
    
    .header-text-col {
        margin: 0;
    }
    
    .header-text-col h1 {
        font-size: 2rem;
    }
    
    .header-text-col h2 {
        font-size: 1.5rem;
    }
    
    .header-text-col h3 {
        font-size: 1.2rem;
    }
    
    section {
        scroll-margin-top: 140px;
        padding: 1.5rem 1rem;
        margin-bottom: 3rem;
    }
    
    html {
        scroll-padding-top: 140px;
    }
    
    .butterfly,
    .target-icon,
    .papers-icon {
        width: 60px;
    }
    
    li {
        font-size: 1rem;
    }
    
    main {
        padding: 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

/* Mobiles */
@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-links {
        gap: 0.8rem;
        padding: 0.8rem 0;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .header-container {
        margin-top: 60px;
        gap: 1.5rem;
        padding: 0 0.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header-text-col h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .header-text-col h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .header-text-col h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .logo-main {
        width: 120px;
    }
    
    section {
        scroll-margin-top: 160px;
        padding: 1.2rem 0.8rem;
        margin-bottom: 2rem;
        border-radius: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    html {
        scroll-padding-top: 160px;
    }
    
    main {
        padding: 0.8rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    li {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .presentation p {
        text-align: left;
        margin-bottom: 1.2rem;
    }
    
    /* S'assurer que les décorations ne débordent pas */
    .butterfly-decoration {
        max-width: calc(100vw - 40px);
        max-height: calc(100vh - 40px);
    }
}

/* Très petits écrans */
@media (max-width: 360px) {
    .header-container {
        margin-top: 180px;
        gap: 1rem;
        width: 100%;
        box-sizing: border-box;
        padding: 0 0.3rem;
    }
    
    .header-text-col h1 {
        font-size: 1.6rem;
    }
    
    .header-text-col h2 {
        font-size: 1.2rem;
    }
    
    .header-text-col h3 {
        font-size: 1rem;
    }
    
    .logo-main {
        width: 100px;
    }
    
    section {
        scroll-margin-top: 180px;
        padding: 1rem 0.6rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    html {
        scroll-padding-top: 180px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
    
    main {
        padding: 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Forcer les décorations à rester dans l'écran */
    .butterfly-decoration {
        max-width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
    }
    
    .butterfly-top-right {
        right: 2%;
        max-width: calc(100vw - 40px);
    }
    
    .butterfly-top-left {
        left: 2%;
        max-width: calc(100vw - 40px);
    }
}

.contact-section {
    text-align: center;
    margin-bottom: 0;
    background: rgba(255,255,255,0.7);
    padding: 2rem;
    border-radius: 10px;
}

.contact-section a {
    color: var(--primary-purple);
    text-decoration: underline;
    font-weight: bold;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    color: var(--primary-purple);
    font-family: 'Alice', serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
}

.linkedin-link:hover {
    color: var(--primary-purple);
    text-decoration: underline;
    background: none;
    border-radius: 0;
    padding: 0;
}

.linkedin-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
}

.butterfly-decoration {
    position: absolute;
    background-image: url('images/butterfly.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.butterfly-top-right {
    width: 120px;
    height: 120px;
    top: 100px;
    right: 5%;
    transform: rotate(-15deg);
    opacity: 0.8;
    max-width: calc(100vw - 20px);
}

.butterfly-top-left {
    width: 80px;
    height: 80px;
    top: 180px;
    left: 5%;
    transform: rotate(25deg) scaleX(-1);
    opacity: 0.6;
    max-width: calc(100vw - 20px);
}

.butterfly-section-1 {
    width: 80px;
    height: 80px;
    top: -50px;
    right: -40px;
    transform: rotate(-5deg);
    opacity: 0.4;
    z-index: 0;
}

.butterfly-section-2 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    left: 5%;
    transform: rotate(15deg);
    opacity: 0.6;
}

.butterfly-section-3 {
    width: 70px;
    height: 70px;
    top: 30%;
    right: 8%;
    transform: rotate(-20deg) scaleX(-1);
    opacity: 0.5;
}

.butterfly-section-4 {
    width: 85px;
    height: 85px;
    bottom: -20px;
    right: 15%;
    transform: rotate(10deg);
    opacity: 0.6;
}

.butterfly-contact {
    width: 75px;
    height: 75px;
    top: -25px;
    left: 10%;
    transform: rotate(-10deg);
    opacity: 0.7;
}

.butterfly-bottom-right {
    width: 110px;
    height: 110px;
    bottom: 50px;
    right: 8%;
    transform: rotate(5deg);
    opacity: 0.7;
}

/* Responsive pour les décorations papillon */
@media (max-width: 768px) {
    .butterfly-decoration {
        width: 60px !important;
        height: 60px !important;
    }
    
    .butterfly-top-right {
        top: 80px;
        right: 3%;
    }
    
    .butterfly-top-left {
        top: 140px;
        left: 3%;
    }
}

@media (max-width: 480px) {
    .butterfly-decoration {
        width: 50px !important;
        height: 50px !important;
    }
    
    .butterfly-top-right {
        top: 60px;
        right: 2%;
    }
    
    .butterfly-top-left {
        top: 100px;
        left: 2%;
    }
}

.rose-title {
    color: var(--primary-rose);
    font-weight: bold;
}

.pink-accent {
    color: var(--primary-rose);
}

.purple-title {
    color: var(--primary-purple);
    font-weight: bold;
}

.bold {
    font-weight: bold;
}

/* Styles pour la section de réservation */
.booking-section {
    margin-top: auto;
    text-align: center;
}

.booking-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.booking-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.booking-btn.individual {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #9b4d9b 100%);
}

.booking-btn.family {
    background: linear-gradient(135deg, var(--primary-rose) 0%, #f17bc4 100%);
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.booking-btn.individual:hover {
    background: linear-gradient(135deg, #9b4d9b 0%, var(--primary-purple) 100%);
}

.booking-btn.family:hover {
    background: linear-gradient(135deg, #f17bc4 0%, var(--primary-rose) 100%);
}

.booking-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.booking-duration {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive pour les boutons de réservation */
@media (max-width: 768px) {
    .booking-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .booking-btn {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 1.5rem;
    }
    
    .booking-title {
        font-size: 1.1rem;
    }
    
    .booking-duration {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .booking-btn {
        max-width: 250px;
        padding: 1rem 1.2rem;
    }
    
    .booking-title {
        font-size: 1rem;
    }
    
    .booking-duration {
        font-size: 0.8rem;
    }
}

/* Styles personnalisés pour le bouton Google Calendar */
.booking-buttons .calendar-appointment-scheduling-button,
.booking-buttons .calendar-appointment-scheduling-button:focus,
.booking-buttons .calendar-appointment-scheduling-button:active {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #9b4d9b 100%) !important;
    border: none !important;
    border-radius: 15px !important;
    padding: 1.5rem 2rem !important;
    color: white !important;
    font-weight: bold !important;
    font-family: 'Alice', serif !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    min-width: 200px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    line-height: 1.4 !important;
    outline: none !important;
    cursor: pointer !important;
}

.booking-buttons .calendar-appointment-scheduling-button:hover,
.booking-buttons .calendar-appointment-scheduling-button:focus:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    background: linear-gradient(135deg, #9b4d9b 0%, var(--primary-purple) 100%) !important;
    border: none !important;
    outline: none !important;
}

/* Override des styles Google Calendar par défaut */
.booking-buttons .calendar-appointment-scheduling-button * {
    color: white !important;
    font-family: 'Alice', serif !important;
}

/* Styles supplémentaires pour forcer l'apparence */
.booking-buttons .calendar-appointment-scheduling-button {
    position: relative !important;
    overflow: hidden !important;
}

.booking-buttons .calendar-appointment-scheduling-button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #9b4d9b 100%) !important;
    border-radius: 15px !important;
    z-index: -1 !important;
    transition: all 0.3s ease !important;
}

.booking-buttons .calendar-appointment-scheduling-button:hover::before {
    background: linear-gradient(135deg, #9b4d9b 0%, var(--primary-purple) 100%) !important;
}

/* Forcer la suppression des bordures par défaut */
.booking-buttons .calendar-appointment-scheduling-button,
.booking-buttons .calendar-appointment-scheduling-button:focus,
.booking-buttons .calendar-appointment-scheduling-button:active,
.booking-buttons .calendar-appointment-scheduling-button:hover {
    border: none !important;
    outline: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.booking-buttons .calendar-appointment-scheduling-button:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive pour les boutons Google Calendar */
@media (max-width: 768px) {
    .booking-buttons .calendar-appointment-scheduling-button {
        width: 100% !important;
        max-width: 280px !important;
        padding: 1.2rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .booking-buttons .calendar-appointment-scheduling-button {
        max-width: 250px !important;
        padding: 1rem 1.2rem !important;
    }
}

/* Styles pour les boutons désactivés */
.booking-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.booking-btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.booking-btn.individual:disabled {
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
}

.booking-btn.family:disabled {
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
}

.booking-btn.individual:disabled:hover {
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
}

.booking-btn.family:disabled:hover {
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
}

@media (min-width: 1025px) {
    .header-container {
        margin-top: 120px;
    }
    .header-text-col {
        text-align: center;
    }
}

/* --- Menu burger --- */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}
.burger-icon {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-purple);
    position: relative;
    border-radius: 2px;
    transition: background 0.3s;
}
.burger-icon::before,
.burger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--primary-purple);
    border-radius: 2px;
    transition: transform 0.3s;
}
.burger-icon::before {
    top: -9px;
}
.burger-icon::after {
    top: 9px;
}
.burger.open .burger-icon {
    background: transparent;
}
.burger.open .burger-icon::before {
    transform: translateY(9px) rotate(45deg);
}
.burger.open .burger-icon::after {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .burger {
        display: block;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 16px rgba(128,0,128,0.07);
        z-index: 1001;
        padding: 1.5rem 0 1rem 0;
        gap: 1.2rem;
        align-items: center;
        animation: menuOpen 0.3s;
        box-sizing: border-box;
    }
    .nav-links.open {
        display: flex;
    }
    .navbar {
        position: relative;
        z-index: 1100;
    }
}
@keyframes menuOpen {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 1025px) {
    .burger {
        display: none;
    }
    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        padding: 0;
        gap: 1rem;
        align-items: center;
        justify-content: flex-start;
    }
}

/* Ajout pour la section Informations pratiques */
.practical-shared-info {
    background: #fff6fa;
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 2px 12px 0 rgba(226,92,179,0.07);
    text-align: center;
}

.practical-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.practical-location {
    background: linear-gradient(120deg, #ffffff 85%, #ffe6f7 100%);
    border: 1px solid #f3cdea;
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(128,0,128,0.06);
    padding: 1.5rem 1.25rem 1.75rem 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.practical-location ul {
    margin: 0;
}

.practical-location li {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.practical-location a {
    color: var(--primary-rose);
    text-decoration: underline;
}

.practical-location:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(128,0,128,0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.practical-location .rose-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    color: var(--primary-rose);
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.practical-location .rose-title::before {
    content: '\1F4CD'; /* épingle de localisation */
    font-size: 1.2em;
    margin-right: 0.2em;
    color: var(--primary-rose);
}

@media (max-width: 900px) {
    .practical-locations {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .practical-location {
        max-width: 100%;
    }
}