/* Footer barre horizontale comme le header */
.footer-bar {
    width: 100%;
    background: var(--header, #181a1b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 50;
    font-size: 1rem;
    gap: 2rem;
}
.footer-bar .logo {
    height: 40px;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--yellow);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    font-size: 0.98rem;
}
@media (max-width: 700px) {
    .footer-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.2rem 1rem;
    }
    .footer-contact {
        align-items: flex-start;
    }
}
/* Fond gris pour le footer */
.footer-content {
    /* background: #f3f3f3; */
    color: #fff;
    padding: 2.5rem 0 1.5rem 0;
    margin-top: 2.5rem;
    border-top: none;
}
/* Pour garantir que le texte du footer reste sombre sur fond clair */
.footer-content h4,
.footer-content p,
.footer-content a {
    color: #fff;
}
/* Correction spécifique pour overlay sur cartes activités adultes */
.enfant-card-hover .enfant-card-media {
    position: relative;
}

.enfant-card-hover .enfant-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);  /* Fond noir transparent à 80% */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    pointer-events: none;  /* Permet de ne pas bloquer le hover */
    z-index: 10;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
}

.enfant-card-hover:hover .enfant-card-overlay {
    opacity: 1;
}

/* Pour la superposition de l'overlay sur l'image des activités adultes */
.enfant-card-media {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.enfant-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}
/* Correction spécifique pour overlay sur cartes activités adultes */
.enfant-card-hover .enfant-card-media {
    position: relative;
}
.enfant-card-hover .enfant-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    pointer-events: auto;
    z-index: 10;
}
.enfant-card-hover:hover .enfant-card-overlay {
    opacity: 1;
}
/* Pour la superposition de l'overlay sur l'image des activités adultes */
.enfant-card-media {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.enfant-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}
/* Vignettes événements location */

/* Vignettes événements location - 3 par ligne sur desktop */
.vignettes-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.2rem;
    justify-items: center;
    margin: 2.5rem 0 2rem 0;
}
@media (min-width: 700px) {
    .vignettes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1020px) {
    .vignettes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.vignette-card {
    background: #1e2022;
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.22);
    overflow: hidden;
    width: 340px;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}
.vignette-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 10px 28px rgba(246,196,59,0.13);
}
.vignette-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
.vignette-card h3 {
    margin: 1.2rem 0 0.7rem 0;
    font-size: 1.32rem;
    color: var(--yellow);
    text-align: center;
}
.vignette-card p {
    color: #eee;
    font-size: 1.08rem;
    text-align: center;
    padding: 0 1.2rem 1.3rem 1.2rem;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
:root {
    --yellow: #f6c43b;
    --yellow-dark: #f6c43ba9;
    --fond: #181a1b;
    --header: #181a1b;
    /* Variables d'images de fond par page */
    --bg-accueil: none;
    --bg-bienetre: url('https://www.pornic.com/medias/images/prestations/salon-le-printemps-du-bien-etre-zen-attitude-37513.jpg');
    --bg-activites: url('images/ActivitesBG.jpg');
    --bg-location: url('images/Location.JPG');
    --bg-contact: url('images/ContactBG.jpg');
}

/* Image de fond par page */
body.accueil .video-overlay {
    background: rgba(0, 0, 0, 0.35);
}
body.bien-etre .video-overlay {
    background: var(--bg-bienetre) no-repeat center center / cover;
}
body.activites .video-overlay {
    background: var(--bg-activites) no-repeat center center / cover;
}
body.location .video-overlay {
    background: var(--bg-location) no-repeat center center / cover;
}
body.contact .video-overlay {
    background: var(--bg-contact) no-repeat center center / cover;
}
body {
    background: var(--fond);
    color: white;
    overflow-x: hidden;
}
/* Navigation */
nav {
    background: var(--header);
    padding: 0.6rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo {
    height: 80px;
}
.nav-links {
    display: flex;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.2rem;
}
.nav-links a:hover {
    color: var(--yellow);
}
.nav-buttons {
    display: flex;
    gap: 1rem;
}
.btn {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 1.18rem;
    box-shadow: 0 2px 12px 0 rgba(244,162,97,0.08);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
}
.btn-outline:hover {
    background: var(--yellow);
    color: white;
}
.btn-primary {
    background: var(--yellow);
    color: white;
    border: 2px solid var(--yellow);
    min-width: 220px;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.btn-primary:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
}
/* Header avec vidéo */
.video-header {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}
.video-header video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Par défaut, aucune image de fond, chaque page la surcharge */
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}
.video-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.video-overlay p {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.header-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.header-buttons .btn {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
}
.category-badge {
    background: rgba(183, 150, 150, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin: 1rem 0;
}
.category-badge span {
    margin: 0 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}
.category-badge span:hover {
    color: var(--yellow);
}
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
/* Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--yellow);
    margin: 1rem auto;
}
/* Carrousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}
.carousel-item {
    min-width: 250px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.carousel-item:hover {
    transform: translateY(-18px);
}
.carousel-item i {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}
.carousel-item h3 {
    margin-bottom: 0.5rem;
    color: #222;
}
.carousel-item p {
    color: #666;
    font-size: 0.9rem;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #f2f2f2);
    border: 1px solid rgba(24, 26, 27, 0.12);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
    cursor: pointer;
    font-size: 1.45rem;
    color: #181a1b;
    line-height: 1;
    z-index: 10;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.carousel-btn:hover {
    background: var(--yellow);
    color: #181a1b;
    box-shadow: 0 10px 24px rgba(246,196,59,0.45);
}
.carousel-btn:active {
    transform: translateY(-50%) scale(0.94);
}
.carousel-btn:focus-visible {
    outline: 3px solid rgba(246,196,59,0.85);
    outline-offset: 2px;
}
.carousel-btn.prev {
    left: 10px;
}
.carousel-btn.next {
    right: 10px;
}
/* Grille features */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-width: 270px;
    max-width: 340px;
}
.feature-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.feature-card i {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}
.feature-card h3, .feature-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #222;
}
.feature-card p {
    color: #111;
}
/* Témoignages */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #333;
}
.testimonial-card .stars {
    color: var(--yellow);
    margin-bottom: 1rem;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: #222;
}
.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}
/* Onglets */
.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 0.8rem 2rem;
    border: none;
    background: #f8f9fa;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #333;
}
.tab-btn.active {
    background: var(--yellow);
    color: white;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
/* Activités enfants */
.enfant-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.enfant-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.enfant-card-hover {
    position: relative;
    overflow: hidden;
}
.enfant-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    pointer-events: auto;
    z-index: 10;
}
.enfant-card-overlay p {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}
.enfant-card-hover:hover .enfant-card-overlay {
    opacity: 1;
}
.enfant-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.enfant-card-content {
    padding: 1.5rem;
}
.enfant-card h3 {
    margin-bottom: 0.5rem;
    color: #222;
}
.enfant-card .badge {
    background: var(--yellow);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.enfant-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}
.enfant-card li {
    margin-bottom: 0.3rem;
    color: #666;
}
.garderie-info {
    background: #e9ecef;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
    color: #333;
}
/* Bien-être */
.bienetre-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background: #f8f9fa;
    border-radius: 40px;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 6px 32px 0 rgba(0,0,0,0.08);
    align-items: stretch;
}
.bienetre-item:nth-child(even) {
    flex-direction: row-reverse;
}
.bienetre-item img {
    width: 50%;
    min-width: 320px;
    max-width: 480px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
}
.bienetre-content {
    padding: 3rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.18rem;
}
@media (max-width: 1200px) {
    .bienetre-item {
        flex-direction: column;
        min-height: unset;
    }
    .bienetre-item img {
        width: 100%;
        min-width: unset;
        max-width: 100%;
        height: 260px;
        aspect-ratio: 16/9;
    }
    .bienetre-content {
        padding: 2rem 1.2rem;
        font-size: 1.05rem;
    }
}
.bienetre-content h3 {
    margin-bottom: 1rem;
    color: #222;
}
.bienetre-content p {
    margin-bottom: 1rem;
    color: #666;
}
/* Location */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.location-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
    color: #333;
}
.location-card:hover {
    transform: translateY(-18px);
    background: var(--yellow);
    color: white;
}
.location-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--yellow);
}
.location-card:hover i {
    color: white;
}
/* CTA */
.cta-section {
    background: var(--yellow);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 15px;
    margin: 4rem 0;
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .btn {
    background: white;
    color: #f4a261;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
}
.cta-section .btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}
/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 5%;
    margin-top: 4rem;
}
.footer-sponsors {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-sponsors img {
    display: block;
    max-width: min(100%, 2000px);
    width: 100%;
    height: auto;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.footer-section h4 {
    margin-bottom: 1rem;
}
.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}
.footer-section a:hover {
    color: white;
}
.footer-legal {
    max-width: 1200px;
    margin: 1.2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-legal a {
    color: #e6e6e6;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.95rem;
}
.footer-legal a:hover {
    color: #fff;
}
@media (max-width: 480px) {
    .footer-sponsors {
        margin-top: 1.4rem;
        padding-top: 1rem;
    }
    .footer-sponsors img {
        max-width: 300px;
    }
    .footer-legal {
        gap: 0.8rem;
        margin-top: 1rem;
        padding-top: 0.8rem;
    }
    .footer-legal a {
        font-size: 0.9rem;
    }
}

/* Legal pages */
.legal-content {
    max-width: 1100px;
}
.legal-content .section-title {
    margin-bottom: 2rem;
}
.legal-block {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.6rem;
    margin-bottom: 1.2rem;
    color: #333;
    line-height: 1.75;
}
.legal-block h3 {
    color: #1e2022;
    margin-bottom: 0.8rem;
}
.legal-block p {
    margin-bottom: 0.8rem;
}
.legal-block ul {
    margin: 0.5rem 0 0.8rem 1.2rem;
}
.legal-block li {
    margin-bottom: 0.4rem;
}
/* Active navigation link */
.nav-links a.nav-active {
    color: var(--white);
    font-weight: 700;
}
/* Page hero banner (used on sub-pages instead of video header) */
.page-hero {
    background: linear-gradient(135deg, #1e2022, #2c2f33);
    padding: 5rem 2rem 4rem;
    text-align: center;
    border-bottom: 4px solid var(--yellow);
}
.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--yellow);
}
.page-hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}
/* Planning table */
.planning-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
}
.planning-table {
    width: 100%;
    border-collapse: collapse;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}
.planning-table th {
    background: var(--yellow);
    color: white;
    padding: 0.9rem 1.2rem;
    text-align: left;
    font-size: 1rem;
}
.planning-table td {
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    font-size: 0.95rem;
}
.planning-table tr:last-child td {
    border-bottom: none;
}
.planning-table tr:hover td {
    background: #fff3cd;
}
/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}
.nav-dropdown-toggle:hover {
    color: var(--yellow);
}
.nav-dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s;
}
.nav-dropdown.open .nav-dropdown-icon {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e2022;
    border-radius: 10px;
    padding: 0.4rem 0;
    min-width: 190px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
    z-index: 200;
    border: 1px solid rgba(246, 196, 59, 0.2);
}
.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

@media (hover: hover) and (pointer: fine) {
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown:hover .nav-dropdown-icon,
    .nav-dropdown:focus-within .nav-dropdown-icon {
        transform: rotate(180deg);
    }
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #1e2022;
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.4rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover {
    background: rgba(246, 196, 59, 0.15);
    color: var(--yellow);
}
/* Activity meta (duration, calories) */
.activity-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0.75rem 0 0.5rem;
    font-size: 0.88rem;
    color: #555;
}
.activity-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.activity-meta i {
    color: var(--yellow-dark);
    font-size: 0.82rem;
}
/* Activity keyword tags */
.activity-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.7rem;
}
.activity-tag {
    background: rgba(246, 196, 59, 0.15);
    color: #5c3a00;
    border: 1px solid rgba(246, 196, 59, 0.35);
    padding: 0.18rem 0.65rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}
/* Sport carousels (accueil) */
body.accueil .container {
    max-width: 1620px;
}
body.accueil .home-carousel-section {
    padding-top: 2.2rem;
    padding-bottom: 2rem;
}
body.accueil .home-carousel-section + .home-carousel-section {
    padding-top: 0.6rem;
}
body.accueil .carousel-container {
    padding: 1.8rem 0;
}
body.accueil .carousel-track {
    gap: 2.2rem;
}
body.accueil .carousel-btn {
    width: 60px;
    height: 60px;
    font-size: 1.85rem;
}
body.accueil .carousel-btn.prev {
    left: 12px;
}
body.accueil .carousel-btn.next {
    right: 12px;
}
.sport-carousel-item {
    min-width: 255px;
    border-radius: 16px;
    overflow: hidden;
    background: #1e2022;
    box-shadow: 0 10px 26px rgba(0,0,0,0.35);
    transition: transform 0.3s;
    flex-shrink: 0;
    cursor: pointer;
}
.sport-carousel-item:hover {
    transform: translateY(-12px);
}
.sport-carousel-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}
.sport-carousel-item span {
    display: block;
    text-align: center;
    padding: 1.1rem 0.8rem;
    font-weight: 600;
    color: white;
    font-size: 1.14rem;
}
/* Carousel planning button wrapper */
.carousel-planning-btn {
    text-align: center;
    margin-top: 1.5rem;
}
/* Planning image */
.planning-image-wrapper {
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
}
.planning-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.contact-map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
    background: #f8f9fa;
}
.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}
/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem 1.8rem;
    }
    .video-overlay h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .bienetre-item {
        flex-direction: column !important;
    }
    .bienetre-item img {
        width: 100%;
        height: 250px;
    }
    .carousel-container {
        padding: 1rem 0 7rem;
    }
    body.accueil .home-carousel-section {
        padding-top: 1.4rem;
        padding-bottom: 1.2rem;
    }
    body.accueil .home-carousel-section + .home-carousel-section {
        padding-top: 0.2rem;
    }
    body.accueil .carousel-track {
        gap: 1rem;
    }
    .sport-carousel-item img {
        height: 250px;
    }
    .sport-carousel-item span {
        font-size: 1rem;
        padding: 0.9rem 0.7rem;
    }
    .carousel-btn {
        top: auto;
        bottom: -1.3rem;
        transform: none;
        width: 56px;
        height: 56px;
        font-size: 1.55rem;
        z-index: 20;
    }
    .carousel-btn:active {
        transform: scale(0.94);
    }
    .carousel-btn.prev,
    body.accueil .carousel-btn.prev {
        left: calc(50% - 68px);
    }
    .carousel-btn.next,
    body.accueil .carousel-btn.next {
        right: calc(50% - 68px);
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .contact-form-shell {
        margin: 0 1rem;
        padding: 1.25rem;
        border-radius: 18px;
        box-shadow: 0 14px 32px rgba(0,0,0,0.18);
        background: linear-gradient(180deg, rgba(248,249,250,0.98) 0%, rgba(255,255,255,0.98) 100%);
    }
    .contact-form-shell form {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .contact-name-grid input {
        width: 100%;
        min-width: 0;
        display: block;
    }
    .contact-form-shell input,
    .contact-form-shell select,
    .contact-form-shell textarea {
        font-size: 16px;
        border-radius: 14px;
        border-color: #cfd4da;
        background: #fff;
        box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
    }
    .contact-name-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-bottom: 0.85rem;
    }
    .contact-consent {
        font-size: 0.95rem;
        align-items: flex-start;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(0,0,0,0.06);
        border-radius: 12px;
        padding: 0.85rem 0.9rem;
        margin-top: 0.25rem;
    }
    .contact-form-shell button[type="submit"] {
        padding: 0.95rem 1rem !important;
        border-radius: 14px;
        font-size: 1rem !important;
    }
    .contact-form-status {
        font-size: 0.95rem;
    }
    .nav-buttons {
        display: none;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-map-wrapper iframe {
        height: 320px;
    }
}
@media (max-width: 480px) {
    body.accueil .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .contact-form-shell {
        margin: 0 0.75rem;
        padding: 1rem;
        border-radius: 16px;
    }
    .contact-form-shell input,
    .contact-form-shell select,
    .contact-form-shell textarea {
        padding: 0.9rem !important;
    }
    .contact-name-grid input {
        width: 100%;
        min-width: 0;
    }
    .contact-consent {
        font-size: 0.9rem;
        line-height: 1.45;
    }
    .contact-form-shell button[type="submit"] {
        width: 100%;
    }
    .sport-carousel-item img {
        height: 220px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .contact-map-wrapper iframe {
        height: 280px;
    }
}
