
:root {

    /* Couleurs */
    --color-white: #fff;
    --color-black: #1A1B1D;
    --color-grey: #C0C0C0;
    --color-primary: #D18D58;
    --color-secondary: #6c757d;

}

/******************/
/** Styles Reset **/
/******************/

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

h1, h2, h3, h4, h5, h6 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

ul, ol {
    list-style: none;
    padding-left: 0;
}

button {
    background: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn {
    display: inline-flex;
    gap: 8px;

    text-decoration: none;
    padding: 11px 20px 7px 20px;
    font-size: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    transition: ease-in-out .15s;

    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 48px;

    overflow: hidden;
}

.btn span:nth-child(1) {
    display: none;
    text-wrap: nowrap;
}

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

.btn--secondary {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn:hover {
    color: var(--color-white);
    width: 150px;
}

.btn:hover span:nth-child(1) {
    display: block;
}

@media all and (max-width: 1024px) {
    .btn {
        font-size: 20px;
    }
    .btn:hover{
        width: 130px;
    }
}

@media all and (max-width: 768px) {
    .btn {
        font-size: 18px;
    }
}

@media all and (max-width: 600px) {
    .btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn span:nth-child(1) {
        display: block;
    }

    .btn:hover {
        width: 100%;
    }
}

main ul {
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

main ul li {
    width: 100%;
    padding-left: 30px;
}


:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

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

@media all and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
}

@media all and (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

html, body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;

    /*overflow-x: hidden;*/
}

body.no-scroll {
    overflow: hidden;
}

strong {
    letter-spacing: .5px;
}


.h1-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* -------------------- Default section -------------------- */

.section {
}

.section .container {
}

.section .section__header {
    margin: 0 0 20px 0;
}

.section .section__title {
    font-size: 40px;
    line-height: 1.3;
    text-transform: uppercase;
}

.section .section__subtitle {
    color: var(--color-primary);
    font-size: 22px;
    letter-spacing: .5px;
    margin: 30px 0 0 0;
}

.section .section__text {
    font-size: 18px;
    line-height: 1.6;
}

.section .section__text a {
    color: var(--color-black);
    text-decoration: none;
}

.section .section__text a:hover {
    text-decoration: underline;
}

.section .section__content {
}

.section .section__footer {
    margin: 40px 0 0 0;
}

.section .section__image {
    max-width: 100%;
}

.section .section__image img {
    max-width: 100%;
}

@media all and (max-width: 1024px) {

    .section .section__title {
        font-size: 32px;
    }

    .section .section__subtitle {
        font-size: 20px;
    }

    .section .section__text {
        font-size: 16px;
    }

    .section .section__text p br {
        display: none;
    }

    ul li br {
        display: none;
    }
}

@media all and (max-width: 768px) {
    .section .section__title {
        font-size: 28px;
    }

    .section .section__subtitle {
        font-size: 18px;
    }
}

/* -------------------- page-header -------------------- */
.navigation {
    padding: 40px 0 45px 0;
}

.navigation .row--top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 45px 0;
}

.navigation .row--bottom {
    width: 100%;
}

.navigation .row--bottom ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation .row--bottom ul a {
    font-size: 23px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    color: var(--color-black);
}

.navigation .row--bottom ul a:hover {
    text-decoration: underline;
}

.navigation .row--bottom .btn {
    width: auto;
    color: var(--color-white);
}
.navigation .row--bottom .btn:hover {
    text-decoration: none;
    background: var(--color-black);
}
.navigation .btn--menu {
    display: none;
}

@media all and (max-width: 1024px) {
    .page {
        margin-top:80px;
    }
    .navigation {
        position: fixed;
        top:0;
        left:0;
        width: 100%;
        z-index: 9000;
        background: var(--color-white);
        transition: ease-in-out .25s;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        padding: 0;
    }
    .navigation .row--top {
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
    }
    .navigation .block--logo img {
        max-height: 50px;
    }
    .navigation .row--bottom {
        display: none;
    }

    .navigation .btn--menu {
        width: 40px;
        height: 40px;
        background: 0 0;
        padding: 0;
        cursor: pointer;
        border: none;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        flex-direction: row;
    }

    .navigation .btn--menu .bar {
        width: 100%;
        height: 3px;
        position: absolute;
        top: 0;
        left: 0;
        background: var(--color-black);
        border-radius: 3px;
        transition: linear .15s;
    }

    .navigation .btn--menu .bar:nth-child(2) {
        top: 9px;
    }

    .navigation .btn--menu .bar:nth-child(3) {
        top: 18px;
    }

    .navigation .btn--menu .btn__title {
        font-size: 10px;
        text-transform: uppercase;
        width: 100%;
        text-align: center;
        line-height: 1.5;
        font-weight: 400;
        color: var(--color-black);
        display: block;
    }
}


/* -------------------- Modal Navigation -------------------- */


.modal--menu {
    position: fixed;
    inset: 0;
    display: grid;
    grid-template-rows: 90px 1fr;
    background: var(--color-white);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px);
}

.modal--menu.is-open {
    z-index: 9999;
    opacity: 1;
    pointer-events: initial;
    visibility: visible;
    transform: translateY(0);
}

/* Supprime les animations pour les utilisateurs qui préfèrent une expérience sans mouvements */
@media (prefers-reduced-motion: reduce) {
    .modal--menu,
    .modal--menu.is-open {
        transition: none;
        transform: none;
    }
}

/* Modal Header */

.modal--menu .modal__header {
    width: 100%;
    height: 90px;

}

.modal--menu .modal__header .modal__logo {
    display: block;
}

.modal--menu .modal__header .modal__logo img {
}

.modal--menu .modal__header .row--top .block--responsive {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.modal--menu .modal__header .btn--close {
    width: 40px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: row;
    background: none;
    padding: 0;
    cursor: pointer;
    border: none;
}

.modal--menu .modal__header .btn--close .bar {
    width: 100%;
    height: 3px;
    background: var(--color-black);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    transition: linear .15s;
}

.modal--menu .modal__header .btn--close .bar:nth-child(1) {
    transform: translate(0%, 12px) rotate(45deg);
}

.modal--menu .modal__header .btn--close .bar:nth-child(2) {
    transform: translate(0%, 12px) rotate(-45deg);
}

.modal--menu .modal__header .btn--close .btn__title {
    width: 100%;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-black);
}

.modal--menu .modal__header .btn--close:hover .bar {
    background: var(--color-primary);
}

/* Content of the modal */

.modal--menu .modal__content {
    width: 100%;
    padding: calc(90px + 50px) 0 50px 0;
    overflow-y: auto;
    height: 100vh;
}

.modal--menu .modal__content .modal__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px 0;
    flex-shrink: 0;
}

.modal--menu .modal__content .modal__list li {
    width: 100%;
    text-align: center;
    padding-left: 0;
}

.modal--menu .modal__content .modal__list li::before {
    display: none;
}

.modal--menu .modal__content .modal__list li a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 18px;
    line-height: 1.75;
    text-transform: uppercase;
    transition: ease-in-out .15s;
}

.modal--menu .modal__content .modal__list li .btn:hover {
    color: var(--color-white);
}

.modal--menu .modal__content .modal__list li .btn {
    min-width: 250px;
    width: auto;
    text-align: center;
    margin: 8px auto;

    display: inline-block;
    color: var(--color-white);
}


@media all and (max-width: 600px) {
    .modal--menu .modal__content .modal__list li .btn {
        width: calc(100% - 32px);
    }
}


/* -------------------- block-image--header -------------------- */

.block-image--header {
}

.block-image--header .image {
    width: 100%;
}

.block-image--header .image img {
    width: 100%;
    aspect-ratio: 1120 / 594;
    object-fit: cover;
    display: block;
}

/* -------------------- Contact / Tarifs -------------------- */

.section--block-club {
    padding: 76px 0;
    display: flex;
    justify-content: space-between;
}

.section--block-club .container {
    display: flex;
    justify-content: space-between;
}

.section--block-club .section__column {
    width: calc(50% - 45px);
}

.section--block-club .clubs-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.section--block-club .clubs-slider__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section--block-club .clubs-slider__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.section--block-club .clubs-slider__slide.is-active {
    opacity: 1;
    position: relative;
}

.section--block-club .clubs-slider__slide img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.section--block-club .clubs-slider__controls {
    position: absolute;
    bottom: 0;
    right: calc(100% + 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.section--block-club .clubs-slider__btn {
    background: var(--color-black);
    color: #fff;
    border: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: ease-in-out .15s;
}

.section--block-club .clubs-slider__btn svg {
}

.section--block-club .clubs-slider__btn svg * {
    fill: var(--color-white);
    transition: ease-in-out .15s;
}

.section--block-club .clubs-slider__btn--prev {
    transform-origin: center center;
    transform: rotate(90deg);
}

.section--block-club .clubs-slider__btn--next {
    transform-origin: center center;
    transform: rotate(-90deg);
}

.section--block-club .clubs-slider__btn:hover {
    background: var(--color-primary);
}

@media all and (max-width: 1475px) {
    .section--block-club-reverse .clubs-slider__controls,
    .section--block-club .clubs-slider__controls {
        right: initial !important;
        left: 0 !important;
        bottom:initial !important;
        top: calc(100% + 16px) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        width: 100%;
    }

    .section--block-club .clubs-slider__btn--next {
        transform: rotate(180deg);
    }

    .section--block-club .clubs-slider__btn--prev {
        transform: rotate(0);
    }
}

@media all and (max-width: 1100px) {
    .section--block-club .section__column {
        width: calc(50% - 16px);
    }
}

@media all and (max-width: 1024px) {
    .section--block-club{
        flex-direction: column;
        gap:100px;
        padding: 50px 0 0 0;
    }
    .section--block-club-reverse ,
    .section--block-club .container {
        flex-direction: column-reverse;
        gap:80px;
    }

    .section--block-club .section__column {
        width: 100%;
    }

    .section--block-club .clubs-slider {
        aspect-ratio: 16 / 9;
        height: auto;
    }
    .section--block-club .clubs-slider__controls {
        gap:10px;
    }
    .section--block-club .clubs-slider__btn{
        width: 38px;
        height: 38px;
    }
    .section--block-club .clubs-slider__btn svg {
        width: 12px;
    }
}

/* -------------------- Contact / Tarifs -------------------- */
.section--rows {
    padding: 68px 0;
}

.section--rows::before {
    content: '';
    width: 50%;
    height: 100%;
    background: #80573F;
    position: absolute;
    top: 0;
    right: 50%;
    z-index: -1;
}

.section--rows::after {
    content: '';
    width: 50%;
    height: 100%;
    background: var(--color-black);
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
}

.section--rows .container {
    display: flex;
    justify-content: space-between;
}

.section--rows .section__column {
    width: calc(50% - 45px);
}


.section--rows .section--contact {
}

.section--rows .section--contact .section__header {
}

.section--rows .section--contact .section__header .section__title {
    color: var(--color-white);
}

.section--rows .section--contact .section__text {
    color: var(--color-white);
}

.section--rows .section--contact .btn {
    background: var(--color-black);
}

.section--rows .section--tarifs {
}

.section--rows .section--tarifs .section__header {
}

.section--rows .section--tarifs .section__header .section__title {
    color: var(--color-white);
}

.section--rows .section--tarifs .section__text {
    color: var(--color-white);
}

.section--rows .section--tarifs .btn {

}

@media all and (max-width: 1024px) {
    .section--rows {
        padding: 50px 0;
    }

    .section--rows::before {
        width: 100%;
        height: 50%;
        top: 0;
        right: 0;
    }

    .section--rows::after {
        width: 100%;
        height: 50%;
        top: initial;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .section--rows .container {
        flex-direction: column;
        gap: 100px;
    }

    .section--rows .section__column {
        width: 100%;
    }

    .section--rows .section--contact {
        width: 100%;
    }

    .section--rows .section--tarifs {
        width: 100%;
    }
}

/* -------------------- block-image--footer  -------------------- */
.block-image--footer {
    width: 100%;
}

.block-image--footer .image {
    width: 100%;
}

.block-image--footer .image img {
    width: 100%;
    aspect-ratio: 1920 / 609;
    object-fit: cover;
    display: block;
}

/* -------------------- Breadcrumb -------------------- */
.breadcrumb {
    margin: 32px 0 64px 0;
}

.breadcrumb .container {
}

.breadcrumb .breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 3px;
}

.breadcrumb .breadcrumb__list__item {
    display: inline-flex;
    align-items: center;
    font-size: clamp(10px, 2vw, 12px);
}

.breadcrumb .breadcrumb__list__item:not(:last-child)::after {
    content: '/';
    margin: 0 0 0 3px;
    font-size: clamp(10px, 2vw, 12px);
}

.breadcrumb .breadcrumb__list__link {
    color: var(--color-black);
    text-decoration: none;
    transition: color .15s linear, text-decoration-color .15s linear;
}

.breadcrumb .breadcrumb__list__link:hover,
.breadcrumb .breadcrumb__list__link:focus-visible {
    text-decoration: underline;
    color: var(--color-primary);
}

.breadcrumb .breadcrumb__list__item [aria-current="page"],
.breadcrumb .breadcrumb__list__item[aria-current="page"] span {
}

@media all and (max-width: 1024px) {
    .breadcrumb {
        margin: 16px 0 32px 0;
    }

}


/* -------------------- page-footer -------------------- */
.page-footer {
    padding: 24px 0;
}

.page-footer .container {
    display: flex;
    justify-content: space-between;
}

.page-footer .page-footer__list {
    width: calc(100% - 100px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-footer .page-footer__list a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 15px;
    transition: linear .15s;
}

.page-footer .page-footer__list a:hover {
    text-decoration: underline;
}

.page-footer .page-footer__networks {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}

.page-footer .page-footer__networks .social {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    transition: linear .15s;
}

.page-footer .page-footer__networks .social svg {
}

.page-footer .page-footer__networks .social svg * {
    fill: var(--color-white);
}

.page-footer .page-footer__networks .social--facebook svg {
    width: 16px;
}

.page-footer .page-footer__networks .social--instagram svg {
    width: 16px;
}

.page-footer .page-footer__networks .social:hover {
    background: var(--color-black);
}

@media all and (max-width: 1024Px) {
    .page-footer .container {
        flex-direction: column;
        gap: 20px;
    }

    .page-footer .page-footer__list {
        flex-direction: column;
        width: 100%;
    }

    .page-footer .page-footer__list a {
        width: 100%;
        text-align: center;
        line-height: 40px;
    }
    .page-footer .page-footer__networks{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* -------------------- Section Error404  -------------------- */

.section--error {
    margin-bottom: 200px;
}

.section--error .section__title {
    width: 100%;
    text-align: center;
}

.section--error .section__text {
    width: 100%;
    text-align: center;
}

.section--error .section__footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section--error .section__footer .btn{
    width: auto;
}

@media all and (max-width: 1024px) {
    .error404 main {
        padding: 90px 0 0 0;
    }
}


/* -------------------- Section Error404  -------------------- */

.top-icones {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    position: fixed;
    top:265px;
    right: 0;
    z-index: 999;

}

.top-icones .social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    transition: linear .15s;
}

.top-icones .social svg {
}

.top-icones .social svg * {
    fill: var(--color-white);
    transition: linear .15s;
}

.top-icones .social--facebook{
    background:var(--color-black);
}
.top-icones .social--facebook svg {
    width: 24px;
}

.top-icones .social--instagram{
    background:#80573F;
}
.top-icones .social--instagram svg {
    width: 26px;
}

.top-icones .social--seance svg {
    width: 20px;
}

.top-icones .social:hover {
    background: var(--color-white);
}
.top-icones .social:hover svg *{
    fill: var(--color-primary);
}

@media all and (max-width: 768px) {
    .top-icones{
        display: none;
    }
}
