body {
    margin: 0;
    padding: 0;
    font-family: the-seasons, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 25px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    justify-content: space-between;
    text-align: center;
    overflow: hidden;
}

#background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#background-image.visible {
    opacity: 1;
}

.content {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    color: white;
    cursor: none;
}

.top-text {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: the-seasons, sans-serif;
    font-weight: 500;
    font-size: 45px;
    background-color: transparent;
    z-index: 1000; 
}

.top-text-event {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-family: the-seasons, sans-serif;
    font-weight: 500;
    font-size: 35px;
    background-color: transparent;
    line-height: 25px;
    z-index: 1000;
    width: 100%;
}

.top-text-event span{
    font-size: 18px;
}

.centered-text {
    position: fixed;
    bottom: 20vh;
    max-width: 70%;
}

.centered-text p {
    font-size: 1.6em;
    margin: 0;
}

.centered-text span{
    font-family: "ivyora-display", "the-seasons", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.1em;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    font-family: the-seasons, sans-serif;
    font-weight: 700;
    color: white;
    font-size: 16px;
    transform: translate(-50%, -50%);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: transform 0.1s ease;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.video-button {
    display: none;
}

/*PAGE 2*/

.main-content {
    display: flex;
    flex-grow: 1;
    position: relative;
    height: calc(100vh - 35px);
}

#map {
    flex-grow: 1;
    height: 100vh;
    width: 100vw;
    position: relative;
    transition: right 1s, width 1s;
    z-index: 1;
}

.leaflet-tile-container .leaflet-tile {
    filter: opacity(100%) grayscale(80%);
}

.leaflet-tooltip {
    display: none !important;
}

.leaflet-popup-content-wrapper {
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.825);
    padding-left: 20px;
    padding-right: 20px;
    font-family: the-seasons, sans-serif;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 0px;
    min-width: 70px;
    max-width: 250px; /* Limite la largeur maximale du popup */
    word-wrap: break-word;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.163);
}

.leaflet-popup-content {
    margin: 0;
    padding: 0;
}

.leaflet-popup-tip {
	background: rgba(255, 255, 255, 0.8);
}
.leaflet-popup-tip-container {
    display: none; /* Masquer la pointe du popup */
}
.leaflet-popup-close-button {
    display: none;
}

.leaflet-control-geocoder {
    position: relative !important;
    top: 15px !important;
    right: 15px !important;
    width: 30px !important;
    height: 30px !important;
    max-width: 250px !important;
    border: none !important;
    border-radius: 50% !important;
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    overflow: visible !important;
}

.leaflet-control-geocoder.leaflet-control-geocoder-expanded {
    width: 250px !important;
    border-radius: 15px !important;
}

/* Icône de recherche */
.leaflet-control-geocoder-icon {
    width: 30px !important;
    height: 30px !important;
    border: none !important;
    border-radius: 50% !important;
    background-color: white !important;
    background-size: 65% !important;
    background-position: center !important;
    box-shadow: none !important;
    cursor: pointer !important;
    display: block !important;
    pointer-events: auto !important;
}

/* Masquer l'icône quand étendu */
.leaflet-control-geocoder.leaflet-control-geocoder-expanded .leaflet-control-geocoder-icon {
    display: none !important;
}

/* Formulaire de recherche */
.leaflet-control-geocoder-form {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
    border-radius: inherit !important;
    pointer-events: none !important;
    transition: all 0.3s ease !important;
}

.leaflet-control-geocoder.leaflet-control-geocoder-expanded .leaflet-control-geocoder-form {
    width: 250px !important;
    pointer-events: auto !important;
}

/* Champ de saisie */
.leaflet-control-geocoder-form input {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 30px !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 15px !important;
    background: white !important;
    font-family: the-seasons, sans-serif !important;
    font-size: 14px !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

/* Champ de saisie étendu */
.leaflet-control-geocoder.leaflet-control-geocoder-expanded input {
    width: 250px !important;
    padding: 0 20px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.leaflet-control-geocoder-form button {
    display: none !important;
}

.leaflet-control-geocoder-form .leaflet-control-geocoder-icon-close,
.leaflet-control-geocoder .leaflet-control-geocoder-icon-close,
.leaflet-control-geocoder-close {
    display: none !important;
    visibility: hidden !important;
}

/* Liste des résultats */
.leaflet-control-geocoder-alternatives {
    position: absolute !important;
    top: 30px !important;
    left: 0 !important;
    width: 250px !important;
    max-width: 250px !important;
    background: white !important;
    border-radius: 15px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    z-index: 1100 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    pointer-events: none !important;
}

.leaflet-control-geocoder.leaflet-control-geocoder-expanded .leaflet-control-geocoder-alternatives {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.leaflet-control-geocoder-alternatives::-webkit-scrollbar {
    width: 0;
    display: none;
}

.leaflet-control-geocoder-form button.leaflet-control-geocoder-icon-search,
.leaflet-control-geocoder-form .leaflet-control-geocoder-icon-close {
  display: none !important;
}

/* Affichage des résultats quand il y en a */
.leaflet-control-geocoder.leaflet-control-geocoder-expanded .leaflet-control-geocoder-alternatives {
    opacity: 1;
    visibility: visible;
}

/* Éléments de la liste des résultats */
.leaflet-control-geocoder-alternatives li {
    padding: 6px 10px;
    font-family: the-seasons, sans-serif;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    list-style: none;
    text-align: left;
}

.leaflet-control-geocoder-alternatives li:last-child { border-bottom: none; }
.leaflet-control-geocoder-alternatives li:nth-child(n+1) { display: none; }
.leaflet-control-geocoder-alternatives li:hover { background-color: #f5f5f5; }

.leaflet-control-geocoder-alternatives li[data-shown="true"] {
    display: block !important;
}

.leaflet-control-zoom {
    border: none !important;
    margin: 10px !important;
}

.leaflet-control-zoom-in {
    border: none !important;
    border-radius: 15px 15px 0 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    width: 30px !important;
    height: 35px !important;
    line-height: 30px !important;
    background-color: white !important;
}

.leaflet-control-zoom-out {
    border: none !important;
    border-radius: 0 0 15px 15px !important;
    width: 30px !important;
    height: 35px !important;
    line-height: 30px !important;
    background-color: white !important;
}

/* Style hover */
.leaflet-control-zoom-in:hover,
.leaflet-control-zoom-out:hover {
    background-color: #f4f4f4 !important;
}

.popup-title {
    font-size: 12px;
    font-weight: lighter;
    margin-top: 1px;
    margin-bottom: 0px;
}

.popup-type {
    font-size: 6px;
    font-weight: lighter;
    margin-top: 0px;
    margin-bottom: 1px;
    text-transform: uppercase;
}

.top-text2 {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 1s ease;
    font-weight: 500;
    font-size: 45px;
    z-index: 50;
}

.top-text2 a {
    color: #000;
    text-decoration: none;
}

.recenter-button {
    position: fixed;
    bottom: 60px;
    left: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease !important;
}

.recenter-button:hover {
    background-color: #f8f8f8;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.recenter-button:active {
    transform: scale(0.95);
}

.recenter-button img {
    animation: rotate 20s linear infinite;
    transition: opacity 0.3s ease !important;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

footer {
    padding: 0;
    z-index: 5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 35px;
    box-sizing: border-box;
    background-color: #f9f7f6;
}

.footer-content .left,
.footer-content .right {
    flex: 1;
}

.footer-content .left {
    text-align: left;
    align-items: center;
    font-family: the-seasons, sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding-left: 10px;
}

.footer-content .left a {
    color: inherit;
    text-decoration: none;
}

.footer-content .center {
    display: flex;
    flex: 2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer-content .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: the-seasons, sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding-right: 15px;
}

.footer-content .right p {
    display: inline;
    margin: 0;
}

.footer-content .right a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-content .right a:hover {
    color: inherit;
    text-decoration: underline;
}

.buttons {
    display: inline-flex;
    align-items: center;
}

.toggle-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: none;
    height: 100%;
    padding: 0 12px;
    margin: 0 4px;
    color: rgb(193, 193, 193);
    cursor: pointer;
    position: relative;
    font-family: the-seasons, sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.toggle-button.active {
    border: 1px solid #f7f5f3;
    border-radius: 25px;
    color: rgb(255, 255, 255);
    padding: 4px 12px;
    text-align: center;
}

#toggle-housing.active { background-color: #193156; }
#toggle-food.active { background-color: #7c2925; }
#toggle-stores.active { background-color: #bc7b69; }
#toggle-visit.active { background-color: #ddb378; }
#toggle-housing.active:hover { background-color: #354c6d; }
#toggle-food.active:hover { background-color: #935d5d; }
#toggle-stores.active:hover { background-color: #cc9c8f; }
#toggle-visit.active:hover { background-color: #e5c9a8; }
.toggle-button:not(.active):hover { color: #505050; }
.toggle-button.active:hover { color: white; }

/* POP-UP NEWSLETTER */

.popup-button {
    display: none;
}

.popup-container {
    display: none;
    align-content: center;
    position: fixed;
    bottom: 40px;
    right: 10px;
    background-color: #f9f7f6;
    border-radius: 15px;
    padding: 0;
    width: 400px;
    height: 200px;
    z-index: 6;
    box-shadow: 4px 3px 6px 2px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

.close-btn {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    z-index: 7;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95); /* Petit zoom + glisse */
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-overlay.active,
.popup-container.active {
    display: block;
}

/*SIDEBAR*/

#sidebar {
    position: fixed;
    top: 0;
    right: -40vw; /* Hors de la vue par défaut */
    height: calc(100vh - 35px);
    width: 40vw;
    background-color: #f0ede9;
    transition: right 1.2s; /* Animation de la transition */
    z-index: 1000; /* Assurez-vous que la barre latérale est au-dessus de la carte */
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 36px);
}

.event-banner {
    width: 100%;
    background-color: black;
    height: 30px;
    position: relative;
}

.marquee {
    width: 40vw;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
}

.marquee-content {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    color: white;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Ajuster l'espacement quand il y a un bandeau */
/*.sidebar-content.has-event-banner .header-overlay {
    padding-bottom: 10px;
}*/

.header-overlay {
    position: relative;
    padding: 0 20px;
    margin: 5px 0px 3px;
    color: black;
}

.sidebar-title {
    display: flex;
    font-weight: 700;
    font-size: 1.5em;
    padding-top: 3vh;
    padding-bottom: 6px;
    margin: 0;
    justify-content: center;
    color: black;
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.category-label {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.category-icon {
    display: flex;
    width: 12px;
    height: 15px;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sidebar-type {
    display: flex;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

.architect {
    font-weight: 500;
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 0;
    color: inherit;
    text-decoration: inherit;
    cursor: inherit;
}

.gallery-container {
    position: relative;
    min-height: 60vh;
    max-height: 75vh;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
}

.gallery {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery img.active {
    display: block;
}

.gallery-image {
    display: none;          /* Cachées sauf .active */
    position: absolute;     /* Superposées */
    width: 100%;
    height: 100%;
}
.gallery-image.active {
    display: block;         /* Seule visible */
}

.gallery-container:hover .prev,
.gallery-container:hover .next {
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    color: white;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    /*display: none;*/
    cursor: pointer;
    z-index: 10;
}

.prev { left: 6px; }
.next { right: 6px; }

.copyright-vertical {
    position: absolute;
    right: 5px;
    top: 5px;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-size: 7px;
    color: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

.dots {
    text-align: center;
    position: absolute;
    bottom: 7px;
    width: 100%;
    z-index: 10;
}

.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #717171;
}

.full-contenant {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto;
    margin: 5px;
}

.content-container {
    flex-direction: row; 
    padding: 15px;
    display: flex;
    gap: 20%;
}

.adress {
    width: 50%;
    text-align: left;
}

.adress p {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 500;
    font-size: 13px;
    margin: 0 0 0 0;
}

.info-container {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 8px 0;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.6;
}

.schedule-today {
    opacity: 1;
    font-weight: bold;
}

.schedule-day {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.schedule-hours {
    text-align: right;
}

.socials {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-container {
    display: flex;
    gap: 10px;
}

.link-button {
    margin: 10px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* Empêche le bouton de rétrécir */
}

.link-button a {
    display: inline-block;
    padding: 5px 20px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 25px;
    font-family: the-seasons, sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #000000;
}

.link-button a:hover {
    background-color: #c6bdb5;
    text-decoration: none;
}

.bottom-text {
    margin: 0 0 20px;
    padding: 0 15px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.bottom-text p {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: #555555;
    text-align: center;
    margin: 0;
    line-height: 1.4;
    max-width: 90%;
}

.sidebar-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.sidebar-icon:hover {
    transform: scale(0.85);  /* Réduit l'icône à 85% de sa taille originale */
}

/* MOBILE */

.menu-button { display: none; }
.menu-sidebar { display: none; }
.sidebar-close-mobile { display: none; }

/*PAGE 3 ABOUT */

.contenant {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
    background-color: #f0ede9;
    overflow-y: auto;
    overflow-x: hidden;
    align-items: center;
}

.contenant h2 { font-size: 30px; }

.top-header {
    position: sticky;
    width: 100%;
}

.back-button {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 24px;
    text-decoration: none;
    color: #000;
    z-index: 2;
}

.zone-1, .zone-2, .zone-3, .zone-4, .zone-5 {
    display: flex;
    width: 100vw;
}

.zone-1 {
    flex-direction: row;
    align-items: flex-end;
    margin-top: 18vh;
    gap: 80px;
}

.main-title {
    width: calc((100vw - 80px) / 2);
    font-size: 40px;
    padding-left: 2vw;
    margin-bottom: 0;
    text-align: left;
}

.background-image {
    height: 80vh;
    width: calc((100vw - 80px) / 2);
    object-fit: cover;
}

.zone-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25vh 0;
}

.zone-2 p {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
    font-size: 20px;
    max-width: 50%;
}

.line-separator {
    width: 200px;
    height: 0.75px;
    background-color: #000;
    margin-top: 20px;
}

.zone-3 {
    flex-direction: row;
    align-items: flex-end;
    gap: 50px;
}

.column-left {
    width: calc((100vw - 50px) / 2);
    padding-left: 10vw;
}

.content-image {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    margin-bottom: 8px;
}

.markers-buttons {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 4vh;
    justify-content: space-around;
}

.column-right {
    width: calc((100vw - 50px) / 2);
    text-align: left;
    padding-right: 10vw;
}

.column-right p {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-align: justify;
    margin-bottom: 5vh;
}

.zone-4 {
    flex-direction: column;
    margin: 30vh 0 20vh;
}

.container-text {
    text-align: left;
    padding-left: 10vw;
    width: 40%;
}

.container-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.container-text p {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
}

.container-zone {
  display: flex;          
  flex-direction: row;
  gap: 20px;
  margin-top: 5vh;
}

.ecosystem-navigation {
  width: 45vw;              
  padding-left: 10vw;
}

.ecosystem-tab {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    background: none;
    border: none;
    font-family: the-seasons, sans-serif;
    font-weight: 500;
    font-size: 24px;
    cursor: pointer;
    padding: 20px 0 5px;
    transition: opacity 0.3s ease;
}

.ecosystem-tab:hover { opacity: 0.7; }

.tab-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 0.75px;
    background-color: #000;
    transition: width 0.4s ease;
}

.ecosystem-tab.active .tab-line {
    width: 44vw;
}

.ecosystem-content {
  display: block;
  position: relative;
  text-align: left;
  width: 45vw;
}

.tab-content {
  display: none;
  position: absolute;
  left: 0;
  width: 80%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-content.active { 
    display: block; 
    opacity: 1; 
}

.tab-content p {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-size: 16px;
    width: 80%;
    margin: 0;
}

.zone-5 {
    flex-direction: column;
    padding: 15vh 0;
    gap: 35vh;
}

.contenant-1, .contenant-2 {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 50px;
}

.container-image {
    height: 80vh;
    width: calc((100vw - 50px) / 2);
    object-fit: cover;
}

.liner {
    width: calc((100vw - 50px) / 2);
    text-align: left;
    padding-right: 10vw;
}

.contenant-2 .liner {
    text-align: right;
    padding-left: 10vw;
    padding-right: 0;
}

.liner p {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 0;
}

.liner a {
    font-size: 20px;
    text-decoration: underline;
    color: #000;
}

.liner a:hover { font-style: italic; }

.copyright {
    width: 100%;
    text-align: center;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 600;
    font-size: 8px;
    padding: 10px 0;
    background-color: #f0ede9;
    color: #000000;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0ede9; }
::-webkit-scrollbar-thumb {
    background: #c6bdb5;
    border-radius: 2.5px;
}
::-webkit-scrollbar-thumb:hover { background: #999; }
* {
    scrollbar-width: thin;
    scrollbar-color: #c6bdb5 #ece7e1;
}

/* PAGE 4 CONTACT */

.container {
    display: flex;
    justify-content: center;  /* Centre horizontalement */
    align-items: center;      /* Centre verticalement */
    background-color: #f0ede9;
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow-y: auto;
}

.container .contact {
    text-align: center;
    justify-items: center;
    padding: 20px;
    margin: auto;
    max-width: 70vw;
}

.container .contact h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.container .contact h2 {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 10px;
    max-width: 50%;
}

.container .contact p {
    font-size: 21px;
    margin: 10px 0;
}

.container .contact a {
    text-decoration: none;
    color: inherit;
}

.container .contact a:hover {
    text-decoration: underline;
}

.container .contact span {
    font-size: 21px;
}

.separator {
    margin: 10px 0;
    display: block;
    font-size: 24px;
    line-height: 10px;
}

/* PAGE 5 TERMS */

.container .terms {
    font-size: 40px;
    text-align: center;
    position: absolute;
    max-width: 85vw;
    /*height: 100%;*/
    top: 50vh;
}

.container .terms .title {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.container .terms .conditions {
    column-count: 3;
    column-gap: 30px;
    padding-bottom: 40px;
}

.container .terms .conditions h1 {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: left;
}

.container .terms .conditions p {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-size: 12px;
    margin-top: 0px;
    margin-bottom: 15px;
    text-align: justify;
}

.credits {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 400;
    font-size: 8px;
    margin-top: 10px;
    text-align: justify;
}

/* PAGE NEWSLETTER */

.newsletter-container {
    display: flex;
    position: relative;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.background-newsletter {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.beehiiv-container {
    z-index: 1;
}

.beehiiv-container iframe {
    width: 909px;
    height: 372px;
    margin: 0;
    border-radius: 15px 15px 15px 15px !important;
    background-color: transparent;
    box-shadow: 0 0 #0000;
    max-width: 100%;
}