* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

/* PT Sans */
@font-face {
    font-family: 'PT Sans';
    src: url('fonts/PT_Sans/PTSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Futura PT Light */
@font-face {
    font-family: 'Futura PT Light';
    src: url('fonts/futura-pt-webfont/FuturaCyrillicLight.woff') format('woff'),
         url('fonts/futura-pt/FuturaCyrillicLight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Futura PT Bold */
@font-face {
    font-family: 'Futura PT Bold';
    src: url('fonts/futura-pt-webfont/FuturaCyrillicBold.woff') format('woff'),
         url('fonts/futura-pt/FuturaCyrillicBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    /* --color1: #00DEFF; */
    --color1: #00ffff;
    --color1-hover: #00cccc;
    /* --color2: #FF8E6B; */
    --color2: #ff00bb;
    --color2-hover: #cc0094;
    /* --color3: #D953FF; */
    --color3: #02ff17;
    --color3-hover: #02cc13;
    --color-text1: black;
    --color-text2: white;
    --color-text3: grey;
    --font-family1: 'Futura PT Light', sans-serif;
    --font-family1-bold: 'Futura PT Bold', sans-serif;
    --font-family2: 'PT Sans', sans-serif;
    --font-size-base: 1rem;
    --font-size-base-quote-mark: 600px;
    --width-portrait-photo-base: 400px;
    --width-blue-square2-base: 300px;
    --height-blue-square2-base: 320px;
    --top-blue-square2-base: -40px;
    --right-portrait-photo-container-base: 100px;
}

.background-color1 {
    background-color: var(--color1);
}

.background-color2 {
    background-color: var(--color2);
}

.background-color3 {
    background-color: var(--color3);
}

/* Désactiver les clics sur les fonds de couleur */
.background-color1,
.background-color2,
.background-color3 {
    pointer-events: none; /* Désactive les clics et le curseur sur ces éléments */
    cursor: default; /* Remet le curseur par défaut */
}

.font-color-text2 {
    color: var(--color-text2);
}

.font-color-text3 {
    color: var(--color-text3);
}


/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    top: 0;
    padding: 30px;
    z-index: 1000;
}

.transparent-navbar {
    background: transparent;
    position: absolute;
}

.transparent-navbar-position-fixed {
    background: transparent;
    position: fixed;
}

.solid-navbar {
    background: white;
    position: fixed;
}

.logo img {
    max-height: 70px;
    /* max-height: 150px; */
    transition: opacity 0.3s ease;
}

.logo img.logo-default {
    display: block;
}

.logo img.logo-hover {
    display: none;
}

.logo:hover img.logo-default {
    display: none;
}

.logo:hover img.logo-hover {
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    /* margin-left: 40px; */
    text-align: center;
}

.nav-links a {
    text-decoration: none;
    transition: color 0.3s;
    text-transform: uppercase;
    font-family: var(--font-family2);
    letter-spacing: .05rem;
}

.nav-links a:hover {
    color: var(--color1);
}

/* Video Section */
.video-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Styles for the video sound toggle button */
.sound-toggle {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.sound-toggle img {
    width: 100px;
}

/* Vertical boutton */
.blue-btn a {
    background-color: var(--color1);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-family2);
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
}

.vertical-button {
    position: fixed;
    bottom: 20px;
    right: 0;
}

.vertical-button a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    background-color: var(--color1);
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-family2);
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
}

.horizontal-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color1);
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-family2);
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
}

.discover-more a:hover {
    background-color: var(--color1-hover);
}

.hover-image {
    opacity: 0;
    visibility: hidden;
    width: 0;
    transition: all 0.5s ease; /* Transition pour l'effet de glissement */
}

.order-btn:hover .hover-image {
    opacity: 1;
    visibility: visible;
    width: 250px;
    transform: rotate(-180deg);
    transition: all 0.5s ease; /* Transition fluide de 0.5s */
    background-color: var(--color1);
}

/* Exhibitions */
.exhibitions-gallery, .press-gallery {
    display: grid;
    gap: 0;
    width: 100vw;
    height: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

/* Masquer l'animation au départ */
.hover-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Empêche l'animation d'être cliquable directement */
}

/* Afficher l'animation au survol */
.gallery-item:hover .hover-animation {
    opacity: 1;
}

/* Réduire l'opacité de l'image au survol pour montrer l'animation */
.gallery-item:hover img {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.gallery-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    margin: 0;
}

.exhibitions-description-section {
    font-family: var(--font-family2);
    background-color: var(--color2);
    color: var(--color-text2);
}

.exhibitions-description-section h1 {
    text-transform: uppercase;
    /* background-color: var(--color2); */
    /* padding: 40px 20px; */
}
  
.exhibition-item h2 {
    font-family: var(--font-family2);
    color: var(--color-text2);
}

.exhibition-item p {
    font-family: var(--font-family1);
    color: var(--color-text2);
}


/* Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.9); 
}

.modal-content {
    display: flex;
    /* flex-direction: row; */
    /* justify-content: space-between; */
    align-items: flex-start;
    margin: auto;
    max-width: 80%;
    background-color: var(--color2);
    border-radius: 0;
}

.carousel {
    flex: 1;
    overflow: hidden;
}

.carousel img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.carousel-item img {
    max-height: 600px;
}

.carousel-inner {
    transition: transform 0.5s ease-in-out;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    background-color: var(--color3) !important;
    opacity: 1 !important;
    border-radius: 50%;
    border: none;
    margin: 0 4px;
}

.carousel-indicators .active {
    background-color: var(--color1) !important;
}

#modal-title {
    text-transform: uppercase;
}

#modal-title, #modal-subtitle {
    color: var(--color-text2);
    font-family: var(--font-family2);
    letter-spacing: .1rem;
    margin: 5px;
}

#modal-subtitle {
    font-style: italic;
}

.modal-description p {
    color: var(--color-text2);
    font-family: var(--font-family1);
}

.modal-description {
    flex: 1;
    /* max-width: 50%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 30px;
}

.close {
    position: absolute;
    top: 10px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Press */
.press-description-section {
    background-color: var(--color2);
}

.press-description-section p {
    color: var(--color-text2);
    text-transform: uppercase;
    font-family: var(--font-family1);
}

.press-description-section h1 {
    color: var(--color-text2);
    text-transform: uppercase;
    font-family: var(--font-family2);
}

.modal-description a {
    color: var(--color-text2);
}

.modal-description a:hover {
    color: var(--color1);
}

/* About */
.about-cover-image-container {
    position: relative;
    width: 85%;
    margin: 0 auto;
    margin-top: 150px;
}

.blue-square1 {
    width: 35%;
    height: 70%;
    background-color: var(--color3);
    position: absolute;
    top: -5%;
    left: -5%;
    z-index: 1;
}

.about-cover-image {
    width: 100%;
    height: auto; /* Pour garder le ratio de l'image */
    display: block; /* Évite les espaces blancs sous l'image */
    position: relative;
    z-index: 2;
}

.quote-mark {
    position: absolute;
    right: 5%;
    /* bottom: -600px; */
    /* font-size: 600px; */
    color: var(--color3);
    font-weight: bold;
    z-index: 3;
    font-family: var(--font-family2);
    letter-spacing: .1rem;
}

.about-description-text {
    text-transform: uppercase;
    /* font-size: 1.5em; */
    font-family: var(--font-family1);
    letter-spacing: .05rem;
}

.about-description-text strong {
    font-family: var(--font-family1-bold);
}

.biography {
    /* font-size: 1.1rem; */
    font-family: var(--font-family1);
}

.artistic-approach {
    background-color: var(--color2);
    padding: 20px;
    position: relative;
}

.artistic-approach-description h3 {
    font-family: var(--font-family2);
    font-weight: bold;
}
  
.artistic-approach-content {
    width: 85%;
    margin: 0 auto;
    color: white;
}

.artistic-approach-content p {
    font-family: var(--font-family1);
}
  
.portrait-photo-container {
    position: absolute;
    /* right: 100px; */
    /* bottom: -480px; */
}
  
.blue-square2 {
    position: absolute;
    /* width: 300px;
    height: 320px; */
    background-color: var(--color1);
    /* top: -40px;
    right: -40px; */
    z-index: 1;
}
  
.portrait-photo {
    position: relative;
    z-index: 2;
    /* width: 400px; */
    height: auto;
}

.credits {
    font-family: var(--font-family1);
}

/* Order */
.order-description-section {
    padding-top: 100px;
    background-color: var(--color2);
    color: var(--color-text2);
}

.order-description-section h1 {
    text-transform: uppercase;
    font-family: var(--font-family1-bold);
}

.order-description-section p {
    text-transform: uppercase;
    /* font-size: 1.5em; */
    letter-spacing: .05rem;
}

.order-description {
    font-family: var(--font-family1);
}

.price {
    font-family: var(--font-family1-bold);
}

.price-legend {
    font-family: var(--font-family2);
}

.video-container video {
    width: 100%;
    /* aspect-ratio: 1 / 1; */
    max-height: 600px;
}

.order-form-section {
    background-color: var(--color1);
}

::placeholder {
    font-family: --var(--font-family2);
    text-transform: uppercase;
}

.order-form-section .form-control {
    border-radius: 0;
}

.send-request-btn {
    background-color: var(--color3);
    border-radius: 0;
    border: none;
    padding: 15px 30px;
    font-family: var(--font-family1-bold);
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
}

.send-request-btn:hover {
    background-color: var(--color3-hover);
}

.order-carousel-section {
    background-color: var(--color3);
}

/* Video */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin: auto;
}

#heads-video {
    display: block;
    width: 100%;
}
  
#playButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

#playButton svg path {
  fill: var(--color1);
}

#playButton svg {
    width: 70px;
    height: 70px;
}


/* Media queries */
@media (max-width: 576px) {
    .order-description-section p {
        font-size: calc(var(--font-size-base) * 0.9);
    }
    .quote-mark {
        font-size: calc(var(--font-size-base-quote-mark) * 0.35);
        bottom: calc(var(--font-size-base-quote-mark) * -0.35);
    }
    .about-description-text {
        font-size: calc(var(--font-size-base) * 0.85);
    }
    .biography {
        font-size: calc(var(--font-size-base) * 0.7);
    }
    .artistic-approach-content p {
        font-size: calc(var(--font-size-base) * 0.8);
    }
    .portrait-photo {
        width: calc(var(--width-portrait-photo-base) * 0.38);
    }
    .blue-square2 {
        width: calc(var(--width-blue-square2-base) * 0.5);
        height: calc(var(--height-blue-square2-base) * 0.5);
        top: calc(var(--top-blue-square2-base) * 0.5);
        right: calc(var(--top-blue-square2-base) * 0.5);
    }
    .portrait-photo-container {
        right: calc(var(--right-portrait-photo-container-base) * 0.3);
        bottom: -240px;
    }
    .exhibitions-gallery, .press-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
    .modal-content {
        flex-direction: column;
    }
    #exhibitions-carousel {
        max-width: 100%;
    }
    .modal-description {
        max-width: 90%;
    }
    #modal-title {
        font-size: calc(var(--font-size-base) * 1.2);
    }
    #modal-subtitle {
        font-size: calc(var(--font-size-base) * 1);
    }
    .modal-description p {
        font-size: calc(var(--font-size-base) * 0.7);
    }
    .video-section {
        display: none;
    }
    .gallery-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(14, 1fr);
        gap: 0;
        width: 100vw;
        height: auto;
    }
    .vertical-button {
        display: none;
    }
    .vertical-button a {
        font-size: small;
    }
    .blue-btn a {
        font-size: small;
    }
    .logo img {
        max-height: 50px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .order-description-section p {
        font-size: calc(var(--font-size-base) * 0.9);
    }
    .quote-mark {
        font-size: calc(var(--font-size-base-quote-mark) * 0.45);
        bottom: calc(var(--font-size-base-quote-mark) * -0.45);
    }
    .about-description-text {
        font-size: calc(var(--font-size-base) * 1);
    }
    .biography {
        font-size: calc(var(--font-size-base) * 0.8);
    }
    .portrait-photo {
        width: calc(var(--width-portrait-photo-base) * 0.8);
    }
    .blue-square2 {
        width: calc(var(--width-blue-square2-base) * 0.8);
        height: calc(var(--height-blue-square2-base) * 0.8);
        top: calc(var(--top-blue-square2-base) * 0.8);
        right: calc(var(--top-blue-square2-base) * 0.8);
    }
    .portrait-photo-container {
        right: calc(var(--right-portrait-photo-container-base) * 0.7);
    }
    .exhibitions-gallery, .press-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    .modal-content {
        flex-direction: row;
    }
    .modal-description, #exhibitions-carousel {
        max-width: 50%;
    }
    #modal-title {
        font-size: calc(var(--font-size-base) * 0.75);
    }
    #modal-subtitle {
        font-size: calc(var(--font-size-base) * 0.65);
    }
    .modal-description p {
        font-size: calc(var(--font-size-base) * 0.5);
    }
    .video-section {
        display: none;
    }
    .gallery-section {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(9, 1fr);
        gap: 0; 
        width: 100vw;
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .order-description-section p {
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .quote-mark {
        font-size: calc(var(--font-size-base-quote-mark) * 0.5);
        bottom: calc(var(--font-size-base-quote-mark) * -0.5);
    }
    .about-description-text {
        font-size: calc(var(--font-size-base) * 1.3);
    }
    .biography {
        font-size: calc(var(--font-size-base) * 1);
    }
    .portrait-photo {
        width: calc(var(--width-portrait-photo-base) * 0.9);
    }
    .blue-square2 {
        width: calc(var(--width-blue-square2-base) * 0.9);
        height: calc(var(--height-blue-square2-base) * 0.9);
        top: calc(var(--top-blue-square2-base) * 0.9);
        right: calc(var(--top-blue-square2-base) * 0.9);
    }
    .portrait-photo-container {
        right: calc(var(--right-portrait-photo-container-base) * 0.9);
    }
    .exhibitions-gallery, .press-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .modal-content {
        flex-direction: row;
    }
    .modal-description, #exhibitions-carousel {
        max-width: 50%;
    }
    #modal-title {
        font-size: calc(var(--font-size-base) * 0.9);
    }
    #modal-subtitle {
        font-size: calc(var(--font-size-base) * 0.8);
    }
    .modal-description p {
        font-size: calc(var(--font-size-base) * 0.65);
    }
    .video-section {
        display: none;
    }
    .gallery-section {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(7, 1fr);
        gap: 0;
        width: 100vw;
        height: auto;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .order-description-section p {
        font-size: calc(var(--font-size-base) * 1.3);
    }
    .quote-mark {
        font-size: var(--font-size-base-quote-mark);
        bottom: calc(var(--font-size-base-quote-mark) * (-1));
    }
    .about-description-text {
        font-size: calc(var(--font-size-base) * 1.5);
    }
    .biography {
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .artistic-approach-content p {
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .portrait-photo {
        width: calc(var(--width-portrait-photo-base) * 0.9);
    }
    .blue-square2 {
        width: calc(var(--width-blue-square2-base) * 1);
        height: calc(var(--height-blue-square2-base) * 1);
        top: calc(var(--top-blue-square2-base) * 1);
        right: calc(var(--top-blue-square2-base) * 1);
    }
    .portrait-photo-container {
        right: calc(var(--right-portrait-photo-container-base) * 1);
        bottom: -480px;
    }
    .exhibitions-gallery, .press-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .modal-content {
        flex-direction: row;
    }
    .modal-description, #exhibitions-carousel {
        max-width: 50%;
    }
    #modal-title {
        font-size: calc(var(--font-size-base) * 1.5);
    }
    #modal-subtitle {
        font-size: calc(var(--font-size-base) * 1.3);
    }
    .modal-description p {
        font-size: calc(var(--font-size-base) * 0.9);
    }
    /* Gallery Section (Initially hidden) */
    .gallery-section {
        display: none;
    }
    /* Show the gallery section after the video ends */
    .show-gallery .gallery-section {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(7, 1fr);
        gap: 0; /* Aucun espace entre les cellules */
        width: 100vw; /* Prend toute la largeur de la fenêtre */
        height: auto;
    }
    /* Hide the video section after the video ends */
    .show-gallery .video-section {
        display: none;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .order-description-section p {
        font-size: calc(var(--font-size-base) * 1.4);
    }
    .quote-mark {
        font-size: calc(var(--font-size-base-quote-mark) * 1.2);
        bottom: calc(var(--font-size-base-quote-mark) * -1.2);
    }
    .about-description-text {
        font-size: calc(var(--font-size-base) * 1.6);
    }
    .biography {
        font-size: calc(var(--font-size-base) * 1.3);
    }
    .artistic-approach-content p {
        font-size: calc(var(--font-size-base) * 1.3);
    }
    .portrait-photo {
        width: calc(var(--width-portrait-photo-base) * 1.2);
    }
    .blue-square2 {
        width: calc(var(--width-blue-square2-base) * 1.2);
        height: calc(var(--height-blue-square2-base) * 1.2);
        top: calc(var(--top-blue-square2-base) * 1.2);
        right: calc(var(--top-blue-square2-base) * 1.2);
    }
    .portrait-photo-container {
        right: calc(var(--right-portrait-photo-container-base) * 1);
    }
    .exhibitions-gallery, .press-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .modal-content {
        flex-direction: row;
    }
    .modal-description, #exhibitions-carousel {
        max-width: 50%;
    }
    #modal-title {
        font-size: calc(var(--font-size-base) * 1.8);
    }
    #modal-subtitle {
        font-size: calc(var(--font-size-base) * 1.5);
    }
    .modal-description p {
        font-size: calc(var(--font-size-base) * 1.1);
    }
    /* Gallery Section (Initially hidden) */
    .gallery-section {
        display: none;
    }
    /* Show the gallery section after the video ends */
    .show-gallery .gallery-section {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(7, 1fr);
        gap: 0; /* Aucun espace entre les cellules */
        width: 100vw; /* Prend toute la largeur de la fenêtre */
        height: auto;
    }
    /* Hide the video section after the video ends */
    .show-gallery .video-section {
        display: none;
    }
}

@media (min-width: 1400px) and (max-width: 2000px) {
    .order-description-section p {
        font-size: calc(var(--font-size-base) * 1.6);
    }
    .quote-mark {
        font-size: calc(var(--font-size-base-quote-mark) * 1.5);
        bottom: calc(var(--font-size-base-quote-mark) * -1.5);
    }
    .about-description-text {
        font-size: calc(var(--font-size-base) * 1.8);
    }
    .biography {
        font-size: calc(var(--font-size-base) * 1.5);
    }
    .artistic-approach-content p {
        font-size: calc(var(--font-size-base) * 1.5);
    }
    .portrait-photo {
        width: calc(var(--width-portrait-photo-base) * 1.5);
    }
    .blue-square2 {
        width: calc(var(--width-blue-square2-base) * 1.5);
        height: calc(var(--height-blue-square2-base) * 1.5);
        top: calc(var(--top-blue-square2-base) * 1.5);
        right: calc(var(--top-blue-square2-base) * 1.5);
    }
    .portrait-photo-container {
        right: calc(var(--right-portrait-photo-container-base) * 1);
    }
    .exhibitions-gallery, .press-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .modal-content {
        flex-direction: row;
    }
    .modal-description, #exhibitions-carousel {
        max-width: 50%;
    }
    #modal-title {
        font-size: calc(var(--font-size-base) * 2);
    }
    #modal-subtitle {
        font-size: calc(var(--font-size-base) * 1.7);
    }
    .modal-description p {
        font-size: calc(var(--font-size-base) * 1.2);
    }
    /* Gallery Section (Initially hidden) */
    .gallery-section {
        display: none;
    }
    /* Show the gallery section after the video ends */
    .show-gallery .gallery-section {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(7, 1fr);
        gap: 0; /* Aucun espace entre les cellules */
        width: 100vw; /* Prend toute la largeur de la fenêtre */
        height: auto;
    }
    /* Hide the video section after the video ends */
    .show-gallery .video-section {
        display: none;
    }
}

@media (min-width: 2000px) {
    .order-description-section p {
        font-size: calc(var(--font-size-base) * 1.6);
    }
    .quote-mark {
        font-size: calc(var(--font-size-base-quote-mark) * 1.5);
        bottom: calc(var(--font-size-base-quote-mark) * -1.5);
    }
    .about-description-text {
        font-size: calc(var(--font-size-base) * 2.3);
    }
    .biography {
        font-size: calc(var(--font-size-base) * 2);
    }
    .artistic-approach-content p {
        font-size: calc(var(--font-size-base) * 2);
    }
    .portrait-photo {
        width: calc(var(--width-portrait-photo-base) * 1.5);
    }
    .blue-square2 {
        width: calc(var(--width-blue-square2-base) * 1.5);
        height: calc(var(--height-blue-square2-base) * 1.5);
        top: calc(var(--top-blue-square2-base) * 1.5);
        right: calc(var(--top-blue-square2-base) * 1.5);
    }
    .portrait-photo-container {
        right: calc(var(--right-portrait-photo-container-base) * 1);
    }
    .exhibitions-gallery, .press-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    .modal-content {
        flex-direction: row;
    }
    .modal-description, #exhibitions-carousel {
        max-width: 50%;
    }
    #modal-title {
        font-size: calc(var(--font-size-base) * 2.5);
    }
    #modal-subtitle {
        font-size: calc(var(--font-size-base) * 2.1);
    }
    .modal-description p {
        font-size: calc(var(--font-size-base) * 1.7);
    }
    /* Gallery Section (Initially hidden) */
    .gallery-section {
        display: none;
    }
    /* Show the gallery section after the video ends */
    .show-gallery .gallery-section {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(7, 1fr);
        gap: 0; /* Aucun espace entre les cellules */
        width: 100vw; /* Prend toute la largeur de la fenêtre */
        height: auto;
    }
    /* Hide the video section after the video ends */
    .show-gallery .video-section {
        display: none;
    }
    .vertical-button a {
        font-size: xx-large;
    }
    .blue-btn a {
        font-size: xx-large;
    }
    .exhibitions-description-section h1 {
        font-size: calc(var(--font-size-base) * 4);
    }
    .exhibitions-description-section h2 {
        font-size: calc(var(--font-size-base) * 3.5);
    }
    .exhibitions-description-section p {
        font-size: calc(var(--font-size-base) * 2.5);
    }
    .nav-links a {
        font-size: xx-large;
    }
    .logo img {
        max-height: 120px;
    }
}