/*@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cabin:ital,wght@0,400..700;1,400..700&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');*/

:root {
    --Primary: #4A533B;
    --Secondary: #F2F2C0;
    --Tertiary: #D9D9D0;
    --bg: #F5F4EE;
    --texts: #444444;
}

@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(--Secondary);
    color: var(--Primary);
}

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

.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;
}

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

/*.logo p {
    color: var(--bg);
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
}*/

.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.navbar-services {
    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.2rem;
    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.2rem;
    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;
}

/* ACCUEIL HERO */
#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%);
}

.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 BANDEAU */
#accueil-bandeau {
    overflow: hidden;
    background-color: var(--bg);
    color: var(--Primary);
    width: 100%;
    padding: 0px;
}

#services-bandeau {
    overflow: hidden;
    background-color: var(--bg);
    color: var(--Primary);
    width: 100%;
    padding: 0px;
}

#prog-perso {
    overflow: hidden;
    background-color: var(--bg);
    color: var(--Primary);
    width: 100%;
    padding: 0px;
}

.line-item p a{
    color: var(--Primary);
    font-family: "oswald";
}

.bandeau-primary {
    background-color: var(--bg);
    color: var(--Primary);
    overflow: hidden;
}

.bandeau-primary .container {
    padding: 0px;
    max-width: 100%;
    overflow: hidden;
}

.container-lines {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.0rem;
}

.line {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.line-item-group {
    display: flex;
    animation: scroll-left linear infinite;
    animation-duration: 8s !important;
}

.line-down .line-item-group,
.line-down-reverse .line-item-group {
    animation-name: scroll-right;
}

.line-down-reverse {
    color: var(--bg);
    background-color: var(--Primary);
}

.line-down-reverse .line-item h2 {
    color: var(--bg);
}

.line-up-reverse {
    color: var(--bg);
    background-color: var(--Primary);
}

.line-up-reverse .line-item h2 {
    color: var(--bg);
}

.line-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    white-space: nowrap;
    padding: 0px 40px;
    line-height: 80px;
    flex-shrink: 0;
}

.line-item p {
    font-size: 3em;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Oswald';
    width: auto;
}

.line-item h2 {
    font-size: 4em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--Primary);
    margin: 0px;
    width: auto;
    text-shadow: 10px 10px 4.6px rgba(0, 0, 0, 0.25);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* 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-center {
    transform: translateY(0);
    z-index: 1;
}

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

.accueil-info-img {
    position: relative;
    width: 100%;
    height: auto;
    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(74, 83, 59, 0.4);
    pointer-events: none;
    z-index: 2;
    border-radius: 10px;
}

/* ACCUEIL SERVICES */
#accueil-services {
    background-color: var(--Primary);
}

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

.accueil-services-header {
    display: flex;
    flex-direction: column;
}

.accueil-services-header p,
.accueil-services-header h2 {
    color: var(--bg);
}

.accueil-services-header p {
    font-size: 0.8em;
}

.accueil-services-header h2 {
    font-size: 2em;
}

.accueil-services-container-stick {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

.accueil-services-stick-left {
    border-radius: 10px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.accueil-services-stick-left::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(74, 83, 59, 0.4);*/
    pointer-events: none;
    z-index: 2;
}

.accueil-services-img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
}

.accueil-services-stick-right {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    height: 2600px;
}

.accueil-services-stick-right>* {
    margin-bottom: 200px;
}

.accueil-services-stick-card {
    background-color: var(--bg);
    border-radius: 10px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    color: var(--Primary);
    height: auto;
    padding: 30px 20px;
    position: sticky;
    box-sizing: border-box;
    transition: transform 0.3s ease-out;
    border: 1px solid rgba(0, 0, 0, 0.25);
    min-height: 450px;
}

.accueil-services-stick-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 20px;
}

.accueil-services-stick-content h3 {
    font-size: 1.5em;
    width: 100%;
}

.accueil-services-stick-content p {
    font-size: 1.0em;
}

.para-small {
    font-size: 0.8em;
    width: 100%;
}

.card-1 {
    top: 135px;
    z-index: 1;
}

.card-2 {
    top: 145px;
    z-index: 2;
}

.card-3 {
    top: 155px;
    z-index: 3;
}

.card-4 {
    top: 135px;
    z-index: 4;
}

/* DECOUVERTE */
#decouverte {
    background-color: #fff;
    color: var(--Primary);
}

.decouverte {
    height: auto;
}

.accueil-decouverte-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

.accueil-decouverte-header h2 {
    color: var(--Primary);
}

.accueil-decouverte-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}

.accueil-decouverte-container-row,
.accueil-decouverte-container-row-up,
.accueil-decouverte-container-row-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}

.accueil-decouverte-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg);
    gap: 1rem;
    padding: 40px;
    height: auto;
    margin: 20px;
    border: 1px solid var(--Primary);
    border-radius: 10px;
    width: 100%;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

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

/* Nombres cles */
#nombres-cles {
    background-color: var(--Primary);
    color: var(--bg);
}

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

.nombres-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 0.5rem;
}

.nombre-lg {
    font-size: 3em;
    font-weight: bolder;
    text-shadow: 10px 10px 4.6px rgba(0, 0, 0, 0.25);
}

/* TARIFS */
.tarifs {
    background-image: url(/images/personnes-exercant-a-la-salle-de-fitness.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container-tarifs {
    padding: 0px;
    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: 0px 5%;
    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-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%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

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

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


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

.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: radial-gradient(circle at center,
            var(--Primary) 0%,
            Var(--Primary) 98%,
            var(--Secondary) 100%);
    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;
}

@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));
    }
}

.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 {
    color: var(--Primary);
}

/*AVIS*/
#avis {
    background-color: var(--Primary);
}

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

.accueil-avis-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.accueil-avis-header p,
.accueil-avis-header h2 {
    color: var(--bg);
}

.carousel-dots-div {
    width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.carousel-dots-container {
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
}

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

.carousel-dots-card {
    min-width: 100%;
    padding: 20px;
    background: var(--bg);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--Primary);
    gap: 1.0rem;
    max-height: 600px;
}

.carousel-dots-card h3 {
    color: var(--Primary);
    font-size: smaller;
}

.medium-icon {
    width: 30px;
}

.carousel-dots-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 1.5rem;
}

.carousel-dots-card-img {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 400px;
    width: auto;
}

.services-dots .service-CTA{
    margin-bottom: 20px;
}

/*.carousel-dots-card-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 83, 59, 0.4);
    pointer-events: none;
    z-index: 2000;
    border-radius: 10px;
}*/

.accueil-avis-img {
    width: 300px;
    max-height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-top: auto;
}

.services-img{
    width: auto;
    max-height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.carousel-dots-indicators {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-dots-indicators button {
    width: 20px;
    height: 20px;
    border: 2px solid var(--texts);
    border-radius: 50%;
    background-color: var(--bg);
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dots-indicators button.active {
    background-color: var(--Secondary);
}

.carousel-dots-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--Primary);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    z-index: 1000;
    transition: background-color 0.3s ease;
  }
  
  .carousel-dots-arrow:hover {
    background-color: var(--Secondary);
    color: white;
  }
  
  .carousel-dots-arrow.prev {
    left: 10px;
    z-index: 9999;
  }
  
  .carousel-dots-arrow.next {
    right: 10px;
    z-index: 9999;
  }
  
  .carousel-dots-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
  
  

/*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: #eee;
}

.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;
}

/* PAGE SERVICES */
/*SERVICES HERO */
#services-hero {
    background-color: var(--bg);
    padding: 150px 0px 0px 0px;
    position: relative;
}

.container.container-services-hero {
    padding: 0px;
}

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

.services-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 2rem;
    padding: 0px 5%;
}

.services-hero-content h1 {
    font-size: 2em;
    color: var(--Primary);
}

.services-hero-content p {
    font-size: 1em;
    color: var(--Primary);
}

.services-hero-img-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: 100%;
    /* 4 images */
    /*height: auto;*/
    transition: transform 1s ease-in-out;
}

.slider-track img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    flex-shrink: 0;
}

/*SERVICES*/
#services {
    background-color: var(--Primary);
}

.container-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg);
}

.services-card {
    max-height: none;
    justify-content: flex-start;
    align-items: center;
}

.services-CTA {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    position: relative;
}

/* TEMPORAIRE */
.services-CTA a {
    position: relative;
}

.services-CTA a.disabled-btn:hover {
    cursor: not-allowed;
}

.services-CTA a.disabled-btn:hover::after {
    content: "Cette fonctionnalité n'est pas encore disponible";
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--Secondary);
    color: var(--Primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.services-CTA a.disabled-btn:hover::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--Secondary);
    z-index: 1000;
}

/*****************/

.services-dots {
    gap: 1.5rem;
    align-items: center;
}

/*COURS*/
#cours {
    background-color: var(--bg);
    color: var(--Primary);
}

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

.container-cours h2 {
    color: var(--Primary);
}

.services-accordeon-container,
.services-accordeon-wrapper,
.services-accordeon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.services-accordeon-categorie {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: none;
    width: 100%;
    gap: 1rem;
    background-color: var(--Primary);
    transition: background-color 0.3s;
    cursor: pointer;
    padding: 5px;
    border-bottom: 1px solid var(--Secondary);
}

.services-accordeon-first {
    border-radius: 10px 10px 0px 0px;
}

.services-accordeon-last {
    border-radius: 0px 0px 10px 10px;
    border-bottom: none;
}


.services-accordeon-cours-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: var(--bg);
    color: var(--Primary);
}

.services-accordeon-categorie-btn {
    width: 100%;
    cursor: pointer;
    background-color: var(--Primary);
    color: var(--bg);
    font-size: 1.5em;
    padding: 10px;
    border-radius: 10px;
}

.services-accordeon-categorie-btn:hover {
    background-color: rgba(94, 103, 79, 0.9);
}

.services-accordeon-cours-card {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    padding: 20px 0px;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
}


.services-accordeon-cours-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.services-accordeon-cours-card-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    min-height: 100%;
    perspective: 1000px;
}

.services-accordeon-cours-card-img-front,
.services-accordeon-cours-card-img-back {
    backface-visibility: hidden;
    transition: transform 0.8s ease, opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.services-accordeon-cours-card-img-front {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    gap: 1.5rem;
    padding: 20px;
    transform: rotateY(0deg);
    z-index: 2;
    border-radius: 10px;
    border: 1px solid var(--Primary);
    width: 100%;
    min-height: 100%;
}

.services-accordeon-cours-card-img-back {
    border-radius: 10px;
    width: 100%;
    transform: rotateY(180deg);
    z-index: 1;
    opacity: 0;
}

.services-accordeon-cours-card-img.flipped .services-accordeon-cours-card-img-front {
    transform: rotateY(-180deg);
    z-index: 1;
}

.services-accordeon-cours-card-img.flipped .services-accordeon-cours-card-img-back {
    transform: rotateY(0deg);
    opacity: 1;
    z-index: 2;
    transition-delay: 0.4s;
    pointer-events: auto;
}

.services-accordeon-cours-card-content {
    border-radius: 10px;
    border: 1px solid var(--Primary);
    width: 100%;
    padding: 20px;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    background-color: var(--Primary);
    color: var(--bg);
}

.services-accordeon-cours-card-content span{
    font-weight: bolder;
}

.services-accordeon-cours-card-content h3 {
    font-size: 1.5em;
}

/*.services-accordeon-cours-card-img-front-and-img {
    background-image: url(/images/body-building-7451189_1280\ \(1\).jpg);
}*/

.services-accordeon-cours-card-img-front-and-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    z-index: 2;
    border-radius: 10px;
}

.video-cours {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}

.jauge-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 3;
}

.jauge-label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--Primary);
    font-size: 1.8em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.jauge-bar {
    background-color: #eee;
    border-radius: 10px;
    height: 20px;
    width: 250px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--texts);
}

.jauge-fill {
    height: 100%;
    background-color: var(--Primary);
    width: 0;
    border-radius: 10px;
    transition: width 0.6s ease;
}

/*PLANNING*/
#planning {
    background-color: var(--Primary);
    color: var(--bg);
}

.services-planning-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.planning-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 100%;
    background-color: var(--bg);
    color: var(--Primary);
    border-radius: 10px;
    padding: 20px 0px;
}

.planning-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.planning-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    transition: transform 0.3s ease-in-out;
}

.day-column {
    min-width: 100%;
    flex-shrink: 0;
    text-align: center;
    border: 0.5px solid var(--texts);
    display: flex;
    flex-direction: column;
}

.day p {
    font-size: 1.5em;
    font-weight: 600;
}

.time-slot {
    padding: 20px 10px;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 0.5px solid var(--texts);
    border-top: 0.5px solid var(--texts);
}

.type-1 {
    background-color: var(--Primary);
    color: var(--bg);
}

.type-2 {
    background-color: var(--Secondary);
    color: var(--Primary);
}

.type-3 {
    background-color: var(--bg);
    color: var(--Primary);
}

.type-4 {
    background-color: var(--texts);
    color: var(--bg);
}

.type-5 {
    background-color: var(--Tertiary);
    color: var(--Primary);
}

.type-large{
    height: 588px;
}

.type-large-jeudi{
    height: 181px;
}

.type-large-vendredi{
    height: 299px;
}

.type-last-item{
    flex: 1;
}

.cours-delimiter{
    height: 1px;
    width: 100%;
    background-color: var(--Primary);
}

.first-row,
.sec-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.first-row {
    font-size: 1.1em;
}

.sec-row {
    font-size: 1.3em;
    font-weight: bolder;
}

.nav-arrow {
    font-size: 3em;
    color: var(--Primary);
    z-index: 9999;
}

.planning-infos {
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

.planning-horaires {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Responsive widths */
@media (min-width: 768px) {
    .day-column {
        min-width: 50%;
    }

    .planning-wrapper {
        gap: 0.5rem;
        padding: 20px 10px;
    }

}

@media (min-width: 1024px) {
    .day-column {
        min-width: 33.33%;
    }

    .planning-wrapper {
        gap: 1rem;
        padding: 20px;
    }
}

@media (min-width: 1440px) {
    .day-column {
        min-width: 16.667%;
    }
    .slot-time,.slot-duration,.slot-title{
        font-size: 0.75em;
    }
    .planning-viewport{
        align-items: center;
        justify-content: center;
    }
    .planning-container{
        width: 100%;
    }
}

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

.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;
}

.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);
}

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



/*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;
}

/* MEDIA QUERIES */

@media screen and (max-width: 1023px) {

    /* NAVIGATION */
    .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) {

    /* GENERAL */
    h1 {
        font-size: 2.6em;
    }

    h2 {
        font-size: 1.8em;
    }

    /* NAVIGATION */
    /* ACCUEIL HERO */
    /* ACCUEIL INFO */

    /* ACCUEIL SERVICES */
    .card-1 {
        top: 90px;
        z-index: 1;
    }

    .card-2 {
        top: 100px;
        z-index: 2;
    }

    .card-3 {
        top: 111px;
        z-index: 3;
    }

    .card-4 {
        top: 120px;
        z-index: 4;
    }

    /* DECOUVERTE */
    .accueil-decouverte-card {
        width: 80%;
    }

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

    /*AVIS*/

}

@media screen and (min-width: 768px) {

    /* GENERAL */
    h1 {
        font-size: 5em;
    }

    h2 {
        font-size: 2.2em;
    }

    .container {
        padding: 0px 6%;
    }

    /* NAVIGATION */
    .navbar {
        padding: 20px 6%;
    }

    /* ACCUEIL HERO */
    /* ACCUEIL INFO */
    .accueil-info-CTA>* {
        margin: 0px 10px 0px 0px;
    }

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

    /* ACCUEIL SERVICES */
    .card-1 {
        top: 90px;
        z-index: 1;
    }

    .card-2 {
        top: 100px;
        z-index: 2;
    }

    .card-3 {
        top: 111px;
        z-index: 3;
    }

    .card-4 {
        top: 120px;
        z-index: 4;
    }

    .accueil-services-stick-card {
        width: 50%;
    }

    .accueil-services-stick-right,
    .accueil-services-stick-left {
        align-items: center;
    }

    .accueil-services-img {
        width: 50%;
    }

    /*TEAM*/
    .team-text {
        padding: 0px 40px;
    }

    /*AVIS*/
    .carousel-dots-card {
        flex-direction: row;
    }

    /*PAGE SERVICES */
    /*SERVICES HERO */
    #services-hero {
        padding: 87px 0px 0px 0px;
    }

    .container-services-hero {
        flex-direction: row;
        margin-top: 40px;
    }

    .services-hero-content {
        text-align: left;
        gap: 0;
    }

    .services-hero-content h1 {
        font-size: 2.5em;
    }

    .services-hero-content {
        padding: 0px 0px 0px 6%;
    }

    .services-hero-img-slider {
        width: 75%;
    }

    /*CONTACT*/
    .row-form {
        flex-direction: row;
    }

    .form-wrapper {
        padding: 50px;
    }
    .line-item-group {
        display: flex;
        animation: scroll-left linear infinite;
        animation-duration: 15s !important;
    }
}

@media screen and (min-width: 1024px) {

    /* GENERAL */
    h1 {
        font-size: 8em;
    }

    h2 {
        font-size: 2.3em;
    }

    .container {
        padding: 0px 6%;
    }

    /* NAVIGATION */
    .CTA-mobile {
        display: none;
    }

    .navbar-CTA {
        display: block;
    }

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

    .navbar {
        padding: 20px 6%;
    }

    /* ACCUEIL HERO */
    /* ACCUEIL INFO */
    .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-center {
        transform: translateY(-30%);
        z-index: 1;
    }

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

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

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

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

    /* ACCUEIL BANDEAU */
    .line-item {
        line-height: 100px;
    }

    .line-item p {
        font-size: 3.5em;
    }

    .line-item h2 {
        font-size: 5em;
    }

    .container-lines {
        gap: 0rem;
    }

    /* ACCUEIL SERVICES */
    .accueil-services-stick-left {
        position: sticky;
        top: 120px;
    }

    .accueil-services-img {
        height: auto;
        width: 100%;
    }

    .card-1 {
        top: 120px;
        z-index: 1;
    }

    .card-2 {
        top: 130px;
        z-index: 2;
    }

    .card-3 {
        top: 140px;
        z-index: 3;
    }

    .card-4 {
        top: 150px;
        z-index: 4;
    }

    .accueil-services-stick-card {
        width: 80%;
        height: auto;
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        padding-bottom: 80px;
    }

    .accueil-services-stick-left {
        align-items: center;
    }

    .accueil-services-container-stick {
        flex-direction: row;
    }

    .accueil-services-stick-right {
        height: 2600px;
        align-items: flex-end;
    }

    .para-small {
        font-size: 0.9em;
    }

    .accueil-services-stick-content h3 {
        font-size: 2em;
    }

    .accueil-services-stick-content p {
        font-size: 1.2em;
    }

    /* DECOUVERTE */
    .accueil-decouverte-card {
        width: 100%;
    }

    .accueil-decouverte-container-row {
        flex-direction: row;
    }

    .accueil-decouverte-container-row-up .accueil-decouverte-card {
        min-height: 600px;
    }

    .accueil-decouverte-container-row-bottom .accueil-decouverte-card {
        min-height: 290px;
    }

    .accueil-decouverte-header {
        padding: 0px 150px;
    }

    /* NOMBRES CLES */
    .container-nombres-cles {
        flex-direction: row;
    }

    .nombres-card p {
        font-size: 0.9em;
    }

    .nombres-card .nombre-lg {
        font-size: 2em;
        font-weight: bolder;
    }

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

    /*TEAM*/
    .team-text {
        padding: 0px 60px;
    }

    /*AVIS*/
    .medium-icon {
        width: 60px;
        height: auto;
    }

    .carousel-dots-card-content h3 {
        font-size: 2em;
    }

    .carousel-dots-card {
        max-height: 650px;
    }

    .carousel-dots-card-img,
    .accueil-avis-img {
        width: 400px;
        }

    .carousel-dots-card-img,
    .services-img {
        max-height: 600px;
        width: auto;
        }
    /*PARTENAIRES */
    .partenaires-wrapper {
        flex-direction: row;
    }

    /*FOOTER*/
    .container-footer {
        flex-direction: row;
    }

    /*PAGE SERVICES */
    /*SERVICES HERO */
    #services-hero {
        padding: 94px 0px 0px 0px;
    }

    .services-hero-content h1 {
        font-size: 3.3em;
    }

    .services-hero-content {
        width: 100%;
        padding: 0px 6%;
    }

    /*SERVICES*/
    .services-card {
        max-height: none;
        align-items: center;
    }

    .services-dots {
        align-items: flex-start;
    }

    /*COURS */
    .services-accordeon-cours-card {
        flex-direction: row;
    }

    .services-accordeon-cours-card-img-front {
        padding: 40px;
    }

    .jauge-bar {
        width: 350px;
    }

    .services-accordeon-cours-card {
        padding: 20px 0px;
    }

    .services-accordeon-cours-card-img,
    .services-accordeon-cours-card-content {
        flex: 1 1 0;
    }

    /*CONTACT*/
    .row-form {
        flex-direction: row;
    }

    .form-wrapper {
        padding: 50px 100px;
    }
    .line-item-group {
        display: flex;
        animation: scroll-left linear infinite;
        animation-duration: 20s !important;
    }
}

@media screen and (min-width: 1440px) {

    /* GENERAL */
    h1 {
        font-size: 10em;
    }

    h2 {
        font-size: 2.5em;
    }

    .container {
        padding: 0px 8%;
    }

    .navbar {
        padding: 0px 8%;
    }

    /* NAVIGATION */
    /* ACCUEIL HERO */
    /* ACCUEIL INFO */
    .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-center {
        transform: translateY(-30%);
        z-index: 1;
    }

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

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

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

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

    /* ACCUEIL BANDEAU */
    .line-item {
        line-height: 120px;
    }

    .line-item p {
        font-size: 4em;
    }

    .line-item h2 {
        font-size: 6em;
    }

    .container-lines {
        gap: 0rem;
    }

    /* ACCUEIL SERVICES */
    .accueil-services-stick-card {
        width: 60%;
    }

    /* DECOUVERTE */
    .accueil-decouverte-container-row-up .accueil-decouverte-card {
        min-height: 420px;
    }

    .accueil-decouverte-container-row-bottom .accueil-decouverte-card {
        min-height: 250px;
    }

    .accueil-decouverte-header {
        padding: 0px 250px;
    }

    /* NOMBRES CLES */
    .nombres-card p {
        font-size: 1.1em;
    }

    .nombres-card .nombre-lg {
        font-size: 3em;
        font-weight: bolder;
    }

    /* TARIFS */
    /*.tarifs{
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }*/
    .accueil-tarifs-header {
        padding: 0px 120px;
    }

    /*TEAM*/
    .team-text {
        padding: 0px 80px;
    }

    /*AVIS*/
    .medium-icon {
        width: 80px;
        height: auto;
    }

    .carousel-dots-card-content h3 {
        font-size: 2.5em;
    }

    .carousel-dots-card {
        max-height: 650px;
    }

    .carousel-dots-card-img,
    .accueil-avis-img {
        width: 600px;
        }

    .carousel-dots-card-img,
    .services-img {
        max-height: 600px;
        width: auto;
        }

    .carousel-dots-card-img {
        max-width: 40%;
    }

    /*PAGE SERVICES */
    /*SERVICES HERO */
    #services-hero {
        padding: 94px 0px 0px 0px;
    }

    .services-hero-content h1 {
        font-size: 4.5em;
    }

    .services-hero-content p {
        font-size: 1.4em;
    }

    .services-hero-content {
        width: 100%;
        padding: 0px 8%;
    }
    .container-services-hero {
        flex-direction: row;
        margin-top: 0px;
    }
}

/* CSS spécifique aux mentions légales */
.mentions-section {
    margin-bottom: 2rem;
    text-align: left;
}

.mentions-section h3 {
    color: var(--Primary);
    font-size: 1.3em;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--Primary);
    padding-bottom: 0.5rem;
}

.mentions-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mentions-section a {
    color: var(--Primary);
    text-decoration: underline;
}

.mentions-section a:hover {
    opacity: 0.8;
}

.mentions-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--Primary);
}

.mentions-footer p {
    font-style: italic;
    color: var(--Primary);
}

/* Responsive */
@media (min-width: 768px) {
    .row-form {
        flex-direction: row;
    }
    
    .form-item {
        flex: 1;
    }
}