/* ═══════════════════════════════════
   VARIABLES
═══════════════════════════════════ */
:root {
    --Primary: #864656;
    --Primary-pilates: #CAC891;
    --Secondary: #FFEAED;
    --Tertiary: #FFFFFF;
    --bg: #F5EEF4;
    --texts: #444444;
}

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

@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/Oswald/static/Oswald-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 300;
    src: url('/fonts/Bebas_Neue/BebasNeue-Regular.ttf') format('truetype');
}

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

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

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

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

.anton-regular {
    font-family: "Fugaz One", sans-serif;
}

/* ═══════════════════════════════════
   GLOBAL
═══════════════════════════════════ */
* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: 'Poppins', serif;
    text-decoration: none;
    list-style: none;
    outline: none;
    border: none;
    scroll-behavior: smooth;
}

body {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

section {
    padding: 100px 0px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

h1 {
    font-size: 2.5em;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--bg);
    font-family: 'Oswald', serif;
    text-transform: uppercase;
}

h2 {
    font-size: 1.8em;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--bg);
    font-family: 'Oswald', serif;
    text-transform: uppercase;
}

h3 {
    font-size: 1.2em;
    font-weight: 300;
    color: var(--Headings);
    font-family: 'Bebas Neue', sans-serif;
}

h4 {
    font-size: 1.2em;
    font-weight: 200;
    margin-bottom: 20px;
}

p {
    font-size: 1.1em;
}

.btn {
    display: inline-block;
    width: auto;
    font-size: 1rem;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 400;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    white-space: nowrap;
}

.btn.primary {
    background-color: var(--Primary);
    color: var(--bg);
}

.btn.accent {
    background-color: var(--Secondary);
    color: var(--Primary);
}

.btn.secondary {
    background-color: var(--bg);
    color: var(--Primary);
    border: 1px solid var(--Primary);
}

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

.container {
    padding: 0px 5%;
}

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.logo {
    width: 200px;
    height: 150px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    left: -30px;
}

.logo img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    width: 100%;
}

.logo-other {
    width: 150px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-other img {
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 5%;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
    background-color: var(--Primary);
    opacity: 0;
}

.navbar-cours {
    opacity: 1;
}

.navbar.visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar-left {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.nav-links {
    display: flex;
    padding: 0px 20px;
    border-radius: 30px;
}

.nav-links a {
    text-decoration: none;
    padding: 10px 20px;
    color: var(--bg);
    font-size: 1.0rem;
    transition: color 0.3s ease-in-out;
}

.nav-links a.active {
    font-weight: bold;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

.nav-item {
    position: relative;
    margin-right: 20px;
}

.nav-item>a {
    display: inline-block;
    padding: 10px 20px;
    color: var(--bg);
    font-size: 1.0rem;
    transition: color 0.3s ease-in-out;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg);
    padding: 10px 0;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10001;
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--bg);
    font-size: 1rem;
    white-space: nowrap;
}

.dropdown a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-item:hover .dropdown {
    display: block;
}

.navbar-CTA {
    display: none;
}

.CTA-mobile {
    padding: 15px 25px;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 30px;
    height: 3px;
    background: var(--Secondary);
    margin: 5px;
    transition: all 0.3s ease-in-out;
}

/* ═══════════════════════════════════
   HERO ACCUEIL
═══════════════════════════════════ */
#accueil-hero {
    position: relative;
    scroll-snap-align: start;
    width: 100vw;
    min-height: 100vh;
    padding: 0px;
}

.accueil-video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    transition: height 0.3s ease-in-out;
}

.video-slider {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100dvh;
}

.video-slide {
    display: none;
    height: 100vh;
    position: relative;
}

.video-slide-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-slide.active {
    display: block;
}

.accueil-title-container {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.accueil-title-container p {
    color: var(--bg);
    font-size: 1.4em;
}

.fade-out {
    animation: fadeOut 1s forwards;
    animation-delay: 2.5s;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.visible {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
}

/* ═══════════════════════════════════
   ACCUEIL INFO
═══════════════════════════════════ */
#accueil-info {
    background-color: var(--bg);
    padding: 0px;
    height: auto;
}

.container-accueil-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    padding-bottom: 50px;
}

.accueil-info-col {
    width: 100%;
    height: auto;
}

.accueil-info-col-left {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    margin: 40px 0px;
}

.accueil-info-col-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    gap: 2rem;
}

.accueil-info-title h2 {
    color: var(--Primary);
    font-size: 2em;
    margin: 0px;
}

.accueil-info-text p {
    color: var(--Primary);
    font-size: 1.0em;
}

.accueil-info-CTA>* {
    margin: 0px 0px 15px 0px;
}

.accueil-info-img-container {
    border-radius: 10px;
    overflow: visible;
    box-shadow: 4px 4px 5px rgba(74, 83, 59, 0.4);
}

.accueil-info-img-top {
    transform: translateY(0);
    z-index: 1;
}

.accueil-info-img-down {
    transform: translateY(0);
    z-index: 1;
}

.accueil-info-img {
    position: relative;
    width: 100%;
    height: 350px;
    max-width: 300px;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

.accueil-info-img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(134, 70, 86, 0.3);
    pointer-events: none;
    z-index: 2;
    border-radius: 10px;
}

/* ═══════════════════════════════════
   COURS POLE (section accueil)
═══════════════════════════════════ */
#cours-pole {
    background-color: var(--Tertiary);
}

.container-cours-pole {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    height: 100%;
}

.accueil-cours-pole-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 20px;
    gap: 1rem;
}

.accueil-cours-pole-header h2,
.accueil-cours-pole-header p {
    color: var(--Primary);
}

.accueil-cours-pole-header p {
    margin-bottom: 20px;
}

.accueil-cours-pole {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.2em;
}

.barre-verticale {
    width: 10px;
    background-color: var(--Primary);
}

.accueil-cours-pole-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.accueil-cours-pole-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: var(--bg);
    border-radius: 8px;
    padding: 20px;
    gap: 1.5em;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.accueil-cours-pole-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1em;
}

.accueil-cours-pole-card-content h3,
.accueil-cours-pole-card-content p {
    color: var(--Primary);
}

.accueil-cours-pole-card-content h3 {
    font-weight: 700;
}

.accueil-cours-pole-card-img img {
    width: 300px;
    border-radius: 8px;
}

/* ═══════════════════════════════════
   TARIFS (section accueil)
═══════════════════════════════════ */
.tarifs {
    background-image: url(/images/content/img_bg_tarifs.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container-tarifs {
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.accueil-tarifs-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 20px;
    gap: 1rem;
}

.accueil-tarifs-header p,
.accueil-tarifs-header h2 {
    color: var(--Primary);
}

.tarifs-card {
    background-color: var(--bg);
    border-radius: 10px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    gap: 1rem;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.tarifs-card p,
.tarifs-card h3,
.tarifs-card h4 {
    color: var(--Primary);
}

.tarifs-card h3 {
    font-size: 3em;
}

.card-tarifs-header {
    border-bottom: 2px solid rgba(128, 128, 128, 0.15);
    width: 100%;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.card-tarifs-header span {
    cursor: pointer;
}

.card-tarifs-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding-top: 20px;
}

.card-tarifs-content h4 {
    font-size: 1.1em;
}

.card-tarifs-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 0.5rem;
    padding: 0px 20px;
}

.card-tarifs-CTA {
    padding: 20px 0px 40px 0px;
}

.tarifs-infos {
    color: var(--Primary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 10px 20px;
    width: 100%;
    overflow: hidden;
    opacity: 1;
}

.tarifs-infos p {
    font-size: 0.6em;
}

/* ═══════════════════════════════════
   TEAM
═══════════════════════════════════ */
#team {
    background-color: var(--bg);
}

#team h2 {
    color: var(--Primary);
}

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

.carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 2rem 0;
}

.carousel-container {
    overflow: hidden;
    max-width: 100%;
    flex: 0 1 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 20px;
}

.carousel-card {
    width: 265px;
    height: auto;
    flex: 0 0 auto;
    background: var(--Primary);
    color: white;
    font-size: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 1rem;
}

.carousel-btn {
    background-color: rgba(200, 200, 200, 0.15);
    color: var(--Primary);
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 2;
    position: absolute;
}

.carousel-btn.prev {
    left: 0;
    z-index: 9999;
}

.carousel-btn.next {
    right: 0;
    z-index: 9999;
}

.team-membre-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.img-team {
    border-radius: 10px;
    height: auto;
    width: 100%;
}

.name {
    text-transform: uppercase;
    font-family: "Oswald";
    font-size: 0.9em;
}

.job {
    font-family: "Poppins";
    font-weight: 200;
    font-size: 0.7em;
}

.team-text p {
    color: var(--bg);
    font-size: 0.5em;
}

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
#faq {
    background-color: #fff;
}

.accueil-faq-header h2,
.accueil-faq-header p {
    color: var(--Primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    background-color: var(--bg);
    border-radius: 10px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.faq-item {
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 20px 20px;
}

.faq-item-last {
    border: none;
}

.faq-question-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--Primary);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--bg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: var(--bg);
    color: var(--Primary);
    padding: 0px 50px;
}

/* ═══════════════════════════════════
   PARTENAIRES
═══════════════════════════════════ */
#partenaires {
    background-color: var(--bg);
}

.container-partenaires {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.accueil-partenaires-header p,
.accueil-partenaires-header h2 {
    color: var(--Primary);
}

.partenaires-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.partenaire-img {
    height: 200px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
    background-color: var(--Primary);
    padding: 20px 0px;
}

.container-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

footer * {
    color: var(--bg);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 0.4rem;
    width: 100%;
    padding: 0px 10px;
}

.footer-title {
    font-weight: bolder;
    font-size: 1.2em;
    text-transform: uppercase;
}

.footer-subtitle {
    font-weight: bolder;
    font-size: 1.0em;
    text-transform: uppercase;
}

.reseaux {
    padding: 10px 0px;
}

.small-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 1);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 1);
    font-weight: bold;
}

.footer-bottom a:hover {
    color: white;
}

/* ═══════════════════════════════════
   PAGES COURS (hero)
═══════════════════════════════════ */
#accueil-cours {
    background-image: url(/images/content/pole-accueil.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.accueil-cours {
    padding-top: 200px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.accueil-cours::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(134, 70, 86, 0.2);
    pointer-events: none;
    z-index: 2;
}

.accueil-cours h1,
.accueil-cours h2,
.accueil-cours h3,
.accueil-cours p {
    color: var(--Primary);
}

.accueil-cours h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.accueil-cours h2 {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.accueil-cours h3 {
    font-size: 1.0em;
}

.accueil-cours p span {
    font-size: 1.2em;
    font-weight: bolder;
}

.container-accueil-cours {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
}

.key-numbers-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    margin-bottom: 40px;
}

.key-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

/* ═══════════════════════════════════
   COURS DESCRIPTION
═══════════════════════════════════ */
#cours-pole-description {
    background-color: var(--bg);
}

.cours-description-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5em;
}

.cours-description-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2em;
    width: 100%;
}

.cours-description-card {
    flex: 1;
    background-color: var(--Primary);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--bg);
    gap: 1.5em;
}

.cours-description-card h3 {
    font-size: 1.5em;
    font-weight: bold;
}

.cours-description-img {
    max-width: 100%;
}

.cours-description-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ═══════════════════════════════════
   CTA ACTION
═══════════════════════════════════ */
#cta-action {
    background-color: var(--Primary);
}

.container-cta-action {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    text-align: center;
}

.container-cta-action p {
    color: var(--bg);
    margin-bottom: 15px;
}

/* ═══════════════════════════════════
   PLANNING – dark aesthetic
═══════════════════════════════════ */
#planning {
    background-color: #0e0e0e;
    padding: 80px 0;
}

.container-planning {
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.pl-header h2 {
    font-family: 'Oswald', serif;
    font-weight: 500;
    font-size: clamp(.65rem, 2vw, .85rem);
    letter-spacing: .35em;
    text-transform: uppercase;
    color: #7a6a65;
    margin: 0;
}

.pl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 1200px) {
    .pl-nav {
        display: none;
    }
}

.pl-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: transparent;
    color: rgba(255, 255, 255, .6);
    font-size: 1rem;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .25s, color .25s;
}

.pl-arrow:hover {
    border-color: var(--Primary);
    color: var(--Primary);
}

.pl-arrow:disabled {
    opacity: .2;
    pointer-events: none;
}

.pl-dots {
    display: flex;
    gap: .4rem;
}

.pl-dot {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, .15);
    border: none;
    border-radius: 1px;
    cursor: pointer;
    padding: 0;
    transition: background .3s, width .3s;
}

.pl-dot.is-active {
    background: var(--Primary);
    width: 32px;
}

.pl-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: thin;
    scrollbar-color: var(--Primary) transparent;
    padding-bottom: .5rem;
}

.pl-scroll-wrapper::-webkit-scrollbar {
    height: 2px;
}

.pl-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--Primary);
    border-radius: 1px;
}

.pl-scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.pl-track {
    display: flex;
    width: max-content;
    scroll-snap-type: x mandatory;
    padding: 0 5%;
    gap: 0;
}

@media (min-width: 1200px) {
    .pl-track {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        width: 100%;
        scroll-snap-type: none;
        padding: 0;
    }
}

.pl-day {
    flex: 0 0 clamp(200px, 75vw, 260px);
    scroll-snap-align: start;
    padding: 0 clamp(.75rem, 2vw, 1.5rem) 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation: plFadeUp .5s ease both;
}

.pl-day:first-child {
    border-left: none;
}

@media (min-width: 1200px) {
    .pl-day {
        flex: none;
    }
}

.pl-day[data-index="0"] {
    animation-delay: .08s;
}

.pl-day[data-index="1"] {
    animation-delay: .14s;
}

.pl-day[data-index="2"] {
    animation-delay: .20s;
}

.pl-day[data-index="3"] {
    animation-delay: .26s;
}

.pl-day[data-index="4"] {
    animation-delay: .32s;
}

.pl-day[data-index="5"] {
    animation-delay: .38s;
}

.pl-day-name {
    font-family: 'Oswald', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--Primary);
    margin: 0;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(134, 70, 86, .2);
}

.pl-day.is-today {
    position: relative;
}

.pl-day.is-today::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--Primary);
}

.pl-sessions {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin: 0;
    padding: 0;
}

.pl-session {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    padding: .5rem .65rem;
}

.pl-time {
    font-family: 'Oswald', serif;
    font-weight: 500;
    font-size: .76rem;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .85);
}

.pl-name {
    font-family: 'Oswald', serif;
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.pl-session--pole {
    border: 1px solid rgba(134, 70, 86, .45);
    transition: border-color .2s, background .2s, transform .2s;
}

.pl-session--pole .pl-name {
    color: var(--Primary);
}

.pl-session--pole:hover {
    border-color: var(--Primary);
    background: rgba(134, 70, 86, .08);
    transform: translateX(3px);
}

.pl-session--pilates {
    border: 1px solid var(--Primary-pilates);
    transition: border-color .2s, background .2s, transform .2s;
}

.pl-session--pilates .pl-time,
.pl-session--pilates .pl-name {
    color: var(--Primary-pilates);
}

.pl-session--pilates:hover {
    border-color: var(--Primary-pilates);
    background: rgba(255, 255, 255, .04);
    transform: translateX(3px);
}

.pl-session--open {
    padding-left: 0;
    opacity: 1;
}

.pl-session--open .pl-time,
.pl-session--open .pl-name {
    color: var(--bg);
}

.pl-session--open .pl-name {
    font-weight: 400;
    letter-spacing: .12em;
}

.pl-legend {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 2rem;
    justify-content: center;
    padding-top: .5rem;
    border-top: 1px solid var(--bg);
}

.pl-legend-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Oswald', serif;
    font-size: .65rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bg);
}

.pl-legend-swatch {
    display: inline-block;
    width: 18px;
    height: 2px;
    border-radius: 1px;
}

.pl-legend-swatch--pole {
    background: var(--Primary);
}

.pl-legend-swatch--pilates {
    background: rgba(231, 181, 87, 0.5);
}

.pl-legend-swatch--open {
    background: var(--bg);
}

.pl-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: .5rem;
    border-top: 1px solid var(--bg);
}

.pl-footer-hours p {
    font-size: .8rem;
    color: var(--bg);
    line-height: 1.9;
    margin: 0;
    letter-spacing: .02em;
}

@keyframes plFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
#contact {
    background-color: var(--bg);
    color: var(--Primary);
    padding-top: 180px;
}

.container-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container-contact h1 {
    color: var(--Primary);
    font-size: 2em;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    width: 100%;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    border: 1px solid var(--Primary);
    border-radius: 10px;
    padding: 50px 20px;
    gap: 1rem;
}

.form-wrapper h2 {
    color: var(--Primary);
    font-size: 1.5em;
    margin: 0px;
}

.row-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 1rem;
    width: 100%;
}

.form-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 1rem;
    width: 100%;
}

.form-container label {
    font-size: 1.5em;
    color: var(--Primary);
}

.form-container input,
.form-container textarea {
    font-size: 1.5em;
    width: 100%;
    border-radius: 10px;
    color: var(--Primary);
}

.form-btn {
    width: 100%;
}

label span {
    color: var(--Primary);
}

/* ═══════════════════════════════════
   PAGE TARIFS – tarifs à l'unité (redesign)
═══════════════════════════════════ */
.tarifs-libre {
    padding-bottom: 0px;
}

.tl-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tl-header h2 {
    color: var(--Primary);
    margin-bottom: .75rem;
}

.tl-header p {
    color: var(--texts);
    max-width: 600px;
    margin: 0 auto;
    font-size: .95rem;
    line-height: 1.7;
}

.tl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.tl-card {
    background: var(--Tertiary);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgba(134, 70, 86, .12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.tl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(134, 70, 86, .13);
}

.tl-card--featured {
    border: 2px solid var(--Primary);
}

.tl-card-header {
    background: var(--Primary);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.tl-card-header h3 {
    font-family: 'Oswald', serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--bg);
    margin: 0;
}

.tl-badge {
    display: inline-flex;
    align-self: flex-start;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .25rem .65rem;
    border-radius: 20px;
}

.tl-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1.25rem;
}

.tl-prices {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.tl-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: .75rem;
    border-bottom: 1px dashed rgba(134, 70, 86, .2);
}

.tl-price-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tl-price-label {
    font-size: .85rem;
    color: var(--texts);
}

.tl-price-value {
    font-family: 'Oswald', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--Primary);
    line-height: 1;
    margin: 0;
}

.tl-price-value span {
    font-size: .85rem;
    font-weight: 400;
    color: var(--texts);
    margin-left: .1rem;
}

.tl-features {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
    list-style: none;
}

.tl-feature {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    color: var(--texts);
}

.tl-feature::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--Primary);
    flex-shrink: 0;
}

.tl-cta {
    display: block;
    text-align: center;
    padding: .85rem 1.25rem;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    cursor: pointer;
}

.tl-cta--primary {
    background: var(--Primary);
    color: var(--bg);
}

.tl-cta--primary:hover {
    background: #6e3748;
    transform: translateY(-1px);
}

.tl-cta--outline {
    background: transparent;
    color: var(--Primary);
    border: 1.5px solid var(--Primary);
}

.tl-cta--outline:hover {
    background: var(--Secondary);
}

.tl-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: .78rem;
    color: var(--texts);
    opacity: .7;
}

/* ═══════════════════════════════════
   PAGE TARIFS – forfaits & carnets
═══════════════════════════════════ */
.tarifs-pole-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 2em;
    width: 100%;
}

.tarifs-pole-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background-color: var(--bg);
    border-radius: 8px;
    padding: 20px;
    gap: 1.5em;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.tarifs-pole-card.sans-engagement {
    background-color: #ede4e7;
}

.tarifs-pole-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1em;
}

.tarifs-pole-card-content h3,
.tarifs-pole-card-content p {
    color: var(--Primary);
}

.tarifs-pole-card-content h3 {
    font-weight: 700;
}

.prix-forfait {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px dashed var(--Primary);
    width: 100%;
    padding-bottom: 15px;
}

.prix-forfait-explication {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    text-align: center;
    width: 100%;
    gap: 1.5em;
}

.bandeau {
    position: absolute;
    top: 20px;
    right: -60px;
    width: 200px;
    text-align: center;
    transform: rotate(45deg);
    background: var(--Primary);
    color: white;
    font-weight: 600;
    padding: 8px 0;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Toggle pill forfaits */
.tarifs-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 20px 0px;
    gap: 10px;
}

.toggle-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--texts);
    opacity: .45;
    transition: opacity .3s, color .3s;
    cursor: pointer;
    user-select: none;
}

.toggle-label.is-active {
    color: var(--Primary);
    opacity: 1;
}

.tf-toggle-pill {
    position: relative;
    width: 52px;
    height: 28px;
    cursor: pointer;
    flex-shrink: 0;
}

.tf-toggle-pill input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.tf-toggle-track {
    position: absolute;
    inset: 0;
    background: var(--Primary);
    border-radius: 28px;
    transition: background .35s;
}

.tf-toggle-pill input:checked~.tf-toggle-track {
    background: #b8a0a8;
}

.tf-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.tf-toggle-pill input:checked~.tf-toggle-thumb {
    transform: translateX(24px);
}

/* ═══════════════════════════════════
   MEDIA QUERIES
═══════════════════════════════════ */
@media (max-width: 768px) {
    .carousel-container {
        width: calc(265px + 0px);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-container {
        width: calc((265px * 2) + 20px);
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .carousel-container {
        width: calc((265px * 3) + (20px * 2));
    }
}

@media (min-width: 1440px) {
    .carousel-container {
        width: calc((265px * 4) + (20px * 3));
    }
}

@media screen and (max-width: 1023px) {
    .logo {
        width: 150px;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .logo img {
        width: 100%;
        height: auto;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 0;
        background: var(--bg);
        color: var(--Primary);
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
        justify-content: flex-start;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        overflow-y: auto;
        border-radius: 0;
    }

    .nav-links.nav-active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        color: var(--Primary);
        padding: 12px 0;
        font-size: 1.2rem;
    }

    .nav-links .CTA-mobile {
        padding: 15px 25px;
    }

    .burger {
        display: block;
    }

    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: #4A533B;
    }

    .burger.toggle .line2 {
        opacity: 0;
    }

    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background: #4A533B;
    }

    .dropdown {
        display: block !important;
        position: static;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 5px;
        min-width: auto;
    }

    .dropdown a {
        padding-left: 30px;
        font-size: 1rem;
        white-space: normal;
    }

    .nav-item:hover .dropdown {
        display: block;
    }
}

@media screen and (min-width: 425px) {
    h1 {
        font-size: 2.6em;
    }

    h2 {
        font-size: 1.8em;
    }

    .accueil-tarifs-header {
        padding: 0px 40px;
    }
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 5em;
    }

    h2 {
        font-size: 2.2em;
    }

    .container {
        padding: 0px 6%;
    }

    .navbar {
        padding: 20px 6%;
    }

    .accueil-info-CTA>* {
        margin: 0px 10px 0px 0px;
    }

    .accueil-cours-pole {
        gap: 0.5em;
    }

    .accueil-cours-pole-card {
        flex-direction: row;
        align-items: center;
        padding: 30px;
    }

    .team-text {
        padding: 0px 10px;
    }

    .container-accueil-info {
        padding-bottom: 50px;
    }

    .row-form {
        flex-direction: row;
    }

    .form-wrapper {
        padding: 50px;
    }

    .key-numbers-container {
        flex-direction: row;
    }

    .accueil-cours h1 {
        font-size: 3em;
        margin-bottom: 20px;
    }

    .accueil-cours h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .accueil-cours h3 {
        font-size: 1.1em;
    }

    .accueil-cours p span {
        font-size: 1.5em;
        font-weight: bolder;
    }
}

@media screen and (min-width: 1024px) {
    h1 {
        font-size: 8em;
    }

    h2 {
        font-size: 2.3em;
    }

    .container {
        padding: 0px 6%;
    }

    .CTA-mobile {
        display: none;
    }

    .navbar-CTA {
        display: block;
    }

    .dropdown {
        background-color: var(--Primary);
    }

    .navbar {
        padding: 20px 6%;
    }

    .accueil-info-col-left {
        justify-content: center;
        height: 100%;
        margin: 0;
    }

    .accueil-info-col-right {
        align-items: flex-end;
    }

    .container-accueil-info {
        flex-direction: row;
        height: 750px;
    }

    .accueil-info-img-top {
        transform: translateY(-30%);
        z-index: 1;
    }

    .accueil-info-img-down {
        transform: translateY(-30%);
        z-index: 1;
    }

    .accueil-info-img {
        width: 405px;
        height: 500px;
    }

    .accueil-info-title h2 {
        font-size: 2.5em;
    }

    .accueil-info-text p {
        font-size: 1.1em;
    }

    .accueil-cours-pole {
        gap: 1.5em;
    }

    .accueil-tarifs-header {
        padding: 0px 100px;
    }

    .team-text {
        padding: 0px 15px;
    }

    .carousel-track {
        width: 600px;
    }

    .partenaires-wrapper {
        flex-direction: row;
    }

    .container-footer {
        flex-direction: row;
    }

    .row-form {
        flex-direction: row;
    }

    .form-wrapper {
        padding: 50px 100px;
    }

    .key-row {
        flex-direction: row;
    }

    .accueil-cours h1 {
        font-size: 2.8em;
        margin-bottom: 20px;
    }

    .accueil-cours h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .accueil-cours h3 {
        font-size: 1.1em;
    }

    .accueil-cours p span {
        font-size: 1.5em;
        font-weight: bolder;
    }

    .cours-description-row {
        flex-direction: row;
    }

    .cours-description-row-reverse {
        flex-direction: row-reverse;
    }

    .cours-description-img {
        max-width: 50%;
    }

    .tarifs-pole-card-content {
        flex-direction: row;
    }

    .prix-forfait h3 {
        font-size: 2em;
    }

    .prix-forfait p {
        font-size: 1.2em;
    }

    .prix-forfait {
        border-bottom: none;
        align-items: center;
        border-right: 1px dashed var(--Primary);
        height: 100%;
        width: 300px;
        padding-bottom: 15px;
    }

    .prix-forfait-explication {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: stretch;
        text-align: left;
        width: 100%;
        gap: 1.5em;
        padding: 20px;
    }

    .container-planning {
        padding: 0 6%;
    }
}

@media screen and (min-width: 1440px) {
    h1 {
        font-size: 10em;
    }

    h2 {
        font-size: 2.5em;
    }

    .container {
        padding: 0px 8%;
    }

    .navbar {
        padding: 0px 8%;
    }

    .accueil-info-col-left {
        justify-content: center;
        height: 100%;
        margin: 0;
    }

    .container-accueil-info {
        flex-direction: row;
        height: 750px;
    }

    .accueil-info-img-top {
        transform: translateY(-30%);
        z-index: 1;
    }

    .accueil-info-img-down {
        transform: translateY(-30%);
        z-index: 1;
    }

    .accueil-info-img {
        width: 405px;
        height: 500px;
    }

    .accueil-info-title h2 {
        font-size: 4em;
    }

    .accueil-info-text p {
        font-size: 1.2em;
    }

    .accueil-cours-pole {
        gap: 3em;
    }

    .accueil-cours-pole-card {
        padding: 40px 30px;
    }

    .team-text {
        padding: 0px 20px;
    }

    .accueil-tarifs-header {
        padding: 0px 120px;
    }

    .accueil-cours h1 {
        font-size: 3.5em;
        margin-bottom: 20px;
    }

    .accueil-cours h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .accueil-cours h3 {
        font-size: 1.2em;
    }

    .accueil-cours p span {
        font-size: 1.8em;
        font-weight: bolder;
    }

    .container-planning {
        padding: 0 8%;
    }
}

