/*
Theme Name: Messmer_theme
Author: Romain Adler
Version: 1.2
*/

@font-face {
    font-family: 'Proxima Nova';
    src: url('./css/fonts/ProximaNova-Extrabld.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('./css/fonts/ProximaNova-Semibold.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('./css/fonts/ProximaNova-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('./css/fonts/ProximaNova-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gibson';
    src: url('./css/fonts/Gibson_Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('./css/fonts/GothamBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('./css/fonts/GothamBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('./css/fonts/CormorantGaramond-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('./css/fonts/CormorantGaramond-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --lightBlue: #D7EDF7;
    --darkBlue: #1D3750;
    --blueGray: #8D9AA6;
    --darkGrey: #444444;
    --white: #FFFFFF;
    --black: #000000;
}

body {
    margin: 0;
    overflow-x: hidden;
}

.scrollable-on-white::-webkit-scrollbar {
  width: 6px;
}

.scrollable-on-white::-webkit-scrollbar-track {
  background: var(--blueGray);
  border-radius: 100px;
}

.scrollable-on-white::-webkit-scrollbar-thumb {
  background: var(--white);
  border: 1px solid var(--blueGray);
  border-radius: 100px;
}

.scrollable-on-blue::-webkit-scrollbar {
  width: 6px;
}

.scrollable-on-blue::-webkit-scrollbar-track {
  background: var(--blueGray);
  border-radius: 100px;
}

.scrollable-on-blue::-webkit-scrollbar-thumb {
  background: var(--lightBlue);
  border: 1px solid var(--blueGray);
  border-radius: 100px;
}

.menu-container,
.main-container,
.footer-container {
    display: flex;
    justify-content: center;
}

nav,
.main-wrapper,
footer {
    width: 100vw;
    max-width: 1920px;
}

h1, h2 {
    margin: 0;
    padding-top: 160px;
    color: var(--darkBlue);
    font-family: 'Gibson', sans-serif;
    font-size: 3.8rem;
    font-weight: bold;
}

h3 {
    color: var(--darkBlue);
    font-family: 'Gibson', sans-serif;
    font-size: 2.3rem;
    font-weight: bold;
}

h4 {
    color: var(--black);
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}

.text-wrapper {
    color: var(--darkGrey);
    line-height: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

.text-wrapper > p{
    margin: 0;
}

.text-wrapper > p:not(:last-child) {
    margin-bottom: 1.1rem;
}

.menu-container {
    position: relative;
    top: 0;
    width: 100%;
}

nav {
    position: fixed;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: 38px
}

.menu-ticketing {
    margin-right: 1.5rem;
    color: var(--white);
    text-shadow: 0 0 20px var(--black);
    text-decoration: none;
    font-family: 'Gotham';
    font-weight: 900;
    font-size: 2rem;
    transition: all .3s ease-in-out;
    z-index: 102;
}

.menu-ticketing.on-white {
    color: var(--darkBlue);
    text-shadow: none;
}

.burger-menu {
    display: flex;
}

.burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 56px;
    height: 56px;
    box-shadow: 0 0 30px var(--black);
    margin-right: 58px;
    background-color: var(--white);
    border-radius: 100px;
    z-index: 102;
}

.burger-icon span{
    display: block;
    width: 32px;
    height: 3.5px;
    background-color: var(--darkBlue);
    position: relative;
    top: 0;
    transition: all .3s ease-in-out;
}

.burger-icon span:not(:last-child){
    margin-bottom: 4px;
}

.burger-icon.open span:nth-child(2) {
    opacity: 0;
}

.burger-icon.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 7.5px;
}

.burger-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: -7.5px;
}

.burger-icon.open span {
    background-color: var(--white);
}

.burger-icon.open {
    background-color: var(--darkBlue);
    box-shadow: none;
}

.nav-links.hidden {
    opacity: 0;
}

.nav-links {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    margin: 0;
    padding: 124px 0 30px 55px;
    box-shadow: 0 0 40px var(--black);
    background-color: var(--white);
    font-family: 'Gibson', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    list-style: none;
    transition: all ease 0.4s;
    z-index: 101;
}

.nav-links.hidden {
    opacity: 0;
    right: 30px;
}

.nav-links.fully-hidden {
    display: none;
}

.nav-links > li {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 0 !important;
}

.nav-links > li > a {
    display: flex;
    align-items: center;
    color: var(--darkBlue);
    text-decoration: none;
    width: 296px;
    height: 2rem;
}

.nav-links > li:not(:last-child) > a {
    border-bottom: var(--darkBlue) 1px solid;
}




/* ------------------ACCUEIL---------------------- */

.home-slider-content {
    height: 56.25vw;
    max-height: 1080px;
}

.home-slider-content a {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-slider-content a > img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-slider-dots {
    position: absolute;
    right: calc(50% - 46px / 2);
    bottom: 11%;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-slider-dots > li {
    display: flex;
    border-radius: 100px;
    width: 10px;
    height: 10px;
    background-color: #687c91;
    filter: drop-shadow(0 0 10px black);
}

.home-slider-dots > li:not(:last-child) {
    margin-right: 8px;
}

.home-slider-dots > li.slick-active {
    background-color: white;
}

.home-slider-dots > li > button {
    opacity: 0;
    width: 10px;
    height: 10px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: none;
}

.home-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 60px;
    border-bottom: var(--darkBlue) solid 2.5px;
}

.nav-ticketing {
    text-decoration: none;
    color: var(--darkBlue);
    font-family: 'Gotham';
    font-size: 2.3rem;
    font-weight: 900;
}

.socials-icons {
    display: flex;
    height: 34px;
}

.socials-icons > a {
    height: 100%;
}

.socials-icons > a:not(:last-child) {
    margin-right: 13.5px;
}

.socials-icons > a > img {
    height: 100%;
}




/* ------------------BILLETTERIE---------------------- */

.ticketing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ticketing-title {
    margin-bottom: 52px;
}

.date-search-wrapper {
    display: flex;
    height: 72px;
    margin-bottom: 120px;
}

.date-search-input,
.date-search-input::placeholder,
.date-search-button {
    color: var(--white);
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.2rem;
}

.date-search-input {
    /* width: 330px; */
    width: 500px;
    height: 100%;
    padding: 0 25px;
    background-color: var(--darkBlue);
    opacity: 0.5;
    border: none;
    font-style: italic;
}

.date-search-button {
    width: 172px;
    height: 100%;
    background-color: var(--darkBlue);
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.date-search-button:hover {
    opacity: 0.9;
}

.date-search-button:active {
    opacity: 0.8;
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 90px;
}

.country-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 87px;
    margin: 0px 5px 10px 5px;
    border: var(--darkBlue) solid 2.5px;
    cursor: pointer;
    color: var(--black);
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
}

.country-button:hover,
.country-button.active {
    color: var(--white);
    background-color: var(--darkBlue);
}

.country-button > img {
    height: 1.3rem;
    margin-right: 4px;
}

.date-list-container {
    display: flex;
    justify-content: center;
    max-height: 640px;
    width: 100%;
    margin-bottom: 55px;
    overflow: hidden;
}

.date-list-container.opened {
    max-height: unset;
    overflow: auto;
}

.date-list {
    width: 95%;
    max-width: 1000px;
    margin: 0;
    padding: 2px 0;
    list-style: none;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.2rem;
}

.date-list.hidden {
    display: none;
}

.date-list > li {
    display: flex;
    align-items: center;
    height: 80px;
}

.date-list > li.hidden {
    display: none;
}

.date-infos-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    border-top: var(--black) 1px solid;
}

.date-list > li:last-child > .date-infos-wrapper {
    border-bottom: var(--black) 1px solid;
}

.date-cel {
    width: 40%;
    padding-right: 30px;
    font-weight: bold;
    font-variant-numeric: tabular-nums;
}

.date-cel > span {
    margin-left: 10px;
    font-weight: normal;
}

.date-location {
    display: flex;
    width: 76%;
}

.date-city {
    width: 45%;
    padding-right: 10px;
    font-weight: bold;
}

.date-city,
.date-theater {
    display: flex;
    align-items: center;
}

.date-button-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 24px;
}

.date-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 190px;
    height: 68px;
    background-color: var(--darkBlue);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.date-button:hover {
    opacity: 0.9;
}

.date-button.disabled {
    width: 185px;
    height: 63px;
    opacity: 1 !important;
    background-color: transparent;
    color: var(--darkBlue);
    border: var(--darkBlue) 2.5px solid;
}

.date-list-opener {
    cursor: pointer;
    user-select: none;
    margin-bottom: 80px;
    color: var(--black);
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.4rem;
}

.date-list-opener:hover {
       opacity: 0.7;
}

.date-list-opener > span {
    margin-left: 4px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.date-list-opener.opened > span:nth-child(1),
.date-list-opener > span:nth-child(2) {
    display: none;
}

.date-list-opener.opened > span:nth-child(2),
.date-list-opener > span:nth-child(1) {
    display: initial;
}

.google-map-custom {
    width: 100%;
    height: 40vw;
    max-height: calc(1920px / 2);
}

.map-marker-infos-wrapper > h3 {
    margin: 0 20px;
    margin-bottom: 10px;
    font-size: 1.3rem;
    text-transform: capitalize;
}

.map-marker-dates-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    color: var(--black);
    font-family: 'Proxima Nova', sans-serif;
    font: 1.2rem;
}

.map-marker-dates-wrapper > a {
    text-decoration: none;
    color: black;
}

.map-marker-dates-wrapper > a:hover {
    text-decoration: underline;
}




/* ---------ATELIER---------- */

.brain-work-page-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--lightBlue);
    padding-right: 10vw;
    padding-left: 10vw;
    padding-bottom: 170px;
}

.brain-work-page-section h3 {
    font-size: 2rem;
    line-height: 2.1rem;
}

.brain-work-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--lightBlue);
    padding-bottom: 170px;
}

.brain-work-section > h2 {
    text-align: center;
    margin-bottom: 40px;
}

.brain-work-logo {
    width: 650px;
    max-width: 100%;
}

.brain-work-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 40px;
}

.brain-work-container > div {
    width: 30%;
    text-align: center;
}

.brain-work-container > div > img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.brain-work-container > div > .text-wrapper {
    margin: 10px 0;
}

.experience > .text-wrapper {
    margin-bottom: 40px !important;
}

.brain-work-section .my-button {
    text-decoration: none;
    padding: 15px 20px;
    font-size: 0.9rem;
}

.brain-work-sub-container {
    width: 100%;
}

.brain-work-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--lightBlue);
    opacity: 0;
    z-index: 1000;
    overflow: scroll;
    padding-top: 80px;
    transition: all 300ms ease;
}

.brain-work-modal.open {
    opacity: 1;
}

.brain-work-modal > .text-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.brain-work-modal-close {
    position: fixed;
    right: 20px;
    top: 20px;
    margin: 0;
    background-color: transparent !important
}

.brain-work-modal-close:hover {
    transform: scale(105%);
}

.brain-work-modal-close > span {
    background-color: var(--darkBlue) !important;
}

.brain-work-form {
    width: 65%;
    margin-bottom: 80px;
}

.brain-work-form > input, 
.brain-work-form > select,
.brain-work-form > textarea {
    height: 42px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.brain-work-form > input.my-input {
    width: 48%;
}

.brain-work-form .my-checkbox-wrapper {
    margin-bottom: 12px;
}

.brain-work-form .my-checkbox-wrapper > label {
    width: initial;
}

.brain-work-form .my-button {
    width: 115px;
    height: 40px;
    font-size: 0.9rem;
}

.brain-work-button-wrapper {
    display: flex;
    justify-content: center;
    width: 100% !important;
}

.brain-work-button-wrapper > a {
    height: unset;
}



@media (max-width: 1000px) {
    .brain-work-container > div {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .brain-work-page-section h3 {
        font-size: 1.5rem;
        line-height: 1.6rem;
    }

    .brain-work-page-section .text-wrapper {
        width: 100%;
    }
}



/* ---------LES SPECTACLES / LES EMISSIONS TV---------- */

.shows-section,
.TVshows-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 170px;
}

.TVshows-section {
    background-color: var(--lightBlue);
}

.shows-title {
    margin-bottom: 40px;
}

.TVshows-title {
    padding: 0;
    margin: 52px 0;
}

.shows-grid,
.TVshows-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column-gap: 2.4vw;
    grid-row-gap: 2.4vw;
    margin: 2.4vw 4.4vw 2.4vw 4.4vw;
}

.show-card,
.TVshow-card {
    position: relative;
    box-shadow: 0px 5px 40px #00000080;
    cursor: pointer;
    overflow: hidden;
}

.show-card:hover > .show-card-title,
.TVshow-card:hover > .TVshow-card-title { 
    opacity: 1;
}

.show-card:hover > .show-card-image,
.TVshow-card:hover > .TVshow-card-image {
    transform: scale(1.2);
}

.show-card-image,
.TVshow-card-image {
    object-fit: cover;
    width: 100%;
    height: auto;
	aspect-ratio: 2 / 3;
    transition: all 300ms ease;
}

.show-card-title,
.TVshow-card-title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding-left: 2.5%;
    padding-right: 2.5%;
    opacity: 0;
    background-color: #00000088;
    color: var(--white);
    text-align: center;
    font-family: 'Gotham';
    font-size: 1.3rem;
    transition: all 300ms ease;
}

.shows-list,
.TVshows-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    height: 38vw;
    max-height: 730px;
    overflow-y: auto;
}

.show-element,
.TVshow-element {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    background-color: var(--white);
    opacity: 0;
    z-index: 1000;
    overflow: scroll;
    transition: all 300ms ease;
}

.TVshow-element {
    background-color: var(--lightBlue);

}

.show-element.open,
.TVshow-element.open {
    opacity: 1;
}

.show-close,
.TVshow-close {
    position: fixed;
    right: 20px;
    top: 20px;
    margin: 0;
    background-color: transparent !important;
}

.show-close:hover,
.TVshow-close:hover {
    transform: scale(105%);
}

.show-close > span,
.TVshow-close > span {
    background-color: var(--darkBlue) !important;
}

.show-left,
.TVshow-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.show-left > img,
.TVshow-left > img {
    width: auto;
    height: 100%;
}

.show-right,
.TVshow-right {
    margin: 80px;
}

.show-title,
.TVshow-title {
    margin: 0;
    margin-bottom: 16px;
    width: 90%;
    border-bottom: var(--darkBlue) 2.5px solid;
    line-height: 2.5rem;
}

.show-subtitle,
.TVshow-subtitle {
    margin: 0;
    margin-bottom: 16px;
}




/* ----------------BIOGRAPHIE------------------ */

.bio-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 170px;
}

.bio-title {
    margin-bottom: 48px;
}

.bio-element {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.bio-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 57%;
    height: 80vh;
    max-height: 80vh;
    padding-left: 5%;
    overflow-y: auto;
    direction: rtl;
}

.bio-right {
    width: 35%;
}

.bio-right > img  {
    height: 80vh;
    width: auto;
}

.bio-subtitle-wrapper {
    width: 100%;
    margin-bottom: 40px;
    direction: ltr;
}

.bio-subtitle {
    margin: 0;
    padding-bottom: 8px;
    line-height: 2.5rem;
}

.bio-subtitle-underline {
    width: 70%;
    height: 2px;
    background-color: var(--darkBlue);
}

.bio-text {
    text-align: end;
}




/* ----------------BELLAIR & SANDMAN------------------ */

.partners-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--lightBlue);
    padding-bottom: 130px;
}

.partners-title {
    padding: 0;
    margin: 52px 0;
    text-align: center;
}

.partners-container {
    display: flex;
    justify-content: center;
}

.partner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 44%;
    margin: 0 20px;
}

.partner-wrapper > img {
    width: 100%;
    margin-bottom: 75px;
}

.partner-mobile-title {
    display: none;
}

.partner-title,
.partner-text {
    width: 63%;
}

.partner-title {
    margin: 0;
    margin-bottom: 16px;
}




/* ----------------ACTUALITÉS------------------ */

.insta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insta-title {
    margin-bottom: 48px;
}

.insta-slider {
    position: relative;
    width: 100%;
    margin-bottom: 160px;
}

.insta-slider-interface {
    position: absolute;
    display: flex;
    justify-content: space-between;
    top: calc(((100% - 62px) / 2) - (58px / 2));
    width: 99.4%;
    padding: 0 0.3%;
}

.left-arrow,
.right-arrow {
    background-color: #1d37509e;
    height: 58px;
    width: 42px;
    object-fit: cover;
    cursor: pointer;
    z-index: 10;

}

.left-arrow {
    transform: rotate(180deg);
}

.insta-slider-card > a {
    display: block;
    padding: 0 1.2%;
    text-decoration: none;
}

.insta-slider-card > a > img {
    width: 100%;
}

.insta-card-title-wrapper {
    display: flex;
    justify-content: flex-end;
}

.insta-card-title {
    width: 95%;
    margin: 0;
    margin-top: 16px;
    padding-bottom: 22px;
    border-bottom: var(--black) 2.5px solid;
}




/* ----------------CONTACTS------------------ */

.contacts-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--lightBlue);
}

.contacts-title {
    padding: 0;
    margin: 52px 0;
}

.contact-wrapper {
    margin-bottom: 54px;
}

.contact-wrapper:not(:last-child) {
    margin-bottom: 1.2rem;
}

.contact-title {
    color: var(--darkBlue);
    margin: 0;
    text-align: center;
}

.contact-title::before {
    content: "• ";
    font-size: 1.2rem;
}

.contact-title > span {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-infos {
    color: var(--darkBlue);
    text-align: center;
    font-family: 'Proxima Nova';
    font-size: 1.2rem;
}

.contact-infos a {
    color: var(--darkBlue);
}

.contact-infos > p {
    margin: 0;
}

.contacts-form-wrapper {
    display: flex;
    justify-content: center;
    width: 95%;
    max-width: 675px;
}

.contacts-subtitle {
    margin-bottom: 40px;
    margin-top: 80px;
    text-align: center;
    font-size: 1.6rem;
}


.my-form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 170px;
}

.my-input {
    width: 45%;
    height: 87px;
    margin-bottom: 30px;
    padding-left: 16px;
    border: var(--darkBlue) 2.5px solid;
    background-color: transparent;
    color: var(--darkBlue);
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.2rem;
}

.my-input::placeholder {
    font-style: italic;
    color: var(--darkBlue);
    opacity: 0.5;
}

.full-width-input {
    width: 100%;
}

select.my-input {
    cursor: pointer;
}

textarea.my-input {
    padding-top: 16px;
}

.my-checkbox-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 22px;
    color: var(--darkBlue);
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.2rem;
}

.my-checkbox-wrapper > label {
    width: 616px;
}

.my-checkbox-wrapper > input,
.my-checkbox-wrapper > label {
    cursor: pointer;
    user-select: none;
}

.my-checkbox {
    /* Cache la checkbox sans la rendre invisible aux lecteurs d'écran */
    position: absolute;
    left: 0;
    opacity: 0.01;
}
  
/* Preparer le label */
.my-checkbox + label {
    position: relative; /* permet de positionner la checkbox */
    padding-left: 40px; /* place pour la box */
    color: var(--darkBlue);
    cursor: pointer;
    user-select: none;
}
  
/* Aspect de la case */
.my-checkbox + label::before {
    content: "";
    position: absolute;
    top: calc(50% - (20px / 2));
    left: 0;
    width: 16px;
    height: 16px;
    border: var(--darkBlue) 2.5px solid;
    transition: all 0.275s;
}
  
/* Aspect de la coche */
.my-checkbox + label::after {
    content: "✓";
    speak: never; /* Pour être sûr que le lecteur d'écran ne lira pas "fois" */
    position: absolute;
    top: calc(50% - (20px / 2) + 1px);
    left: 5px;
    color: var(--darkBlue);
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    transition: all 0.2s;
}
  
/* Aspect non cochée */
.my-checkbox:not(:checked) + label::after {
    opacity: 0;
    transform: scale(0) rotate(45deg);
}
  
/* Aspect cochée */
.my-checkbox:checked + label::after {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.my-button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.my-button {
    width: 172px;
    height: 72px;
    background-color: var(--darkBlue);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}

.my-button:hover {
    opacity: 0.9;
}

.my-button:active {
    opacity: 0.8;
}






/* ----------------NEWSLETTER------------------ */

.newsletter-section {
   display: flex;
   justify-content: center;
}

.newsletter-title {
    margin-bottom: 45px;
    text-wrap: nowrap;
}

.newsletter-subtitle {
    margin: 0;
    margin-bottom: 23px;
}

.newsletter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    max-width: 675px;
}

.newsletter-intro {
    width: 580px;
    margin-bottom: 44px;
}

.newsletter-intro {
    color: var(--darkBlue);
    font-family: 'Proxima Nova', sans-serif;
    font-size: 1.2rem;
}





/* ----------------FOOTER------------------ */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--darkBlue);
}

.footer-title {
    margin: 0;
    margin-top: 108px;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-socials-icons {
    height: 68px;
    margin-bottom: 112px;
}

.footer-socials-icons > a:not(:last-child) {
    margin-right: 18px;
}

.footer-credits {
    margin-bottom: 12px;
    color: var(--white);
    font-family: 'Proxima Nova';
    font-size: 1rem;
}

.footer-credits > a {
    color: var(--white);
}





/* ----------------MENTIONS LÉGALES------------------ */
.legals-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 85%;
}

.legals-wrapper {
    margin: 80px 0;
}



 /* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    h1, h2 {
        padding-top: 60px;
        margin-bottom: 40px !important;
        font-size: 2.2rem;
    }

    h3 {
        font-size: 2rem;
    }

    h4 {
        font-size: 0.9rem;
    }

    .nav-wrapper {
        margin-top: 20px;
    }

    .menu-ticketing {
        margin-right: 0.8rem;
        font-size: 1rem;
    }

    .burger-icon {
        width: 30px;
        height: 30px;
        margin-right: 25px;
    }

    .burger-icon span{
        width: 15px;
        height: 2px;
    }

    .burger-icon span:not(:last-child){
        margin-bottom: 2px;
    }

    .burger-icon.open span:nth-child(1) {
        top: 4px;
    }

    .burger-icon.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: -4px;
    }

    .nav-links {
        position: absolute;
        display: flex;
        flex-direction: column;
        top: 0;
        right: 0;
        margin: 0;
        padding: 70px 0 18px 24px;
        background-color: var(--white);
        font-family: 'Gibson', sans-serif;
        font-size: 0.8rem;
        font-weight: bold;
        list-style: none;
        transition: all ease 0.4s;
        z-index: 101;
    }


    .nav-links > li > a {
        width: 148px;
        height: 30px;
    }

    /* --- ACCUEIL --- */

    .home-links {
        justify-content: center;
        padding: 26px 14px;
    }

    .nav-ticketing {
        display: none;
    }

    .socials-icons > a:not(:last-child) {
        margin-right: 17px;
    }

    .socials-icons {
        height: 43px;
    }



    /* --- BILLETTERIE --- */

    .ticketing-title {
        margin-bottom: 25px;
    }

    .date-search-wrapper {
        height: 53px;
        width: 60%;
        margin-bottom: 30px;
    }

    .date-search-input {
        width: 100%;
    }

    .date-search-input,
    .date-search-input::placeholder,
    .date-search-button {
        font-size: 0.9rem;
    }

    .country-list {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .country-button {
        height: 40px;
        margin: 0;
        border: none;
        border-top: var(--darkBlue) solid 2.5px;
        border-left: var(--darkBlue) solid 2.5px;
        border-right: var(--darkBlue) solid 2.5px;
        font-size: 0.8rem;

    }

    .country-button:last-child {
        border-bottom: var(--darkBlue) solid 2.5px;
    }

    .country-button > img {
        height: 1rem;
    }

    .date-list-container {
        max-height: 684px;
        margin-bottom: 40px;
    }

    .date-list {
        font-size: 0.9rem;
        width: 60%;
    }

    .date-list >li {
        flex-direction: column;
        justify-content: center;
        height: initial;
        padding: 15px 0 30px 0;
        border-top: var(--darkBlue) 2px solid;
    }

    .date-list > li:last-child {
        border-bottom: var(--darkBlue) 2px solid;
    }

    .date-infos-wrapper {
        flex-direction: column;
        border-top: none;
        height: initial;
    }

    .date-list > li:last-child > .date-infos-wrapper {
        border-bottom: none;
    }

    .date-cel {
        width: initial;
        padding-right: 0;
        margin-bottom: 8px;
    }

    .date-location {
        flex-direction: column;
        align-items: center;
    }

    .date-city {
        width: initial;
        padding-right: 0;
        margin-bottom: 8px;
    }

    .date-theater {
        margin-bottom: 15px;
    }

    .date-button-wrapper {
        padding-left: 0;
    }

    .date-button {
        width: 115px;
        height: 40px;
        font-size: 0.9rem
    }

    .date-button.disabled {
        width: 110px;
        height: 35px;
    }

    .date-list-opener {
        margin-bottom: 40px;
        font-size: 1rem;
    }

    .google-map-custom {
        height: 120vw;
    }


    /* --- LES SPECTACLES / LES EMISSIONS TV --- */

    .shows-list,
    .TVshows-list {
        width: 88%;
        height: 670px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .shows-grid,
    .TVshows-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-column-gap: 4.4vw;
        grid-row-gap: 4.4vw;
    }

    .show-card-title,
    .TVshow-card-title {
        opacity: 1;
        font-size: 1rem;
    }

    .show-element,
    .TVshow-element {
        flex-direction: column;
        justify-content: unset;
    }

    .show-close,
    .TVshow-close {
        margin-right: 0;
    }

    .show-close > span,
    .TVshow-close > span {
        width: 30px;
        height: 3px;
    }

    .show-close > span:nth-child(1),
    .TVshow-close > span:nth-child(1) {
        top: 5px !important;
    }

    .show-close > span:last-child,
    .TVshow-close > span:last-child {
        top: -5px !important;
    }

    .show-left,
    .show-right,
    .TVshow-left,
    .TVshow-right {
        width: 90%;
        margin: 0;
        padding: 5%;
        padding-top: 10%;
    }

    .show-left > img,
    .TVshow-left > img {
        height: 70vw;
        width: auto;
        object-fit: cover;
        margin-top: 30px;
        margin-bottom: 12px;
    }

    .show-title,
    .TVshow-title {
        padding-bottom: 2px;
        margin-bottom: 12px;
    }

    .show-subtitle,
    .TVshow-subtitle {
        margin-bottom: 12px;
    }



    /* --- BIOGRAPHIE --- */

    .bio-element {
        flex-direction: column-reverse;
        width: 88%;
    }

    .bio-left {
        width: 100%;
        height: 60vh;
    max-height: 60vh;
        padding-left: 0;
        padding-right: 4px;
        direction: ltr;
    }

    .bio-subtitle-wrapper {
        margin-bottom: 10px;
    }

    .bio-subtitle {
        padding-bottom: 2px;
    }
    
    .bio-subtitle-underline {
        width: 85%;
        height: 2.5px;
        margin-bottom: 10px;
    }

    .bio-text {
        text-align: start;
    }

    .bio-right {
        width: 100%;
    }

    .bio-right > img {
        height: 50vw;
        width: 100%;
        object-fit: cover;
        margin-bottom: 12px;
    }



    /* ---  BELLAIR & SANDMAN --- */

    .partners-section {
        padding-bottom: 50px;
    }

    .partners-container {
        flex-direction: column;
        width: 88%;
    }

    .partner-wrapper {
        align-items: flex-start;
        width: 100%;
        margin: 0;
    }

    .partner-wrapper:nth-child(1) {
        margin-bottom: 70px;
    }

    .partner-wrapper > img {
        margin-bottom: 12px;
    }

    .partner-mobile-title {
        display: initial;
        margin: 0;
        padding-bottom: 2px;
        margin-bottom: 12px;
        width: 200px;
        border-bottom: var(--darkBlue) 2.5px solid;
        line-height: 2.5rem;
    }

    .partner-text,
    .partner-title {
        width: 80%;
        margin-bottom: 12px;
    }



    /* --- ACTUALITÉS --- */

    .insta-slider {
        margin-bottom: 100px;
    }

    .insta-slider-card > a {
        padding: 0;
        margin: 24px;
        transition: all 0.4s ease-in-out;
    }

    .insta-slider-card.slick-active > a {
        margin: 0;
    }



    /* --- CONTACT --- */

    .contacts-section {
        padding-bottom: 80px;
    }

    .contacts-title {
        margin-bottom: 25px !important;
    }

    .contacts-container {
        width: 88%;
    }

    .contact-wrapper:not(:last-child) {
        margin-bottom: 10px;
    }

    .contact-infos {
        font-size: 0.9rem;
    }

    .insta-card-title-wrapper {
        justify-content: center;
    }

    .insta-card-title {
        width: initial;
        text-align: center;
        padding-bottom: 12px;
    }

    .my-checkbox-wrapper {
        font-size: 1.1rem;
    }

    .my-form {
        width: 88%;
        margin-bottom: 80px;
    }

    .my-input {
        height: 42px;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .my-checkbox-wrapper {
        margin-bottom: 12px;
    }

    .my-checkbox-wrapper > label {
        width: initial;
    }

    .my-button {
        width: 115px;
        height: 40px;
        font-size: 0.9rem;
    }



    /* --- NEWSLETTER --- */

    .newsletter-container {
        width: 100%;
    }

    .newsletter-title {
        text-wrap: initial;
        text-align: center;
        margin-bottom: 30px !important;
    }

    .newsletter-intro {
        max-width: 580px;
        width: 88%;
        margin-bottom: 44px;
        text-align: center;
    }

    .newsletter-intro {
        font-size: 0.9rem;
    }



    /* --- FOOTER --- */

    .footer-title {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .footer-socials-icons {
        height: 32px;
        margin-bottom: 40px;
    }

    .footer-socials-icons > a:not(:last-child) {
        margin-right: 8px;
    }

    .footer-credits {
        text-align: center;
        font-size: 0.8rem;
    }
}