/************** DEFAULT *************/

html,
body {
    margin: 0;
    padding: 0;
    clear: both;
    font-family: "Montserrat", sans-serif;
    max-width: 100%;
    /*overflow-x: hidden;*/
    background: white;
}

h1,
h2,
h3 {}

/************** HEADER *************/

body.home header {
    height: 100vh;
}

body:not(.home) header.sticky {
    height: 90px;
}

body header.sticky {
    z-index: 1;
}

#menuContent ul li:nth-child(6),
#menuContent ul li:nth-child(5) {
    display: none;
}

/************** LAYOUT *************/

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
}

.h90 {
    height: 90px;
}

.container_background {
    width: 850px;
}

.edit-tool {
    background-color: #17a2b8;
    padding: 10px;
    border-radius: 20px;
}

.edit-tool.absolute-bottom-left {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.edit-tool.absolute-bottom-right {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.edit-tool.fixed-center-left {
    position: fixed;
    top: 50%;
    left: 30px;
    z-index: 1;
}

/*.menu-section {
    position: relative;
    align-items: start;
    flex-wrap: wrap;
    background-image: url("/wp-content/themes/grangeauxloups/assets/img/site/background-carte.png");
    background-size: cover;
    background-position: center;
}

.menu-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: white;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.menu-section>.container_background {
    box-shadow: 0 0 5px #e7e7e7;
    position: relative;
    z-index: 1;
}
*/
/************** MAQUETTE LAYOUT *************/

p,
.grey {
    color: #4A4A49
}

body {
    opacity: 0;
    font-family: 'Montserrat', sans-serif;
    transition: opacity 0.8s ease;
}

body.visible {
    opacity: 1;
}

/*
.nav {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
}*/

.nav li {
    margin-right: 50px;
    letter-spacing: 1px;
}

.socials {
    margin: 20px 0;
}

.socials li {
    margin: 0 15px;
}

.nav-footer li {
    margin: 0 15px;
    letter-spacing: 2px;
}

@keyframes bannerFloat {
    0% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.05) translateY(-10px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

.animate-banner {
    animation: bannerFloat 8s ease-in-out;
}

.infos-contact li {
    margin: 0 5px;
}

.subtitle {
    color: #997423;
    letter-spacing: 3px;
}

.cta {
    margin-top: 30px;
}

.btn-border-gold {
    display: inline-block;
    margin-right: 20px;
    padding: 14px 35px;
    font-size: 16px;
    color: #997423;
    border: 1px solid #997423;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0.25rem;
}

.btn-border-gold:hover {
    color: white;
}

.btn-gold {
    display: inline-block;
    margin-right: 20px;
    padding: 14px 35px;
    font-size: 16px;
    color: white;
    background-color: #997423;
    border: 1px solid #997423;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0.25rem;
}

#mainMenu li {
    margin-top: 10px;
    position: relative;
}

/* begin subnav */
#mainMenu li ul {
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    background: transparent;
    padding: 10px 0;
    border-radius: 8px;
    min-width: 205px;
    z-index: 10;
}

#mainMenu li:hover > ul {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Style des items du sous-menu */
#mainMenu li ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

#mainMenu li ul li a {
    display: block;
    padding: 8px 0;
    color: white;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
/* end subnav */

#mainMenu li a {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

#mainMenu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    /* épaisseur du surlignement */
    width: 0;
    /* commence à 0 */
    background-color: #997423;
    /* couleur du surlignement */
    transition: width 0.3s ease;
}

/* underline seulement pour les liens avec sous-menu */
#mainMenu li.has-submenu > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #997423; /* couleur normale */
    transition: width 0.3s ease, background-color 0.3s ease;
}

/* au hover du parent, étend la ligne et change la couleur si menu ouvert */
#mainMenu li.has-submenu:hover > a::after {
    width: 100%;
    background-color: white; /* si menu ouvert */
}


#mainMenu li a:hover::after,
#mainMenu li a:focus::after {
    width: 100%;
    /* s’étend sur toute la largeur */
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.subtitle-grey {
    color: #c7c6cb;
    letter-spacing: 3px;
}

label {
    display: block;
}

input {
    width: 100%;
    border-bottom: 1px solid #c7c6cb;
    padding: 10px 0 !important;
}

textarea {
    width: 100%;
    border-bottom: 1px solid #c7c6cb;
    padding: 10px 0 !important;
}

textarea:focus,
input:focus {
    outline: 0;
}

.input-group {
    margin: 25px 0;
}

.group-inline {
    display: flex;
}

.group-inline>div {
    width: calc(50% - 20px);
    margin: 0 10px;
}

.group-line {
    margin: 25px 10px;
}

.color-gold {
    color: #997423
}

.accordion {
    border-top: 1px solid #ab835a;
}

.accordion-item {
    border-bottom: 1px solid #ab835a;
    position: relative;
    padding-bottom: 0;
    transition: padding 0.3s ease;
}

.accordion-content {
    text-align: left;
    /*max-height: 0;
    overflow: hidden;
    padding: 0 20px 0 0;*/
    padding: 20px 0 50px 0;
    box-sizing: border-box;
    /*transition: max-height 0.4s ease, padding-bottom 0.4s ease;*/
}

.accordion-content.open {
    /*padding-bottom: 30px;*/
    display: block;
}

.accordion-header {
    background: #fff;
    padding: 25px 20px 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 100;
}

.accordion-header h3 {
    font-weight: 300;
    font-size: 24px;
    margin: 0;
}

.accordion-icon {
    font-size: 45px;
    line-height: 45px;
    color: #ab835a;
    transition: transform 0.3s ease;
}

#togglePanel {
    writing-mode: vertical-rl;
    /* ← Texte vertical de bas en haut */
    text-orientation: mixed;
    transform-origin: bottom right;
    /* ← Pivot correct si tu veux le faire pivoter ou animer */
}

#infoPanel ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #c7c6cb;
    padding: 10px 0;
    margin: 0;
}

/* État initial - caché à droite */
#infoPanel {
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

/* État visible - glissé vers la gauche */
#infoPanel.open {
    transform: translateX(0);
}

.filter-menu li {
    color: #4a4a49;
    margin-right: 25px;
    padding: 5px 0;
    text-transform: uppercase;
    font-size: 15px;
    cursor: pointer;
    transition: .3s all ease-in;
}

.filter-menu li:hover {
    color: black;
}

.filter-menu li.active {
    color: black;
    border-bottom: 1px solid black;
    font-weight: 500;
}

.bloc-menu {
    margin-bottom: 35px;
}

.bloc-menu-entries {
    padding: 15px 0;
    /*    padding: 20px 0;
    border-bottom: 1px solid #c6c5c9;*/
}

.menu-border::before,
.menu-border::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.menu-border {
    border-left: 2px solid #997423;
    border-bottom: 2px solid #997423;
    border-top: 2px solid #c7c6cb;
    border-right: 2px solid #c7c6cb;
}

.menu-border::before {
    width: 75%;
    background-color: white;
    height: 2px;
    left: 0;
    top: -2px;
    z-index: 1;
}

.menu-border::after {
    width: 75%;
    background-color: white;
    height: 2px;
    right: 0;
    bottom: -2px;
    z-index: 1;
}

.bloc-menu-text span {
    font-size: 16px;
    width: 80%;
}

.bloc-menu-text {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: #4a4a49;
}

#filterMenu.is-sticky {
    position: fixed !important;
    top: 90px;
    /* ou la hauteur exacte sous ton header */
    left: 0;
    right: 0;
    background: white;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#filterMenu.is-sticky+#all {
    margin-top: 70px;
    /* ou selon la hauteur de ton .filter-menu fixe */
}

.video-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}


.gift-overlay {
    cursor: pointer;
    width: calc(100% / 5 - 10px);
    height: 500px;
    margin: 0 5px;
    position: relative;
    overflow: hidden
}

.gift-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover
}


.gift-overlay h3 {
    min-height: 83px;
    transition: transform 0.4s ease;
}

.gift-overlay .hide-infos {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    max-height: 0;
    overflow: hidden;
    margin-top: 15px;
}

.gift-overlay:hover h3 {
    transform: translateY(-10px);
}

.gift-overlay:hover .hide-infos {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
}

.gift-overlay .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    transition: background 0.4s ease;
}

.gift-overlay:hover .overlay {
    background: rgba(0, 0, 0, 0.7);
}

.hide-infos ul {
    margin: 20px 0;
    text-align: center;
    height: 135px;
}

.hide-infos div.empty {
    height: 135px;
    margin: 20px 0;
    text-align: center;
    position: relative;
}

/*
.hide-infos div.empty::before {
    content: "";
    border-left: 1px solid white;
    position: absolute;
    top: -40px;
    height: 100%;
}
*/
.hide-infos span,
.hide-infos strong {
    display: block;
    text-align: center;
}

.hide-infos strong {
    font-size: 20px;
}

.special-menu-section p {
    margin-bottom: 10px;
}
.page-special-menu-section em {
    font-size: 13px;
}
 .popup-info {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    color: #333;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
    max-width: 300px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.popup-info.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.popup-info .popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    line-height: 25px;
    color: black;
}

.popup-info-content p:last-child {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/************** POPUP *************/

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: #fff;
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    overflow: hidden;
}

.popup.popup_medium .popup-content {
    max-width: 1200px;
}

.popup.popup_large .popup-content {
    max-width: 90%;
}

@media screen and (min-width: 1800px) {
    .popup.popup_large .popup-content {
        max-width: 60%;
    }

    .popup.popup_medium .popup-content {
        max-width: 50%;
    }

}

.popup-image {
    flex: 1 1 50%;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-text {
    flex: 1 1 50%;
    padding: 50px;
    box-sizing: border-box;
}

.popup-text p {
    margin: 20px 0;
}

.popup-text h2 {
    margin-top: 0;
    font-size: 30px;
    letter-spacing: -1px;
}

.popup-text form {
    display: flex;
    flex-direction: column;
}

.popup-text input[type="email"] {
    margin-bottom: 10px;
    width: 100%;
    height: 42px;
    border: 1px solid #dddddd;
    border-radius: 30px;
    padding: 0 15px;
    font-size: 16px;
    font-family: "Montserrat";
}

.popup-text button {
    background-color: #ff6b34;
    padding: 15px 25px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: .3s all ease-in-out;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

/************** HOME *************/

.banner-overlay {
    background:
        /* Bordures gauche/droite */
        linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 50%),
        linear-gradient(to left, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 50%),
        /* Bordures haut/bas */
        linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 50%),
        linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 50%),
        /* Overlay principal */
        rgba(0, 0, 0, 0.6);
}

.too-dark-banner-overlay {
    background:
        /* Bordures gauche/droite */
        linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 50%),
        linear-gradient(to left, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 50%),
        /* Bordures haut/bas */
        linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 50%),
        linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 50%),
        /* Overlay principal */
        rgba(0, 0, 0, 0.6);
}

/*.banner-overlay {
    background: 
        linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%),
        linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%),
        rgba(0,0,0,0.6);
}
*/

.swiper-button-next::after {
    display: none;
}

.swiper-button-next {
    top: 47.2%;
    right: 0;
    /*-30px;*/
}

body.home .swiper-button-next {
    width: 60px;
    height: 60px;
    color: white;
}

.team-slider {
    padding: 30px;
}

.swiper-button-next svg {
    width: auto;
    height: auto;
}

.three-sliders {
    display: flex;
    width: 100vw;
    height: 100vh;
    gap: 10px;
    box-sizing: border-box;
    padding: 0 10px;
}

.slider-block {
    flex: 1;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

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

.logo-hidden {
    opacity: 0;
    transform: translateY(-40px);
    pointer-events: none;
}

.logo-style-2 {
    position: relative;
    border-right: 2px solid #c7c6cb;
    border-top: 2px solid #c7c6cb;

}

.logo-style-3 {
    position: relative;
    border-right: 2px solid #997423;
    border-top: 2px solid #997423;

}

.logo-style {
    position: relative;
    border-right: 2px solid #c7c6cb;
    border-top: 2px solid #c7c6cb;
    border-left: 2px solid #997423;
    border-bottom: 2px solid #997423;
}

.logo-style::before {
    content: "";
    width: 80%;
    height: 2px;
    background: white;
    position: absolute;
    top: -2px;
    left: 0;
    z-index: 2;
}

.logo-style::after {
    content: "";
    width: 80%;
    height: 2px;
    background: white;
    position: absolute;
    bottom: -2px;
    right: 0;
    z-index: 2;
}

.logo-style-2::before {
    content: "";
    width: 80%;
    height: 2px;
    background: white;
    position: absolute;
    top: -2px;
    left: 0;
    z-index: 2;
}

.logo-style-2::after {
    content: "";
    width: 2px;
    height: 55%;
    background: white;
    position: absolute;
    bottom: -2px;
    right: -2px;
    z-index: 2;
}

.logo-style-3::before {
    content: "";
    width: 80%;
    height: 2px;
    background: white;
    position: absolute;
    top: -2px;
    left: 0;
    z-index: 2;
}

.logo-style-3::after {
    content: "";
    width: 2px;
    height: 55%;
    background: white;
    position: absolute;
    bottom: -2px;
    right: -2px;
    z-index: 2;
}

/************** PAGE DEFAULT **************/

.page .entry-content p {
    line-height: 26px;
}

.page .entry-content h2 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

.page.page-private-events .entry-content h3,
.page.page-privatisation .entry-content h3 {
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: 30px;
}

/************** PAGE OFFER **************/

.page-gift-cards .gift-details,
.page-les-offres .gift-details {
    margin: 20px 0;
    border: 1px dashed #c7c6cb;
    padding: 15px 20px;
    font-size: 14px;
    display: none;
}

.page-gift-cards #carte,
.page-les-offres #carte {
    width: 100%;
    margin-top: 15px;
    outline: 0;
}

.page-gift-cards #carte.no-gift-selected,
.page-les-offres #carte.no-gift-selected {
    border-bottom: 1px solid #c7c6cb;
    padding-bottom: 10px;
}

.page-gift-cards .gift-details.gift-selected,
.page-les-offres .gift-details.gift-selected {
    display: block;
}

.page-gift-cards .gift-overlay .hide-infos,
.page-les-offres .gift-overlay .hide-infos {
    max-height: inherit;
    opacity: 1;
}

/************** PAGE CONTACT **************/

#global-error {
    color: #e15555;
    background-color: #fff5f5;
    padding: 20px;
    text-align: center;
    border-top: 1px solid;
    border-radius: 0 0 10px 10px;
    display: none;
}

.contact-response {
    background-color: #fcfcfc;
    padding: 50px 40px;
    border-radius: 12px;
}

.page-contact {
    margin-top: -50px;
}

.grecaptcha-badge {
    display: none !important;
}

#container-map {
    height: 500px;
    width: 100%;
    position: relative;
    margin-top: 50px;
}

#map {
    flex-grow: 1;
    height: 100%;
}

.custom-marker .bubble {
    position: relative;
    background: white;
    border-radius: 50%;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: auto;
    width: 42px;
}

.custom-marker .bubble img {
    width: 25px;
    height: 25px;
    margin: auto;
}

.custom-marker .bubble::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid white;
}

.page-contact .accordion-item ul {
    padding-left: 15px;
    margin: 10px 0;
}

.page-contact .accordion-item li {
    list-style-type: circle;
}

.page-contact .accordion-item strong {
    font-weight: 600;
}

.text-tmp-popup p {
    margin-bottom: 15px;
}

/************** RESPONSIVE **************/
@media screen and (max-width: 1700px) {
    .menu-right {
        margin-left: 100px;
    }
}

@media screen and (max-width: 1500px) {
    .menu-right {
        margin-left: 150px;
    }

    .menu-left {
        margin-right: 50px;
    }
}

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

    .nav li {
        margin-right: 26px;
    }

    .gift-overlay .overlay {
        padding: 0 20px;
    }

    .contact-response {
        padding: 50px 25px;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .section-6-text {
        margin-left: 20px !important;
        padding: 50px 50px 100px 50px;
    }
}

@media screen and (max-width: 1080px) {
    .menu-illustration {
        display: none !important;
    }

    .menu-left {
        font-size: 1.125rem !important;
        line-height: 1.75rem !important;
    }

    .menu-right>div {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .menu-right {
        margin-left: 0;
    }
}

@media screen and (max-width: 1024px) {
    #mainMenu {
        display: none;
    }

}

@media screen and (width: 1280px) and (height: 800px) {
    .container {
        max-width: 1200px;
    }

    .btn-border-gold {
        padding: 14px 30px;
    }

    .nav li {
        margin-right: 40px;
    }

    .xl\:text-2xl {
        font-size: 20px;
    }
}

@media screen and (width: 1024px) and (height: 600px) {
    #togglePanel {
        display: none;
    }

    h2 {
        font-size: 25px;
    }

    .subtitle {
        font-size: 16px;
    }

    .md\:\!leading-\[32px\] {
        font-size: 16px;
        line-height: 20px !important;
    }

    .btn-border-gold {
        font-size: 14px;
    }

    .text-4xl,
    .md\:text-4xl {
        font-size: 28px;
        line-height: 32px;
    }



    .md\:text-lg {
        font-size: 16px;
        line-height: 24px;
    }

    .container-gift h3 {
        font-size: 15px;
        line-height: 22px;
    }

    .container-gift .hide-infos {
        font-size: 15px;
    }

    .container {
        max-width: 62rem;
    }

    .max-w-\[900px\] {
        max-width: 900px;
    }

    .cave-section>div:nth-child(1) {
        width: 100%;
        height: 750px;
    }

    .cave-section>div:nth-child(2) {
        width: calc(100% - 40px);
        margin: 20px !important;
    }

    .cave-section {
        display: block;
    }

    .animate-banner {
        max-width: 100vw;
        width: 100%;
        overflow: hidden;
    }

    .md\:w-\[350px\] {
        @media (width >=48rem) {
            width: 250px;
        }
    }

    .md\:p-20 {
        padding: 40px;
    }

    .lg\:p-\[70px\] {
        padding: 40px 40px 90px 40px;
    }

    .ml-\[75px\] {
        margin-left: 30px;
    }

    .page-team .text-lg,
    .page-lequipe .text-lg {
        font-size: 16px;
        line-height: 25px;
    }

    .lg\:text-lg {
        font-size: 16px;
        line-height: 25px;
    }
}

@media screen and (max-width: 1023px) {
    body.home .swiper-button-next {
        display: none;
    }

    .team-slider {
        padding: 0;
    }

    .swiper-pagination-bullet-active {
        background: #997421;
    }

    .swiper-pagination-bullets {
        bottom: 20px !important;
    }

    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 8px !important;
    }

    #mainMenu {
        display: none;
    }

    .three-sliders {
        height: 60vh;
    }

    .gift-overlay {
        cursor: pointer;
        width: calc(100% / 2 - 20px);
        margin-top: 20px;
    }

    .container-gift {
        flex-wrap: wrap;
    }

    .gift-overlay .overlay {
        padding: 0 50px;
    }

    .nav-footer li {
        margin: 5px 15px;
        font-size: 13px;
        letter-spacing: 1px;
    }
}


@media screen and (max-width: 900px) {
    .container_background {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .btn-border-gold {
        padding: 12px 35px;
        font-size: 14px;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 767px) {
    .popup-info {
        bottom: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }

    .page .entry-content h2 {
        font-size: 18px;
    }

    .gift-overlay h3 {
        min-height: auto;
    }

    .page.page-private-events .entry-content h3,
    .page.page-privatisation .entry-content h3 {
        font-size: 20px;
    }

    .bloc-menu-entries {
        padding: 15px 30px;
    }

    .bloc-menu-entries span {
        display: block;
    }

    #togglePanel {
        display: none;
    }

    .nav-footer li {
        width: 100%;
    }

    .gift-overlay {
        width: 100%;
    }

    .infos-contact li:nth-child(2) {
        display: none;
    }

    .infos-contact li {
        margin: 5px 0;
        width: 100%;
    }

    #menuContent {
        flex-wrap: wrap;
    }

    #menuContent>div {
        width: 100%;
    }

    #closeOverlay {
        color: black;
    }

    .menu-left {
        margin-right: 100px;
    }

    .accordion-header h3 {
        font-size: 18px;
        padding-right: 15px;
    }

    .accordion-icon {
        font-size: 20px;
        line-height: 20px;
    }

    .accordion-content {
        padding: 0 0 20px 0;
    }
}

@media screen and (max-width: 640px) {
    .popup-text {
        padding: 30px;
    }

    .popup-text h2 {
        font-size: 18px;
        letter-spacing: 0;
    }

    .popup-text p {
        margin: 15px 0 20px;
        font-size: 15px;
    }

    #container-map {
        height: 360px;
    }

    #reserveBtn {
        padding: 5px 8px;
        letter-spacing: 0;
        font-size: 12px;
    }

    #mainNav .icon {
        margin-left: 15px;
    }

    #mainNav .icon img {
        width: 40px;
    }

    #burgerIcon svg {
        width: 40px;
        height: 40px;
        margin-right: 0;
    }

    div.gift-overlay {
        height: 370px;
    }

    .page-private-events .main-cta .btn-border-gold,
    .page-privatisation .main-cta .btn-border-gold {
        padding: 12px 25px;
    }

    .page-private-events .main-cta,
    .page-privatisation .main-cta {
        width: 100%;
        text-align: center;
        right: 0;
    }

    .page-privatisation label,
    .page-private-events label {
        font-size: 14px;
    }

    div.gift-overlay .hide-infos {
        margin: 0;
    }

    div.gift-overlay .hide-infos ul {
        margin: 15px 0;
    }

    .home .gift-overlay {
        height: 170px;
        margin-top: 8px;
    }

    .home .gift-overlay .hide-infos {
        display: none;
    }

    .gift-overlay h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .page-gift-cards select#carte,
    .page-les-offres select#carte {
        font-size: 12px;
    }
}

@media screen and (max-width: 360px) {
    #menuContent>div {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .menu-left {
        margin-right: 0;
        text-align: center;
    }

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

    .menu-overlay-lang {
        justify-content: center;
    }

    .menu-left,
    .menu-right>div {
        font-size: 1rem !important;
        line-height: 1rem !important;
    }
}