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

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    font-size: 1.1111111111111112vw;
    color: #fff;
}

h1 {
    font-size: 3.4375em;
    font-family: Rubik Dirt, system-ui;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;  
}

.h1 {
    font-size: 3.4375em;
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal;  
}


h2 {
    font-size: 2.8125em;
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal; 
}   

.h2 {
    font-size: 2.8125em;
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal; 
}

h3 {
    font-size: 2.125em;
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal; 
}

.h3 {
    font-size: 2.125em;
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal; 
}

h4 {
    font-size: 1.75em;
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal; 
}

.h4 {
    font-size: 1.75em;
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    text-transform: uppercase;
    font-style: normal; 
}

h5 {
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    font-size: 1.5em;
    color: #EFEFEF;
}

p {
    font-size: 1.3125em;
    font-family: "DM Sans", system-ui;
    font-weight: 300;
    font-style: normal;
    line-height: 140%;
    letter-spacing: 0em;
}

.p-large {
    font-size: 1.5em;
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    font-style: normal; 
    text-transform: uppercase;
    line-height: 1;
}

a {
    text-decoration: none;
    color: inherit;
}


section {
    width: 100%;
    padding: 8em 0;
    position: relative;
}

.c {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4em;
}

.flexbox-v {
    display: flex;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4em;
}

.flexbox-h {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.block {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.gap-2 {
    gap: 2em;
}

.w-60 {
    max-width: 60%;
}

.w-80 {
    max-width: 80%;
}

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

.is-right {
    margin-left: auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #000;
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
}

.menu-toggle-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000;
    list-style: none;
    gap: 1.875em;
    text-align: center;
    right: 0;
    top: 5.125em;
    width: 90vw;
    max-width: 500px;
    min-height: 400px;
    padding: 0 3em;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    border-bottom-left-radius: 30px;
    z-index: 999;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out, opacity 0.3s ease-out, visibility 0s linear 0.5s;
}

.menu-toggle-content.active {
    max-height: 1000px;
    padding: 3em;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out, opacity 0.3s ease-out, visibility 0s;
}

.menu-toggle-content li {
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.menu-toggle-content.active li {
    opacity: 1;
    transform: translateX(0);
}

.menu-toggle-content.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-toggle-content.active li:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-toggle-content.active li:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-toggle-content.active li:nth-child(4) {
    transition-delay: 0.4s;
}

/* Animation de fermeture en stagger (ordre inverse) */
.menu-toggle-content:not(.active) button {
    transition-delay: 0s;
}

.menu-toggle-content:not(.active) li:nth-child(4) {
    transition-delay: 0.05s;
}

.menu-toggle-content:not(.active) li:nth-child(3) {
    transition-delay: 0.1s;
}

.menu-toggle-content:not(.active) li:nth-child(2) {
    transition-delay: 0.15s;
}

.menu-toggle-content:not(.active) li:nth-child(1) {
    transition-delay: 0.2s;
}

.menu-toggle-content button {
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    transition-delay: 0.5s;
}

.menu-toggle-content.active button {
    opacity: 1;
    transform: translateX(0);
}

.navbar_list_mobile {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.875em;
}

.menu-toggle-content a {
    text-decoration: none;
    color: #FFC000;
    font-family: "DM Sans", system-ui;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875em;
    line-height: 140%;
    letter-spacing: 0em;
}

.navbar_wrapper {
    width: 100%;
    height: 5.125em;
    padding: 0 1.875em;
}

.navbar {
    position: relative;
    top: 0;
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.navbar_list {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 1.875em;
    margin-left : auto;
    margin-right: 1.875em;
    text-align: center;
}

.navbar_list a {
    text-decoration: none;
    color: #FFC000;
    font-family: "DM Sans", system-ui;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875em;
    line-height: 140%;
    letter-spacing: 0em;
}

button {
    background-image: url('images/reservation.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font-family: "DM Sans", system-ui;
    color: #000;
    outline: none;
    cursor: pointer;
    width: 12.5em;
    height: 3.125em;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
    font-family: "DM Sans", system-ui;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.875em;
    letter-spacing: 0em;
}

button.button_discover {
    background-image: url('images/ddcouvrir.svg');
    width: 13.9375em;
    height: 3.125em;
}

button.button_infos {
    background-image: url('images/infos.svg');
    width: 11.25em;
    height: 3.125em;
}

button.button_send {
    background-image: url('images/reservation-black.svg');
    width: 11.0625em;
    height: 3.125em;
    color:#F8AE31
}


section.hero {
    height: 100svh;
    margin-top: -5.125em;
    padding-top: 5.125em;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

section.hero_content_paragraph_section {
    padding-top: 2em;
    padding-bottom: 8em;
}

.hero_content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    align-items:flex-end;
    gap: 1.875em;
    height: 100%;
    overflow: hidden;
}

.hero_content_wrapper {
    display: flex;
    flex-direction: column;
    gap: 4em;
    width: 100%;
    height: 100%;
    max-width:1440px;
    margin: 0 auto;
    padding: 0 4em;
    flex-shrink: 3;
}

.hero_image {
    width: 100%;
    height:100%;
    flex-grow:3;
    object-fit: cover;
    object-position: center;
}

.hero_content_title {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: left;
    gap: 9em;
}

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

.p-large_green {
    color: #BBFF00;
}

.hero_content_date_text {
    text-align: right;
}

.hero_content_paragraph {
    width: auto;
    margin-left: 28.3em;

}

.activity_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 4em;
}

.activity_wrapper.hero {
    height: 100%;
    justify-content: end;
    padding-bottom: 8em;


}

.activity_card_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
}

.activity_swiper {
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}

.activity_swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    transition-timing-function: linear !important;
}

.activity_swiper .swiper-slide {
    height: auto;
    display: flex;
    width: auto;
}

.activity_swiper .activity_card {
    width: 100%;
    min-width: 250px;
}

.activity_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    width: 100%;
}

.activity_card_title {
    font-size: 1.125em;
    font-weight: 900;
}

.activity_mask {
    height: 20em;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    /* pour Safari (préfixes) */
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    overflow: hidden;
  }
  .activity_mask_1 {
    mask-image: url("images/mask-1.svg");
  }
  .activity_mask_2 {
    mask-image: url("images/mask-2.svg");
  }
  .activity_mask_3 {
    mask-image: url("images/mask-3.svg");
  }
  .activity_mask_4 {
    mask-image: url("images/mask-4.svg");
  }

  .activity_mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }


 .activity_title {
    text-align: center;
 }

.activity_button_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

section:has(.slider_wrapper) {
    overflow: hidden;
}

.slider_wrapper {
    width: 100vw;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
}

.slider_wrapper .swiper {
    width: 100vw;
    padding-bottom: 3em;
}

.slider_wrapper .swiper-wrapper {
    width: 100vw;
}

.slider_wrapper .swiper-slide {
    width: 100vw !important;
    text-align: center;
    font-size: 1.125em;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34em;
}

.slider_wrapper .swiper-slide img {
    display: block;
    width: 100vw;
    height: 100%;
    object-fit: cover;
}

.slider_wrapper .swiper-pagination-bullet {
    position: relative;
    background-color: #FFC000;
}

.slider_wrapper .swiper-button-next,
.slider_wrapper .swiper-button-prev {
    color: #FFC000;
}

.review_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 4em;
}

.review_slider_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    position: relative;
}

.review_swiper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.review_swiper .swiper-wrapper {
    align-items: center;
}

.review_swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.review_card {
    background-image: url('images/review-card.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    aspect-ratio: 304 / 380;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 2em;

}

.review_card_image {
    width: 3em;
    object-fit: cover;
    object-position: center;
}

.review_card_content_text {
    font-family: "Rubik Dirt", system-ui;
    font-size: 1.125em;
    color: #000;
    line-height: 1;
}

.review-button-prev,
.review-button-next {
    position: relative;
    width: 3em !important;
    height: 3em !important;
    margin: 0 0.5em;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.review-button-prev-image,
.review-button-next-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
}

.review-button-prev::after,
.review-button-next::after {
    font-size: 1.2em;
    font-weight: bold;
    color: #000;
}

.review-button-prev.swiper-button-disabled,
.review-button-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.review_slider_wrapper .swiper-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
    width: 10em;
    gap: 2em;
    position: relative;
}

.cta_button_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
}

footer {
    background-color: #F8AE31;
}

.footer_wrapper {
    display: grid;
    column-gap: 8em;
    row-gap: 2em;

    color: #000;
}


.footer_wrapper h2 {
    grid-column: 2;
}

.footer_wrapper > p {
    grid-column: 2;
}

.footer_wrapper .contact_info_wrapper {
    grid-column: 1;
    grid-row: 2 / 4;
}

.footer_wrapper .footer-form__wrapper {
    grid-column: 2;
    grid-row: 3/5;
}

.footer_wrapper .footer-legal {
    grid-column: 1;
    grid-row: 4;
    font-weight: 300;
    font-family: "DM Sans", system-ui;
    font-size: 0.875em;
}

.footer_section {
    padding-top: 4em;
    padding-bottom: 2em;
}


.contact_info_wrapper {
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-family: "Rubik Dirt", system-ui;
    font-size: 1.5em;
    text-transform: uppercase;
    text-align: right;
}

.contact_info_text {
    font-size: inherit;
    font-family: inherit;
}


.footer-form__wrapper {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

input { 
    background-color: rgba(217, 217, 217, 0.5);
    border-radius: 1em;
    height: 3.125em;
    border: none;
    padding: 0 1em;
    font-family: "DM Sans", system-ui;
    font-size: 1em;
}
input:focus {
    outline: none;
    background-color: rgba(217, 217, 217, 0.6);
    box-shadow: 0 0 0 2px #0000002c;
}
 
textarea { 
    background-color: rgba(217, 217, 217, 0.5);
    border-radius: 1em;
    min-height: 10em;
    border: none;
    padding: 1em;
    font-family: "DM Sans", system-ui;
    font-size: 1em;
}

textarea:focus {
    outline: none;
    background-color: rgba(217, 217, 217, 0.6);
    box-shadow: 0 0 0 2px #0000002c;
}
.footer-form__wrapper button {
    align-self: flex-end;
}


.footer-legal {
    display: flex;
    flex-direction: column;
    text-align: right;
}


/* Activités */

.activity_card_secondary {
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 44.44%;
}

.activity_card_secondary_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 2em;
}

.activity_mask_secondary {
    width: 100%;
    height: auto;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    /* pour Safari (préfixes) */
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    overflow: hidden;
    position: relative;
}

.activity_mask_secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.activity_mask_secondary_1 {
    mask-image: url("images/activity-1.svg");
    -webkit-mask-image: url("images/activity-1.svg");
}

.activity_card_secondary_text {
    font-size: 1.5em;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: "Rubik Dirt", system-ui;
    color: #ffffffdd;
    font-size: 1.3125em;
    padding-left: 1em;
    list-style: none;
}

.list li::before {
    content: "•";
    color: #ffffffdd;
    margin-right: 0.5em;
    font-size: 1.3125em;
    vertical-align: middle;
    line-height: 1;
    display: inline-block;
}

/* Infos */

.infos_wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    padding-right: 4em;
    margin: 0 auto;
    align-items: center;
}

.infos_image-hero {
    max-width: 65%;
    object-fit: contain;
    object-position: center;
}

.infos_content {
    width: 100%;
    padding-top: 8em;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

/* FAQ */
.faq_wrapper {
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 100%;
}

.faq_card {
    width: 100%;
}

.faq_card_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.faq_card_content_button {
    cursor: pointer;
    user-select: none;
    font-family: "Rubik Dirt", system-ui;
    font-size: 2em;
    line-height: 1;
    transition: transform 0.5s ease;
}

.faq_card_content_answer {
    height: 0;
    overflow: hidden;
    transition: height 0.2s ease-out;
}

.faq_card_content_answer.active {
    transition: height 0.2s ease-out;
}

.faq_card_content_button.active {
    transform:rotateZ(180deg);
}




@media screen and (min-width:1440px) {
    body {font-size: 16px;}
   }


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

    body {
        font-size: 16px;
    }
    section {
        padding: 4em 0;
    }

    section.hero {
        padding-bottom: 2em;
    }
    section.hero_content_paragraph_section {
        padding-top: 0em;
        padding-bottom: 4em;
    }

    .c {
        padding: 0 2em;
    }

    .w-60 {
        max-width: 100%;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .navbar_list {
        display: none;
    }

    .navbar button {
        display: none;
    }

    .hero_content_wrapper {
        padding: 0 2em;
    }

    .hero_content_title {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 2em;
    }

    .hero_content_title_date {
        align-items: flex-start;
        justify-content: center;
        gap: 1em;
    }

    .hero_content_date_text {
        text-align: left;
    }

    .hero_content_paragraph {
        margin-left: 0;
    }

    .review_card {
        max-width: 66%;
    }

    .activity_wrapper.hero {
        padding-bottom: 4em;
    }
    .activity_card_secondary {
        width: 60%;
    }

    
    .infos_wrapper {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        padding: 0 2em;
    }

    .infos_image-hero {
        max-width: 100%;
        width: auto;
        object-fit: contain;
        object-position: center;
        grid-row: 1;
        height: 100%;
        min-height: 0;
    }

    .infos_content {
        padding-top: 0;
        grid-row: 2;
        gap: 1em;
    }

    .flexbox-h {
        flex-direction: column;
        gap: 8em;
    }

    .hero {
        padding-bottom: 4em;
    }

    .footer_wrapper {
        column-gap: 4em;
    }

   }

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

    h1 {
        font-size: 34px;
    }
    
    .h1 {
        font-size: 34px;
    }
    
    
    h2 {
        font-size: 28px;
    }   
    
    .h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    .h3 {
        font-size: 24px;
    }
    
    h4 {
        font-size: 20px;
    }
    
    .h4 {
        font-size: 20px;
    }
    
    h5 {
        font-size: 18px;
    }
    
    p {
        font-size: 18px;
    }
    
    .p-large {
        font-size: 1em;
    }
    
    
    .c {
        padding: 0 1em;
    }

    .hero_content_wrapper {
        padding: 0 1em;
    }

    .review_card {
        max-width: 50%;
    }

    .footer_wrapper {
        grid-template-columns: 1fr; /* Une seule colonne */
    }

    .footer_wrapper h2 {
        grid-column: 1; /* Première colonne */
        grid-row: 1; /* Première ligne */
    }

    .footer_wrapper > p {
        grid-column: 1; /* Première colonne */
        grid-row: 2; /* Deuxième ligne */
    }

    .footer_wrapper .footer-form__wrapper {
        grid-column: 1; /* Première colonne */
        grid-row: 3; /* Quatrième ligne */
    }

    .footer_wrapper .contact_info_wrapper {
        grid-column: 1; /* Première colonne */
        grid-row: 4; /* Troisième ligne */
        text-align: left;
    }

  
    .footer_wrapper .footer-legal {
        grid-column: 1; /* Première colonne */
        grid-row: 5;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1em;
    }

    .footer-legal a {
        text-align: center;
    }
}