/* ===========================================
   HOULOC WEBSITE - SORTED CSS
   Desktop First Approach
   =========================================== */

/* --- IMPORTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@800&family=Space+Mono:wght@700&family=Syne:wght@800&display=swap');

/* --- CSS VARIABLES --- */
:root {
    --blue-bg: #0047ff;
    --white: #ffffff;
    --dark-text: #002d1a;
    --red-accent: #ff3333;
    --green-accent: #00FA9A;
     --green-accent-2: #207b4f;
    --yellow-accent: #fff800;
    --magenta-accent: #FFFFFF;
    --plum-accent: #ffffff;
    --morph-hover: #FFB7C5;
    --depth-shadow:
        0 1rem 2rem rgba(0, 0, 0, 0.1),
        0 2.5rem 5rem rgba(0, 0, 0, 0.2),
        0 63.75rem 7.5rem rgba(0, 0, 0, 0.25);
}

/* --- KEYFRAMES --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes vortexWave {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-0.1875rem) scale(1.05);
    }
}

@keyframes colorPulse {
    0%, 100% {
        color: var(--white);
    }
    50% {
        color: var(--morph-hover);
    }
}

/* --- RESET / BASE --- */
body, html {
    margin: 0;
    padding: 0;
    background: #0047ff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100vh;
    width: 100vw;
}

h1 {
    color: var(--dark-text);
    font-size: clamp(5rem, 10vw, 6rem);
    margin: 0;
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -0.125rem;
}

/* --- DESKTOP - Popup Centering --- */
@media screen and (min-width: 1025px) {
    #info-overlay {
        align-items: flex-start !important;
    }
}

/* --- LAYOUT --- */
.page-wrapper {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, auto);
    padding: 1.25rem;
    box-sizing: border-box;
    overflow: hidden;
    gap: 0.625rem;
    align-items: start;
}

/* --- SHAPES --- */
.shape {
    background: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.125rem 4.375rem;
    box-sizing: border-box;
    box-shadow: var(--depth-shadow);
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.shape:hover {
    transform: translate(-0.625rem, -0.625rem);
}

.green-shape {
    background: var(--green-accent);
    color: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.875rem 2.5rem;
    box-sizing: border-box;
    box-shadow: var(--depth-shadow);
    transition: transform 0.1s ease-out;
    will-change: transform;
    text-align: center;
}

/* --- BOX COMPONENTS - INDEX --- */
#box-top {
    grid-column: 5 / 13;
    grid-row: 1 / 5;
    border-radius: 6.25rem 4rem 12rem 6.25rem;
    z-index: 10;
    background: var(--white);
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
}

#box-top:hover {
    transform: scale(1.02);
}

#box-mid {
    grid-column: 1 / 7;
    grid-row: 3 / 6;
    border-radius: 7.5rem 6.25rem 12.5rem 3.125rem;
    z-index: 5;
    margin-top: -0.625rem;
    background: var(--white);
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
        transform: translateY(1rem);
}

#box-mid:hover {
    transform: translateY(1rem) scale(1.02);
}

#box-bottom {
    grid-column: 2 / 7;
    grid-row: 6 / 7;
    border-radius: 3.4375rem 4rem 5rem 6.25rem;
    z-index: 10;
    margin-top: -0.625rem;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
    transform: translateY(70px);
}

#box-bottom:hover {
    transform: translateY(70px) scale(1.02);
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
}

#event-box {
    grid-column: 8 / 12;
    grid-row: 5 / 8;
    border-radius: 5rem 4.375rem 6.25rem 1.25rem;
    z-index: 15;
    padding: 1.25rem 1.875rem;
    border: 4px solid var(--green-accent);
    box-shadow:
        inset 0 0 0 0.1875rem var(--green-accent),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    transform: translateY(0.4rem);
}

#event-box:hover {
    transform: translateY(0.4rem) scale(1.02);
}

#event-box {
    cursor: pointer;
}

#event-box h3.uppercase-label {
    font-size: 1.5rem;
    text-decoration: underline;
    
    color: var(--magenta-accent);
    margin: 0;
    margin-top: 1.5rem;
}

#event-box h2 {
    font-size: 2.5rem;
    margin: 0;
    line-height: 0.9;
    font-weight: 900;
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: var(--plum-accent);
}

#event-box p {
    font-size: 1.4rem;
    font-weight: 900;
    margin-top: 0.625rem;
    color: var(--plum-accent);
}

#green-dots {
    grid-column: 4/ 8;
    grid-row:  6 / 7;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    justify-content: space-around;
    align-items: center;
    padding: 1.25rem 0;
    border-radius: 6rem 10em 5rem 3.125rem;
    background: var(--white);
    z-index: 10;
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    transform: translateY(1.2rem);
   
}

#green-dots:hover {
   transform: translateY(1.2rem) scale(1.02);
}

#bientot-tag {
    display: none;
    grid-column: 9 / 10;
    grid-row: 5  / 6;
    background: var(--red-accent);
    color: var(--white);
    border-radius: 1.8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.5rem;
    z-index: 20;
    transform: rotate(0deg) translateY(0px);
    box-shadow:
        inset 0 0 0 4px var(--red-accent),
        0 4px 12px rgba(0, 0, 0, 0.12),
        0 12px 25px rgba(0, 0, 0, 0.15);
}

#bientot-tag h3 {
    margin: 0;
    padding: 0;
}

#bientot-tag:hover {
    transform: translateY(-50px) scale(1.03);
}

/* --- BOX COMPONENTS - ARTISTES --- */
#box-top-artistes,
#box-mid-artistes,
#box-mid-info {
    z-index: 39 !important;
    position: relative;
}

#box-top-artistes {
    grid-column: 6 / 12;
    grid-row: 1 / 4;
    border-radius: 6.25rem 3.125rem 5.625rem 2.5rem;
    z-index: 5;
    background: var(--white);
    box-shadow:
        inset 0 0 0 3px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
}

#box-top-artistes:hover {
    
    transform: scale(1.02);
}

#box-mid-artistes {
    grid-column: 1 / 6;
    grid-row: 4 / 4;
    border-radius: 2.5rem 5.75rem 2.5rem 3.625rem;
    z-index: 0;
    margin-top: -0.625rem;
    background: var(--white);
    box-shadow:
        inset 0 0 0 3px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
      
     
}

#box-mid-artistes:hover {
    transform: scale(1.02);
}

#box-bottom-artistes {
    grid-column: 8 / 12;
    grid-row: 6 / 8;
    border-radius: 1.25rem 6.25rem 0.625rem 6.25rem;
    padding-bottom: 1rem;
    z-index: 15;
    position: relative;
    margin-top: -1.875rem;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 3px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
}

#green-dots-artistes {
    grid-column: 5 / 8;
    grid-row: 6 / 8;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 0.625rem 0;
    border-radius: 7.5rem 6.25rem 12.5rem 3.125rem;
    background: var(--white);
    z-index: 10;
    box-shadow:
        inset 0 0 0 3px rgba(0, 0, 0, 1),
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.12);
}

/* --- BOX COMPONENTS - ARCHIVES --- */
#box-top-archives {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
    border-radius: 6.25rem 3.125rem 5.625rem 2.5rem;
    z-index: 5;
    background: var(--white);
    box-shadow:
        inset 0 0 0 3px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
}

#box-top-archives:hover {
    transform: translate(0.625rem, 0.625rem);
}

#archive-menu {
    grid-column: 7 / 12;
    grid-row: 2 / 3;
    border-radius: 7.5rem 1.75rem 4.5rem 3.625rem;
    z-index: 10;
    margin-top: -0.625rem;
    background: var(--white);
    box-shadow:
        inset 0 0 0 3px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
        transform: translateY(1rem);
           transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

#archive-menu:hover {
transform: translateY(1rem) scale(1.02);
}

#archive-socials {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1.25rem 0;
    border-radius: 6.25rem 28.125rem 5rem 3.125rem;
    background: var(--white);
    z-index: 22;
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
           transform: translateY(-45px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

#archive-socials:hover {
transform:  translateY(-45px) scale(1.02);
}

/* --- BOX COMPONENTS - INFO --- */
.info-page-container {
    background-color: var(--blue-bg);
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, auto);
    padding: 1.25rem;
    gap: 1.875rem;
    align-items: start;
}

#box-top-info {
    grid-column: 6 / 14;
    grid-row: 1 / 6;
    padding: 2.5rem;
    border-radius: 6.25rem 1.25rem 8.75rem 6.25rem;
    z-index: 10;
    background: var(--white);
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
}

#box-top-info:hover {
      transform: translate(0.625rem, 0.625rem);
}

#info-menu {
    grid-column: 1 / 6;
    grid-row: 3 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1.25rem 0;
    border-radius: 6.25rem 15.625rem 5rem 3.125rem;
    background: var(--white);
    z-index: 11;
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
}

.info-nav-box {
    grid-column: 2 / 8;
    grid-row: 4 / 9;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 3.75rem 0;
    border-radius: 6.25rem 9.375rem 5rem 1.875rem;
    background: var(--white);
    z-index: 5;
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
        transform: translateY(-25px);
             transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

#info-nav-box:hover {
transform: translateY(-20px);
}

#info-socials {
    grid-column: 7 / 12;
    grid-row: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1.25rem 0;
    border-radius: 7.625rem 9.375rem 5rem 3.125rem;
    background: var(--white);
    z-index: 12;
    box-shadow:
        inset 0 0 0 3px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
        transform: translateY(-25px);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 0);
    will-change: transform;
    transform: translateY(0.3rem);
}

#info-socials:hover {
transform: translateY(0.3rem) scale(1.02);
}

#info-socials-info {
    grid-column: 3 / 8;
    grid-row: 8/8;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1.25rem 0;
    border-radius: 4.375rem 9.375rem 5rem 3.125rem;
    background: var(--white);
    z-index: 13;
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    transform: translateY(-3rem) ;
}

#info-socials-info:hover {
transform:  translateY(-3rem) scale(1.02);
}

#box-bottom-info {
    grid-column: 2 / 8;
    grid-row: 5 / 7;
    border-radius: 3rem 6.25rem 2.625rem 6.25rem;
    z-index: 12;
    margin-top: -1.875rem;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 3px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
        transform: translateY(0.2rem);

}

#box-bottom-info:hover {
transform: translateY(0.2rem) scale(1.02);
}

#box-bottom-info-info {
    grid-column: 8 / 13;
    grid-row: 7 / 8;
    border-radius: 2rem 4.25rem 3.625rem 2.25rem;
    z-index: 12;
    margin-top: -1.875rem;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
        transform: translateY(-10px);
}

#box-bottom-info-info:hover {
transform: translateY(-10px) scale(1.02);
}

#box-bottom-info-archive {
    display: none   ;
    grid-column: 7 / 13;
    grid-row: 6 / 8 ;
    border-radius: 2rem 6.25rem 3.625rem 6.25rem;
    z-index: 12;
    margin-top: -1.875rem;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 1),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 20px 50px rgba(0, 0, 0, 0.15);
        transform: translateY(-25px) translateX(-15px);
              transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

#box-bottom-info-archive:hover {
    transform: translateY(-25px) translateX(-15px) scale(1.02);
}

/* --- TYPOGRAPHY --- */
.subtitle {
    color: var(--blue-bg);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.9375rem;
    max-width: 21.875rem;
}

/* --- NAVIGATION --- */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2.5rem;
}

nav a {
    display: inline-block;
    text-decoration: none;
    color: var(--dark-text);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                color 0.3s ease;
    will-change: transform;
}

nav a:hover {
    color: var(--blue-bg);
    transform: scale(1.05);
}

/* --- FOOTER --- */
.footer-info {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 0.1rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.footer-info a {
    color: black;
    text-decoration: none;
    font-weight: 500;
}

.footer-info a:hover {
    text-decoration: underline;
}

.google-maps, .mail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin: 0;
}

.socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.google-maps a, .mail a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.google-maps p, .mail a {
    margin-top: 0.5rem;
}

.socials img, .google-maps img, .mail img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.socials img:hover, .google-maps img:hover, .mail img:hover {
    transform: scale(1.15);
}

.icon-list {
    display: none;
}

/* --- INFO MENU --- */
.info-menu {
    list-style: none;
    padding: 0;
}

.info-menu li {
    font-size: 2rem;
    font-weight: 900;
    cursor: pointer;
    margin-bottom: 0.625rem;
    transition: transform 0.2s;
}

.info-menu li:hover {
    color: var(--blue-bg);
    transform: translateX(0.625rem);
}

/* --- ARTIST CONTAINER --- */
#artist-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.artist-box {
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    width: 11.25rem;
    height: 5rem;
    background: var(--white);
    color: #000;
    border-radius: 2.5rem;
    padding: 1.25rem;
    box-shadow:
        inset 0 0 0 3px rgba(0,0,0,0.08),
        0 8px 20px rgba(0,0,0,0.12),
        0 20px 50px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    pointer-events: auto;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.artist-box:visited {
    color: black;
}

.artist-link {
    transition: color 0.3s ease;
}

.artist-link:hover {
    color: #0047ff !important;
}

.artist-link img {
    transition: transform 0.3s ease;
}

.artist-link:hover img {
    transform: scale(1.2);
}

/* --- SIDEBAR --- */
.sidebar-handle {
    position: fixed;
    left: -0.7%;
    top: 40%;
    transform: translateY(-50%);
    width: 5rem;
    height: 4.375rem;
    background: var(--white);
    border-radius: 0 1rem 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow:
        inset 0 0 0 0.1875rem rgba(0, 0, 0, 1),
        0 0.5rem 1.25rem rgba(0, 0, 0, 0.12),
        0 1.25rem 3.125rem rgba(0, 0, 0, 0.1);
}

.sidebar-icon {
    width: 2.8125rem;
    height: 2.8125rem;
}

.artist-sidebar {
    position: fixed;
    left: -18.75rem;
    top: 0;
    width: 18.75rem;
    height: 100vh;
    background: rgba(245, 245, 245, 0.9);
    backdrop-filter: blur(0.625rem);
    z-index: 1000;
    transition: left 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0.625rem 0 1.875rem rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    padding: 1.875rem 1.25rem;
    box-sizing: border-box;
}

.artist-sidebar.active {
    left: 0 !important;
}

.sidebar-handle:hover + .artist-sidebar,
.artist-sidebar:hover {
    left: 0;
}

.artist-sidebar:hover ~ .sidebar-handle {
    opacity: 0;
}

.sidebar-header {
    text-align: right;
    margin-bottom: 1.875rem;
}

.sidebar-title {
    font-weight: 900;
    text-transform: uppercase;
    color: var(--blue-bg);
    font-size: 1.4rem;
    letter-spacing: 0.0625rem;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    scrollbar-width: thin;
}

.sidebar-list li {
    margin: 0.75rem 0;
}

.sidebar-list a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    display: block;
    text-transform: none !important;
}

.sidebar-list a:hover {
    color: var(--blue-bg);
    transform: translateX(0.3125rem);
}

/* --- OVERLAYS --- */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 71, 255, 0.2);
    backdrop-filter: blur(0.5rem);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

#event-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 71, 255, 0.3);
    backdrop-filter: blur(0.3125rem);
    z-index: 2000;
    justify-content: center;
    align-items: flex-start;
    padding: 1.875rem;
    box-sizing: border-box;
    overflow-y: auto;
}

#event-overlay.active {
    display: flex;
}

#event-overlay .overlay-content {
    width: 70%;
    max-width: 53.125rem;
    max-height: 85vh;
    background: white;
    padding: 3.125rem;
    border: 3px solid black;
    border-radius: 0.9375rem;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

#artist-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 71, 255, 0.3);
    backdrop-filter: blur(0.3125rem);
    z-index: 2000;
    justify-content: center;
    align-items: flex-start;
    padding: 1.875rem;
    box-sizing: border-box;
    overflow-y: auto;
}

#artist-overlay.active {
    display: flex !important;
}

#artist-overlay .overlay-content {
    width: 70%;
    max-width: 53.125rem;
    max-height: 85vh;
    background: white;
    padding: 3.125rem;
    border: 3px solid black;
    border-radius: 0.9375rem;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

#info-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 71, 255, 0.3);
    backdrop-filter: blur(0.3125rem);
    z-index: 2000;
    justify-content: center;
    align-items: flex-start;
    padding: 1.875rem;
    box-sizing: border-box;
    overflow-y: auto;
}

#info-overlay.active {
    display: flex;
}

#info-overlay .overlay-content {
    width: 70%;
    max-width: 53.125rem;
    max-height: 85vh;
    background: white;
    padding: 3.125rem;
    border: 3px solid black;
    border-radius: 0.9375rem;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.overlay-content {
    background: white;
    width: 70%;
    max-width: 53.125rem;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3.125rem;
    border: 3px solid black;
    position: relative;
    border-radius: 0.9375rem;
    overflow-x: hidden;
}

/* --- ARCHIVE ARTIST NAME --- */
.archive-artist-name {
    font-size: 1.1rem;
    line-height: 1.3 !important;
}

/* --- CLOSE BUTTONS --- */
.close-box {
    position: absolute;
    top: 3.3%;
    left: calc(50% - 36.875rem);
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
    width: 3.125rem;
    height: 3.125rem;
    background: white;
    border: 3px solid black;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    transition: transform 0.2s ease;
}

#info-overlay > .close-box {
    position: absolute;
    top: 3.2%;
    left: calc(50% - 36.875rem);
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
    width: 3.125rem;
    height: 3.125rem;
    background: white;
    border: 3px solid black;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    transition: transform 0.2s ease;
}

.close-box:hover {
    transform: scale(1.1);
    background: var(--red-accent);
    color: white;
}

.info-close-button {
    position: absolute;
    top: 0.9375rem;
    right: 0.9375rem;
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
    width: 3.125rem;
    height: 3.125rem;
    background: white;
    border: 3px solid black;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.info-close-button:hover {
    transform: scale(1.1);
    background: var(--red-accent);
    color: white;
}

.info-close-button {
    position: fixed !important;
    top: 1.25rem !important;
    right: 2.5rem !important;
    font-size: 3rem !important;
    color: white !important;
    cursor: pointer;
    user-select: none;
    z-index: 5001 !important;
    transition: transform 0.2s ease;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    background: transparent !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.close-event-box {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 5001;
    color: black !important;
    font-weight: bold;
}

/* --- NAVIGATION ARROWS --- */
.artist-nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    cursor: pointer;
    user-select: none;
    color: black;
    z-index: 2050;
    transition: transform 0.2s ease, opacity 0.2s ease;
    background: rgba(255,255,255,0.8);
    padding: 0.625rem 0.9375rem;
    border-radius: 0.625rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.artist-nav-arrow:hover {
    transform: translateY(-50%) scale(1.2);
    background: white;
}

.artist-nav-arrow.prev {
    left: 1.25rem;
}

.artist-nav-arrow.next {
    right: 1.25rem;
}

.info-nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    color: black;
    z-index: 2050;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.info-nav-arrow:hover {
    transform: translateY(-50%) scale(1.2);
}

.info-nav-arrow.prev {
    left: 12.5rem;
}

.info-nav-arrow.next {
    right: 12.5rem;
}

.info-prev,
.info-next {
    display: none !important;
}

.info-prev {
    left: 1.875rem !important;
}

.info-next {
    right: 1.875rem !important;
}

.info-prev:hover,
.info-next:hover {
    transform: translateY(-50%) scale(1.2) !important;
}

/* --- LIGHTBOX --- */
#lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    animation: fadeIn 0.2s ease;
}

#lightbox-img {
    max-width: 95%;
    max-height: 95%;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 2px solid #333;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    z-index: 3001;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: transform 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    transform: scale(1.2);
}

.lightbox-close { top: 1.25rem; right: 2.5rem; }
.lightbox-prev { left: 1.875rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.875rem; top: 50%; transform: translateY(-50%); }

.lightbox-prev:hover { transform: translateY(-50%) scale(1.2); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.2); }

/* --- MORPH ANIMATION --- */
.morph-container {
    position: relative;
    display: inline-block;
    margin-top: 1.3rem;
    cursor: pointer;
}

.morph-text {
    font-weight: 1000;
    font-size: 1.2rem;
    text-decoration: underline;
    color: var(--white);
    display: inline-block;
    transition: all 0.3s ease;
    font-style: italic;
    margin-bottom: 2rem;
}

.morph-text span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.morph-container:hover .morph-text span {
    animation: vortexWave 0.8s ease-in-out infinite, colorPulse 1s ease-in-out infinite;
}

.morph-text span:nth-child(1) { animation-delay: 0s, 0s; }
.morph-text span:nth-child(2) { animation-delay: 0.05s, 0.05s; }
.morph-text span:nth-child(3) { animation-delay: 0.1s, 0.1s; }
.morph-text span:nth-child(4) { animation-delay: 0.15s, 0.15s; }
.morph-text span:nth-child(5) { animation-delay: 0.2s, 0.2s; }
.morph-text span:nth-child(6) { animation-delay: 0.25s, 0.25s; }
.morph-text span:nth-child(7) { animation-delay: 0.3s, 0.3s; }
.morph-text span:nth-child(8) { animation-delay: 0.35s, 0.35s; }
.morph-text span:nth-child(9) { animation-delay: 0.4s, 0.4s; }
.morph-text span:nth-child(10) { animation-delay: 0.45s, 0.45s; }
.morph-text span:nth-child(11) { animation-delay: 0.5s, 0.5s; }
.morph-text span:nth-child(12) { animation-delay: 0.55s, 0.55s; }
.morph-text span:nth-child(13) { animation-delay: 0.6s, 0.6s; }
.morph-text span:nth-child(14) { animation-delay: 0.65s, 0.65s; }
.morph-text span:nth-child(15) { animation-delay: 0.7s, 0.7s; }
.morph-text span:nth-child(16) { animation-delay: 0.75s, 0.75s; }
.morph-text span:nth-child(17) { animation-delay: 0.8s, 0.8s; }
.morph-text span:nth-child(18) { animation-delay: 0.85s, 0.85s; }

/* --- ARCHIVE STYLES --- */
.archive-main-window.full-width {
    grid-column: 1/ 13;
    grid-row: 3 / 7;
    background: white;
    border: 4px solid black;
    border-radius: 2.5rem;
    padding: 1.875rem;
    height: 18.75rem;
    overflow: hidden;
    margin: 6.25rem;
    box-shadow: var(--depth-shadow);
    transform: translateY(-2rem);
}

.quad-scroll-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 200px;
    gap: 1.25rem;
    height: 100%;
}

.scroll-column {
    overflow-y: auto;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    position: relative;
    border-right: none;
}

.scroll-column:last-child {
    border-right: none;
}

.scroll-column::-webkit-scrollbar { display: none; }

.col-header {
    font-size: 1.8rem;
    text-transform: uppercase;
    border-bottom: 2px solid black;
    margin: 0;
    padding: 1.25rem 0 0.625rem 0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

.archive-item {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    line-height: 1.2;
    width: 100%;
    white-space: normal;
}

.archive-item:hover {
    color: var(--blue-bg);
    transform: scale(1.03);
}

.year-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.year-marker {
    font-size: 2rem;
    text-align: center;
    font-weight: 900;
    margin-top: 0.625rem;
    transition: all 0.4s ease;
    opacity: 0.3;
    cursor: pointer;
}

.year-marker:hover {
    color: var(--blue-bg);
    opacity: 1;
}

.year-marker, .line {
    cursor: pointer;
}

.year-marker:active {
    color: var(--blue-bg);
    opacity: 1;
    font-weight: 900;
}

.line-container {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin: 0.625rem 0;
}

.line {
    width: 3.75rem;
    height: 0.1875rem;
    background: black;
    transition: all 0.2s ease;
    opacity: 0.5;
}

.line.active-line {
    width: 7.5rem;
    background: var(--blue-bg);
    opacity: 1;
}

.line:hover {
    width: 6.25rem;
    background: var(--blue-bg);
}

.archive-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    backdrop-filter: blur(0.5rem);
    -webkit-backdrop-filter: blur(0.5rem);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
}

.archive-popup-container.active {
    display: flex;
}

.archive-popup-wrapper {
    width: 70%;
    height: 85%;
    max-width: 53.125rem;
    max-height: 100vh;
    background: white;
    padding: 3.125rem;
    padding-bottom: 0;
    border: 3px solid black;
    border-radius: 0.9375rem;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.archive-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
    gap: 1.25rem;
    margin-top: 1.875rem;
}

.archive-img-box:first-child {
    grid-column: span 2;
}

.archive-gallery-grid img {
    width: 100%;
    cursor: zoom-in;
    max-height: 31.25rem;
    object-fit: cover;
    background: #f9f9f9;
    height: auto;
    transition: filter 0.5s, transform 0.3s;
}

.archive-gallery-grid img:hover {
    transform: scale(1.02);
}

.lightbox-archive {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(0.625rem);
    -webkit-backdrop-filter: blur(0.625rem);
    display: none;
    z-index: 7000;
    justify-content: center;
    align-items: center;
}

.lightbox-archive.active {
    display: flex;
}

.lightbox-archive-content {
    position: relative;
    width: 80%;
    max-width: 63.25rem;
    height: auto;
    text-align: center;
    background: none;
}

.lightbox-archive-content img {
    max-width: 100%;
    max-height: 80vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

#lightbox-archive-caption {
    color: white;
    margin-top: 0.9375rem;
    font-family: sans-serif;
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.archive-close-button {
    position: fixed;
    top: 1.25rem;
    right: 2.5rem;
    font-size: 3rem;
    color: white;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    z-index: 5001;
    transition: transform 0.2s ease;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.archive-close-button:hover {
    transform: scale(1.1);
}

.archive-nav-button {
    position: fixed;
    top: 50%;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 5001;
    transition: transform 0.2s ease;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.archive-nav-button:hover {
    transform: scale(1.2);
}

.archive-prev { left: 1.875rem; transform: translateY(-50%); }
.archive-next { right: 1.875rem; transform: translateY(-50%); }

.artist-close-button {
    position: fixed;
    top: 0.4rem !important;
    right: 2.5rem;
    font-size: 3rem;
    color: white;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    z-index: 5001;
    transition: transform 0.2s ease;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.artist-close-button:hover {
    transform: scale(1.1);
}

.artist-nav-button {
    position: fixed;
    top: 50%;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 5001;
    transition: transform 0.2s ease;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.artist-nav-button:hover {
    transform: scale(1.2);
}

.artist-prev { left: 1.875rem; transform: translateY(-50%); }
.artist-next { right: 1.875rem; transform: translateY(-50%); }

.lightbox-archive-close,
.lightbox-archive-prev,
.lightbox-archive-next {
    position: absolute;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s;
}

.lightbox-archive-close { top: 1.25rem; right: 2.5rem; }
.lightbox-archive-prev { left: 1.875rem; top: 50%; transform: translateY(-50%); }
.lightbox-archive-next { right: 1.875rem; top: 50%; transform: translateY(-50%); }

.lightbox-archive-prev:hover, .lightbox-archive-next:hover {
    transform: translateY(-50%) scale(1.2);
}

/* --- PRESSE --- */
.presse-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1.5625rem !important;
    padding-bottom: 1.875rem !important;
}

.presse-item img {
    width: 16.875rem !important;
    height: 10.9375rem !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    border-radius: 0.9375rem !important;
}

/* --- ARTIST POPUP STYLES - ALL SCREENS --- */
#overlay-data h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    margin-bottom: 1.0rem;
}

#overlay-data div[style*="font-size: 1.2rem"] {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem) !important;
    line-height: 1.5 !important;
    margin-bottom: 30px !important;
}

#overlay-data p[style*="font-size: 0.8rem"] {
    font-size: clamp(0.65rem, 2.5vw, 0.9rem) !important;
}

#overlay-data a[style*="font-size: 0.9rem"] {
    font-size: clamp(0.8rem, 1vw, 1.1rem) !important;
}

#overlay-data a img[style*="width: 40px"] {
    width: 30px !important;
    height: 30px !important;
}

#overlay-data a img[style*="width: 30px"] {
    width: 24px !important;
    height: 24px !important;
}

#overlay-data > div[style*="display: flex"][style*="gap: 30px"] {
    gap: 15px !important;
    margin-bottom: 25px !important;
}

#overlay-data > div[style*="margin-bottom: 40px"]:first-of-type {
    margin-bottom: 25px !important;
}

.artist-gallery {
    gap: 40px !important;
}

#overlay-data .artist-gallery img {
    margin-bottom: 8px !important;
}

#overlay-data .artist-gallery p[style*="font-size: 0.8rem"] {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
}

/* ===========================================
   MEDIA QUERIES - TABLET/LAPTOP 1024px
   =========================================== */
@media screen and (max-width: 1024px) {

    /* INDEX - Disable hover movements */
    #box-top:hover, #box-mid:hover, #box-bottom:hover,
    #event-box:hover, #green-dots:hover, #bientot-tag:hover,
    #box-top-info:hover, #info-menu:hover, .info-nav-box:hover,
    #box-top-archives:hover, #archive-menu:hover, #archive-socials:hover,
    #box-top-artistes:hover, #box-mid-artistes:hover, #box-bottom-artistes:hover,
    #green-dots-artistes:hover, #info-socials:hover, #info-socials-info:hover,
    #box-bottom-info:hover, #box-bottom-info-info:hover, #box-bottom-info-archive:hover,
    .shape:hover, .green-shape:hover, #artist-container:hover {
        transform: none !important;
    }

    .info-nav-box {
        transform: none !important;
        transition: none !important;
    }

    /* INDEX - Body/HTML scroll */
    body, html {
        height: auto !important;
        min-height: unset !important;
        width: 100% !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    .page-wrapper {
        min-height: unset;
        height: auto;
        width: 100% !important;
        overflow: visible;
    }

    /* INDEX - Close buttons */
    .artist-close-button,
    .archive-close-button,
    .info-close-button {
        left: 96% !important;
        right: auto !important;
        top: 0.4rem !important;
        transform: translateX(-50%) !important;
    }

    /* INDEX - Hide nav arrows */
    .info-nav-arrow {
        display: none;
    }

    /* INDEX - Footer flex */
    .footer-info,
    #box-bottom,
    #box-bottom-artistes,
    #box-bottom-info {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: flex-start !important;
        gap: 0.625rem !important;
        width: 100% !important;
        padding: 0.9375rem 0.3125rem !important;
        box-sizing: border-box !important;
    }

    .google-maps, .mail {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        flex: 1;
        min-width: 0;
    }

    .footer-info img,
    #box-bottom img,
    #box-bottom-artistes img {
        width: 1.875rem !important;
        height: auto !important;
        margin-bottom: 0.3125rem !important;
    }

    .footer-info p,
    .footer-info a,
    .mail a {
        font-size: 0.75rem !important;
        text-align: center;
        word-break: break-all;
        line-height: 1.2;
    }

    #box-top-info {
        margin-bottom: 0.0625rem;
    }

    #box-bottom-info {
        margin-top: 0.625rem;
    }

    .info-box-style {
        width: 105% !important;
        margin-left: -2.5%;
        padding-left: 10% !important;
        padding-right: 10% !important;
    }

    #col-dates {
        display: none !important;
    }

    .scroll-column {
        height: 15.625rem;
    }

    .info-page-container {
        overflow-x: hidden;
        padding: 2.5rem 0.625rem;
    }

    /* INFO PAGE - Flex column */
    .info-page-container {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        padding: 2.1875rem 1.25rem;
        gap: var(--mobile-gap-info, 0px);
    }

    .info-box-style, #box-top-info, #info-menu, .info-nav-box, #info-socials, #box-bottom-info {
        grid-column: auto !important;
        grid-row: auto !important;
        width: 100% !important;
        box-sizing: border-box;
        border-radius: 2.5rem !important;
    }

    #box-top-info     { order: 1; }
    #info-menu         { order: 2; }
    .info-nav-box      { order: 3; flex: 1; }
    #info-socials-info { order: 4; width: fit-content !important; align-self: center; padding: 1.25rem 1.25rem; border-radius: 1.25rem !important; }
    #box-bottom-info-info { order: 5; width: 100% !important; }

    #box-top-info               { margin-bottom: 0.5rem !important; }
    #info-menu                 { margin-bottom: 1.3rem !important; margin-top: 0; }
    .info-nav-box              { margin-bottom: 0.8rem !important; margin-top: 0; }
    #info-socials-info         { margin-bottom: 0 !important; margin-top: 0 !important; }
    #box-bottom-info-info      { margin-top: 0rem; }

    #info-menu {
        padding: 0.9375rem !important;
    }

    #info-menu ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 1.5rem;
        padding: 0;
        margin: 0;
        list-style: none;
        overflow-x: auto;
    }

    #info-menu li a {
        font-size: 0.8rem !important;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .info-popup-list li {
        font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
        line-height: 1.2;
        padding: 0.3125rem 0;
    }

    #box-top-info h1 {
        font-size: 1.8rem !important;
        margin: 0;
    }

    .socials img {
        width: 2.5rem !important;
    }

    /* INDEX PAGE - Footer text hidden */
    #box-bottom .google-maps p,
    #box-bottom .mail a:not(:has(img)),
    #box-bottom-artistes .google-maps p,
    #box-bottom-artistes .mail a:not(:has(img)),
    #box-bottom-info .google-maps p,
    #box-bottom-info .mail a:not(:has(img)),
    #box-bottom-info-info .google-maps p,
    #box-bottom-info-info .mail a:not(:has(img)),
    #box-bottom-info-archive .google-maps p,
    #box-bottom-info-archive .mail a:not(:has(img)) {
        display: none !important;
    }

    /* INDEX PAGE - Page wrapper flex */
    .page-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        padding: 1.25rem;
        gap: 0;
    }

    /* INDEX PAGE - Box ordering */
    #box-top, #box-mid, #box-bottom, #event-box, #green-dots, #bientot-tag {
        grid-column: auto !important;
        grid-row: auto !important;
        width: 100% !important;
        box-sizing: border-box;
        border-radius: 2.5rem !important;
        margin-top: 0 !important;
    }

    #box-top       { order: 1; }
    #box-mid       { order: 2; }
    #bientot-tag   { order: 3; width: fit-content !important; align-self: center; padding: 0.625rem 1.25rem; }
    #event-box     { order: 4; padding: 1.25rem 1.25rem; }
    #box-bottom    { order: 5; }
    #green-dots    { order: 6; padding: 1.25rem; display: none;}

    #box-top           { margin-bottom: 0.3125rem !important; flex: 1; }
    #box-mid           { margin-bottom: 0.00rem !important; margin-top: 0 !important; padding: 15px 10px !important; }
    #bientot-tag       { margin-top: 1.2rem !important; margin-bottom: 0.5625rem !important; }
    #event-box         { margin-top: 1.0rem !important; margin-bottom: 1.0rem !important; transform: none; flex: 2; }
    #box-bottom        { margin-top: 0.0rem !important; transform: none; margin-bottom: 0.5rem; }

    #bientot-tag h3 {
        font-size: 1.2rem;
        margin: 0rem;
        padding: 0;
    }

    #event-box h3.uppercase-label {
        font-size: 1.2rem !important;
        margin-top: 0;
        margin-bottom: 1rem;

    
    }

    #box-mid ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 1.5rem;
        padding: 0;
        overflow-x: auto;
    }

    #box-mid li a {
        font-size: 0.8rem !important;
    }

    #box-top {
        text-align: center !important;
    }

    #box-top h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
        line-height: 0.9;
        text-align: center !important;
    }

    #box-top .subtitle {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 1rem;
        margin-bottom: 0;
    }

    #event-box h2 {
        font-size: 1.5rem !important;
        margin-top: 1.5625rem;
        margin-bottom: 2.1875rem;
    }

    #event-box p {
        font-size: 0.9rem !important;
        text-align: center;
        margin-top: -0.3125rem;
        margin-bottom: 0.75rem;
    }

    .morph-text {
        font-size: 0.9rem !important;
        text-decoration: underline;
        font-weight: 900;
        margin-bottom: 0.3125rem;
        margin-top: 0;
    }

    #box-bottom {
        padding: 1.25rem 0.625rem !important;
    }

    #box-bottom .footer-info,
    #box-bottom-info .footer-info,
    #box-bottom-info-info .footer-info,
    #box-bottom-info-archive .footer-info {
        display: none !important;
    }

    .icon-list {
        display: flex !important;
        flex-direction: row !important;
        gap: 1.25rem !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 0.3125rem !important;
    }

    .icon-list a img {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }

    #info-socials,
    #info-socials-info,
    #archive-socials {
        display: none !important;
    }

    #box-bottom-info .icon-list a img,
    #box-bottom-info-info .icon-list a img,
    #box-bottom-info-archive .icon-list a img {
        width: 1.875rem !important;
        height: 1.875rem !important;
    }

    /* ARCHIVES PAGE */
    .page-wrapper {
        display: flex;
        flex-direction: column;
        
        align-items: center;
        padding: 1.25rem 0.9375rem;
        gap: var(--mobile-gap-archives, 0px) !important;
    }

    #box-top-archives, #archive-menu, #archive-socials, #archive-main {
        grid-column: auto !important;
        transform: none !important;
        transition: none !important;
        grid-row: auto !important;
        width: 100% !important;
        box-sizing: border-box;
        border-radius: 2.5rem !important;
    }

    #box-top-archives { order: 1; align-self: center; }
    #archive-menu     { order: 2; padding: 0; align-self: center; }
    #archive-main     { order: 3; height: auto !important; margin: 0 auto !important; }
    #archive-socials  { order: 4; padding: 1.25rem; height: auto !important; align-self: center; }
    #box-bottom-info-archive { order: 5; height: auto !important; align-self: center; }

    #box-top-archives      { margin-bottom: 0; }
    #archive-menu          { margin-bottom: 1rem !important; margin-top: 0.7rem; }
    #archive-main          { margin-bottom: 0 !important; }
    #archive-socials       { margin-bottom: 0.9375rem !important; margin-top: 1rem; }
    #box-bottom-info-archive { margin-top: 0.7rem; }

.quad-scroll-container {
        width: auto !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        align-self: center;
    }

    .scroll-column {
        width: 100% !important;
        height: 18.75rem;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 1.25rem;
        padding: 0.9375rem;
        box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
    }

    .col-header {
        position: sticky;
        top: -1rem;
        background: white;
        margin-top: -1rem;
        padding: 0.3125rem;
        font-size: 1.2rem;
        z-index: 5;
        border-radius: 0.625rem;
        text-align: center;
    }

    #box-top-archives h1 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }

    .archive-item {
        font-size: 0.9rem;
        padding: 0.625rem 0.3125rem;
        border-bottom: 1px dashed #ccc;
    }

    #archive-menu ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 1.5rem;
        padding: 0;
        list-style: none;
        overflow-x: auto;
    }

    #archive-menu a {
        font-size: 0.8rem !important;
    }

    .archive-popup-container {
        width: 100% !important;
        height: 100% !important;
    }

    #archive-content-target {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
        align-items: center !important;
        width: 100% !important;
        height: auto !important;
    }

    #archive-content-target div,
    #archive-content-target section,
    #archive-content-target .left-column,
    #archive-content-target .right-column {
        display: block !important;
        width: 100% !important;
        float: none !important;
        position: relative !important;
        left: 0 !important;
        margin: 0.625rem 0 !important;
    }

    #archive-content-target img {
        width: 100% !important;
        height: auto !important;
        border-radius: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: block !important;
        margin-bottom: 0.9375rem !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #archive-content-target p,
    #archive-content-target h3 {
        width: 100%;
        text-align: left;
        margin-bottom: 0.625rem;
        line-height: 1.1 !important;
    }

    .archive-popup-wrapper {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
        padding-bottom: 0 !important;
    }

    /* ARTISTES PAGE */
    .artist-sidebar, .sidebar-handle {
        display: none !important;
    }

    .page-wrapper {
        display: flex;
        flex-direction: column;
        gap: var(--mobile-gap-artistes, 0px) !important;
        padding: 1.25rem 0.9375rem;
    }

    #box-top-artistes     { order: 1; }
    #box-mid-artistes     { order: 2; }
    #artist-container      { order: 3; }
    #green-dots-artistes  { order: 5; }
    #box-bottom-info { order: 4; }
    #info-socials { order: 5; }

    #box-top-artistes           { margin-bottom: 0% !important; }
    #box-mid-artistes           { margin-bottom: 0.9375rem !important; margin-top: 1rem; }
    #artist-container           { margin-bottom: 0.9375rem !important; margin-top: 0; }
    #green-dots-artistes        { margin-bottom: 0.9375rem !important; margin-top: 0; }
    #box-bottom-info            { margin-top: 0; }

    #artist-container {
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
        height: auto !important;
        width: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        padding: 1.25rem 0 !important;
    }

    #artist-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
        width: 100% !important;
        padding: 0.625rem 0 !important;
        box-sizing: border-box !important;
        position: relative !important;
        overflow: hidden !important;
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .artist-box {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 70% !important;
        height: auto !important;
        min-height: 2.5rem !important;
        padding: 0.25rem 0.125rem !important;
        font-size: 0.85rem !important;
        border-radius: 0.9375rem !important;
        box-shadow: inset 0 0 0 2px black !important;
        text-decoration: none !important;
        color: black;
        font-weight: bold;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        line-height: 1.2 !important;
        transition: color 0.2s ease;
        background: white;
        overflow: hidden;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #box-top-artistes h1 {
        font-size: 2.5rem !important;
    }

    #box-mid-artistes ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 1.5rem;
        padding: 0;
        margin: 0;
        list-style: none;
        overflow-x: auto;
    }

    #box-mid-artistes li a, #box-mid li a, #archive-menu li a, #info-menu li a {
        font-size: 1.4rem !important;
        text-transform: uppercase;
        white-space: nowrap;
    }

    #box-bottom-artistes, #green-dots-artistes {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        left: 0 !important;
        margin: 0 !important;
        padding: 1.25rem !important;
        overflow: hidden !important;
    }

    #box-bottom .footer-info,
    #box-bottom-artistes .footer-info,
    #box-bottom-info .footer-info,
    #box-bottom-info-info .footer-info,
    #box-bottom-info-archive .footer-info {
        align-items: center !important;
        justify-content: center !important;
        flex-direction: row !important;
        gap: 3.75rem !important;
    }

    #box-bottom .google-maps,
    #box-bottom .mail,
    #box-bottom-artistes .google-maps,
    #box-bottom-artistes .mail,
    #box-bottom-info .google-maps,
    #box-bottom-info .mail,
    #box-bottom-info-info .google-maps,
    #box-bottom-info-info .mail,
    #box-bottom-info-archive .google-maps,
    #box-bottom-info-archive .mail {
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        flex: 0 !important;
    }

    /* EVENT POPUP */
    #event-inner-content h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        margin-top: 0 !important;
    }

    #event-inner-content div[style*="font-weight: bold"] {
        font-size: 0.8rem !important;
    }

    #event-inner-content div[style*="font-size: 1.2rem"] {
        font-size: 0.9rem !important;
    }

    #event-inner-content hr {
        margin-bottom: 2.5rem !important;
    }

    #event-inner-content {
        padding-top: 0 !important;
    }

    /* ARCHIVE POPUP */
    #archive-content-target h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        margin-bottom: 15px !important;
    }

    #overlay-data div[style*="font-size: 1.2rem"] {
        font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.1rem) !important;
        line-height: 1.5 !important;
        margin-bottom: 30px !important;
    }

    #overlay-data > div > div {
        font-size: clamp(1rem, 3vw, 1.4rem) !important;
    }

    #archive-content-target > div > div {
        font-size: clamp(1rem, 3vw, 1.4rem) !important;
        line-height: 1.7 !important;
    }

    #archive-content-target .caption,
    #archive-content-target p[style*="font-style: italic"],
    #lightbox-archive-caption {
        font-size: clamp(0.7rem, 2.5vw, 1rem) !important;
    }

    #archive-content-target a {
        font-size: clamp(0.8rem, 2.5vw, 1.1rem) !important;
    }

    #archive-content-target img {
        margin-bottom: 15px !important;
    }

    .archive-gallery-grid {
        gap: 25px !important;
    }

    #archive-content-target strong {
        font-size: clamp(0.7rem, 2.1vw, 1.0rem) !important;
    }

    #archive-content-target > div > div > div[style*="margin-bottom: 12px"] {
        font-size: clamp(0.95rem, 2.5vw, 1.3rem) !important;
    }

    #archive-content-target b {
        font-size: clamp(0.8rem, 2.5vw, 1.1rem) !important;
    }

    /* INFO POPUP */
    #info-overlay {
        align-items: flex-start !important;
        padding-top: 4.5rem !important;
    }

    #info-content-target h1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        margin-bottom: 15px !important;
    }

    #info-content-target p {
        font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.1rem) !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }

    #info-content-target p[style*="font-size: 1.2rem"] {
        font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.1rem) !important;
    }

    #info-content-target a {
        font-size: clamp(0.8rem, 2.5vw, 1.1rem) !important;
    }

    #info-content-target img[style*="max-height: 80px"] {
        max-height: 120px !important;
    }

    .info-prev,
    .info-next {
        display: none !important;
    }

    /* ARTIST POPUP */
    #overlay-data h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    }

    #overlay-data div[style*="font-size: 1.2rem"] {
        font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem) !important;
    }

    #overlay-data p[style*="font-size: 0.8rem"] {
        font-size: clamp(0.65rem, 2.5vw, 0.9rem) !important;
    }

    #overlay-data a[style*="font-size: 0.9rem"] {
        font-size: clamp(0.8rem, 1vw, 1.1rem) !important;
    }

    #overlay-data div[style*="margin-bottom: 12px"] {
        font-size: clamp(1rem, 2vw, 1.2rem) !important;
        line-height: 1.6 !important;
    }

    /* ARCHIVE ARTIST NAME */
    .archive-artist-name {
        font-size: 1.0rem;
        line-height: 1.25 !important;
    }

    #archive-content-target b {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
    }

    #archive-content-target > div > div[style*="font-size: 1.2rem"] {
        font-size: clamp(1rem, 3vw, 1.3rem) !important;
        line-height: 1.4 !important;
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    #archive-content-target > div > div > div[style*="margin-bottom: 12px"] {
        font-size: clamp(0.95rem, 2.5vw, 1.3rem) !important;
        margin-top: 0.9rem !important;
        margin-bottom: 0.9rem !important;
    }
}

/* ICON LIST - 768px */
@media screen and (max-width: 768px) {
    .icon-list a img {
        width: 2rem !important;
        height: 2rem !important;
    }
}

/* ICON LIST - 480px */
@media screen and (max-width: 480px) {
    .icon-list a img {
        width: 1.5rem !important;
        height: 1.5rem !important;
    }
}

/* ICON LIST - 320px */
@media screen and (max-width: 320px) {
    .icon-list a img {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }
}

/* ===========================================
   MEDIA QUERIES - TABLET 768px
   =========================================== */
@media screen and (max-width: 768px) {

    /* Overlay positioning */
    #info-overlay, #artist-overlay, #event-overlay {
        align-items: flex-start !important;
        padding-top: 3.75rem;
    }

    .artist-close-button,
    .archive-close-button,
    .info-close-button {
         left: 50% !important;
           font-size: 3rem;
        right: auto !important;
        top: 0.0rem !important;
        transform: translateX(-50%) !important;
        top: -0.3rem !important;
    }

    .page-wrapper {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        height: auto;
    }

    .shape {
        padding: 2.5rem 3rem;
    }

    .green-shape {
        padding: 1.5rem 2rem;
    }

    #box-top {
        border-radius: 5rem 3rem 8rem 5rem;
    }

    #box-mid {
        border-radius: 5rem 4rem 8rem 2rem;
    }

    #box-bottom {
        border-radius: 2.5rem 3rem 4rem 5rem;
    }

    #event-box {
        border-radius: 3.5rem 3rem 4rem 1rem;
        padding: 1.5rem;
    }

    #green-dots {
        border-radius: 4rem 6rem 3rem 2rem;
    }

    #box-top-artistes {
        border-radius: 4.5rem 2rem 4rem 2rem;
    }

    #box-mid-artistes {
        border-radius: 5rem 2.5rem 8rem 5.5rem;
    }

    #box-mid-artistes li a, #box-mid li a, #archive-menu li a, #info-menu li a {
        font-size: 1.2rem !important;
        text-transform: uppercase;
        white-space: nowrap;
    }

    #box-bottom-artistes {
        border-radius: 1rem 4rem 0.5rem 4rem;
    }

    #green-dots-artistes {
        border-radius: 5rem 4rem 8rem 2rem;
    }

    #box-top-archives {
        border-radius: 4.5rem 2rem 4rem 2rem;
    }

    #archive-menu {
        border-radius: 5rem 1rem 3rem 2.5rem;
    }

    #archive-socials {
        border-radius: 4rem 18rem 3rem 2rem;
    }

    #box-top-info {
        border-radius: 4.5rem 1rem 6rem 4.5rem;
        padding: 2rem;
    }

    #info-menu {
        border-radius: 4rem 10rem 3rem 2rem;
    }

    .info-nav-box {
        border-radius: 4rem 6rem 3rem 1rem;
        padding: 2.5rem 0;
    }

    #info-socials {
        border-radius: 5rem 6rem 3rem 2rem;
    }

    #info-socials-info {
        border-radius: 3rem 6rem 3rem 2rem;
    }

    #box-bottom-info {
        border-radius: 2rem 4rem 2rem 4rem;
    }

    #box-bottom-info-info {
        border-radius: 1.5rem 3rem 2.5rem 1.5rem;
    }

    #box-bottom-info-archive {
        border-radius: 1.5rem 4rem 2.5rem 4rem;
    }

    h1 {
        font-size: clamp(4rem, 8vw, 5rem);
    }

    .subtitle {
        font-size: 1.1rem;
        max-width: 18.75rem;
    }

    nav a {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    .artist-box {
        width: 9.375rem;
        height: 4.375rem;
        padding: 1rem;
        font-size: 0.9rem;
    }

    .info-menu li {
        font-size: 1.5rem;
    }

    .socials img, .google-maps img, .mail img {
        width: 2.25rem;
        height: 2.25rem;
    }

    .overlay-content,
    #event-overlay .overlay-content,
    #artist-overlay .overlay-content,
    #info-overlay .overlay-content {
        width: 85%;
        padding: 2.5rem;
    }

    .close-box {
        left: calc(50% - 28rem);
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.75rem;
    }

    #overlay-data > div[style*="margin-bottom: 40px"]:first-of-type img {
        margin-bottom: 4px !important;
    }

    #overlay-data > div[style*="margin-bottom: 40px"]:first-of-type p {
        margin-top: 0 !important;
    }

    #archive-overlay .archive-close-button {
        top: -0.8rem !important;
    }

    .archive-popup-container {
        align-items: flex-start !important;
    }

    #archive-overlay {
        padding-top: 3.0rem;
    }

    .archive-popup-wrapper {
        padding-top: 2.5rem !important;
        padding-left: 3rem !important;
        padding-right: 3rem !important;
        padding-bottom: 1rem !important;
        height: 88%;
    }

    #event-inner-content hr {
        margin-bottom: 2.5rem !important;
    }

    #info-content-target p {
        font-size: clamp(0.85rem, 2.5vw, 1.05rem) !important;
    }

    #info-content-target p[style*="font-size: 1.2rem"] {
        font-size: clamp(0.85rem, 2.5vw, 1.05rem) !important;
    }

    /* ARCHIVE ARTIST NAME */
    .archive-artist-name {
        font-size: 0.95rem;
    }

    #archive-content-target b {
        font-size: 0.9rem !important;
    }

    #archive-content-target > div > div[style*="font-size: 1.2rem"] {
        font-size: clamp(0.95rem, 2.5vw, 1.2rem) !important;
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    #archive-content-target > div > div > div[style*="margin-bottom: 12px"] {
        font-size: clamp(0.95rem, 2.5vw, 1.3rem) !important;
        margin-top: 0.9rem !important;
        margin-bottom: 0.9rem !important;
    }
}

/* ===========================================
   MEDIA QUERIES - LARGE PHONE 712px
   =========================================== */
@media screen and (max-width: 712px) {
    .artist-close-button,
    .archive-close-button,
    .info-close-button {
        top: -0.3rem !important;
    }
}

/* ===========================================
   MEDIA QUERIES - SMALL MOBILE 600px
   =========================================== */
@media (max-width: 600px) {

    #overlay-data > div[style*="display: flex"][style*="gap: 30px"] {
        flex-direction: row !important;
        gap: 10px !important;
    }

    .artist-gallery > div {
        flex-direction: column !important;
    }

    #overlay-data .artist-gallery img,
    #overlay-data > div[style*="margin-bottom: 40px"]:first-of-type img {
        margin-bottom: 4px !important;
    }

    #overlay-data > div[style*="margin-bottom: 40px"]:first-of-type p {
        margin-top: 0 !important;
    }

    #overlay-data div[style*="width: 180px"] {
        width: 100% !important;
        margin-top: 0.625rem;
    }

    #overlay-data h1 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }

    #overlay-data a[style*="font-size: 0.9rem"] {
        font-size: 0.75rem !important;
    }

    #overlay-data a img[style*="width: 30px"] {
        width: 20px !important;
        height: 20px !important;
    }

    #overlay-data a img[style*="width: 40px"] {
        width: 24px !important;
        height: 24px !important;
    }

    #info-content-target h1 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }

    #info-content-target a {
        font-size: 0.75rem !important;
    }

    #info-content-target p {
        font-size: clamp(0.8rem, 2.5vw, 0.95rem) !important;
    }

    #info-content-target p[style*="font-size: 1.2rem"] {
        font-size: clamp(0.8rem, 2.5vw, 0.95rem) !important;
    }

    #archive-content-target h1 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }

    #archive-content-target a {
        font-size: 0.75rem !important;
    }

    #archive-content-target .caption,
    #archive-content-target p[style*="font-style: italic"],
    #lightbox-archive-caption {
        font-size: 0.65rem !important;
    }

    .presse-item {
        flex-direction: column !important;
    }

    .presse-item img {
        width: 100% !important;
        height: auto !important;
    }

    #overlay-data div[style*="font-size: 1.2rem"] {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
    }

    #overlay-data p[style*="font-size: 0.8rem"] {
        font-size: clamp(0.7rem, 2vw, 0.9rem) !important;
    }

    /* ARCHIVE ARTIST NAME */
    .archive-artist-name {
        font-size: 0.9rem;
    }

    #archive-content-target b {
        font-size: 0.85rem !important;
    }

    #archive-content-target > div > div[style*="font-size: 1.2rem"] {
        font-size: 0.85rem !important;
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    #archive-content-target > div > div > div[style*="margin-bottom: 12px"] {
        font-size: clamp(0.95rem, 2.5vw, 1.3rem) !important;
        margin-top: 0.9rem !important;
        margin-bottom: 0.9rem !important;
    }
}

/* ===========================================
   MEDIA QUERIES - LARGE PHONE 480px
   =========================================== */
@media screen and (max-width: 480px) {

    #info-overlay, #artist-overlay, #event-overlay {
        align-items: flex-start !important;
        padding-top: 3rem;
    }

    #archive-overlay {
        padding-top: 2.5rem;
    }

    .archive-popup-container {
        align-items: flex-start !important;
    }

    .archive-popup-wrapper {
        width: 60% !important;
        height: 93%;
        padding-top: 1.8rem !important;
        padding-left: 2.3rem !important;
        padding-right: 2.3rem !important;
        padding-bottom: 0 !important;
    }

    .page-wrapper {
        padding: 1.25rem;
        gap: 0;
    }

    .shape {
        padding: 1.75rem 2rem;
    }

    .green-shape {
        padding: 1.25rem 1.5rem;
    }

    #box-top {
        border-radius: 3.5rem 2rem 5rem 3rem;
    }

    #box-mid {
        border-radius: 3rem 2.5rem 5rem 1rem;
    }

    #box-bottom {
        border-radius: 2rem 2rem 2.5rem 3rem;
    }

    #event-box {
        border-radius: 2rem 2rem 2.5rem 0.5rem;
        padding: 1.25rem;
    }

    #green-dots {
        border-radius: 2.5rem 3rem 2rem 1rem;
    }

    #bientot-tag {
        border-radius: 1.5rem;
        font-size: 1.25rem;
    }

    #box-top-artistes {
        border-radius: 3rem 1.5rem 2.5rem 1rem;
    }

    #box-mid-artistes {
        border-radius: 3rem 2.5rem 5rem 5.5rem;
    }

    #box-mid-artistes li a, #box-mid li a, #archive-menu li a, #info-menu li a {
        font-size: 0.9rem !important;
        text-transform: uppercase;
        white-space: nowrap;
    }

    #box-bottom-artistes {
        border-radius: 0.75rem 2.5rem 0.5rem 2.5rem;
    }

    #green-dots-artistes {
        border-radius: 3rem 2.5rem 5rem 1rem;
    }

    #box-top-archives {
        border-radius: 3rem 1.5rem 2.5rem 1rem;
    }

    #archive-menu {
        border-radius: 3rem 0.75rem 2rem 1.5rem;
    }

    #archive-socials {
        border-radius: 2.5rem 10rem 2rem 1rem;
    }

    #box-top-info {
        border-radius: 3rem 0.75rem 4rem 3rem;
        padding: 1.5rem;
    }

    #info-menu {
        border-radius: 3rem 6rem 2rem 1rem;
    }

    .info-nav-box {
        border-radius: 3rem 4rem 2rem 0.75rem;
        padding: 2rem 0;
    }

    #info-socials {
        border-radius: 3rem 4rem 2rem 1rem;
    }

    #info-socials-info {
        border-radius: 2rem 4rem 2rem 1rem;
    }

    #box-bottom-info {
        border-radius: 1.5rem 2.5rem 1.5rem 2.5rem;
    }

    #box-bottom-info-info {
        border-radius: 1rem 2rem 1.5rem 1rem;
    }

    #box-bottom-info-archive {
        border-radius: 1rem 2.5rem 1.5rem 2.5rem;
    }

    h1 {
        font-size: clamp(3rem, 7vw, 4rem);
        letter-spacing: -0.1rem;
    }

    .subtitle {
        font-size: 1rem;
        max-width: 15.625rem;
    }

    nav a {
        font-size: 1.25rem;
    }

    nav ul {
        gap: 1rem;
    }

    #box-mid ul, #box-mid-artistes ul, #archive-menu ul, #info-menu ul {
        gap: 0.75rem;
    }

    .artist-box {
        width: 8rem;
        height: 3.75rem;
        padding: 0.75rem;
        font-size: 0.8rem;
        border-radius: 1.5rem;
    }

    #artist-container {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }

    .info-menu li {
        font-size: 1.25rem;
    }

    .socials img, .google-maps img, .mail img {
        width: 2rem;
        height: 2rem;
    }

    .overlay-content,
    #event-overlay .overlay-content,
    #artist-overlay .overlay-content,
    #info-overlay .overlay-content {
        width: 92%;
        padding: 1.75rem;
        border-radius: 0.75rem;
    }

    .close-box {
        left: calc(50% - 22rem);
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
        top: 4%;
    }

    .scroll-column {
        height: 15rem;
    }

    #archive-overlay .archive-close-button {
        top: -0.6rem !important;
    }

    .col-header {
        font-size: 1rem;
    }

    #overlay-data h1 {
        font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
    }

    #overlay-data div[style*="font-size: 1.2rem"] {
        font-size: clamp(0.85rem, 2.5vw, 1.05rem) !important;
    }

    #overlay-data p[style*="font-size: 0.8rem"] {
        font-size: clamp(0.65rem, 2vw, 0.85rem) !important;
    }

    #overlay-data a[style*="font-size: 0.9rem"] {
        font-size: 0.7rem !important;
    }

    #overlay-data a img[style*="width: 30px"] {
        width: 18px !important;
        height: 18px !important;
    }

    #overlay-data a img[style*="width: 40px"] {
        width: 22px !important;
        height: 22px !important;
    }

    #overlay-data > div[style*="gap: 30px"] {
        flex-direction: row !important;
        gap: 8px !important;
    }

    .artist-close-button,
    .archive-close-button,
    .info-close-button {
        top: -0.0rem !important;
          font-size: 2.0rem !important;
    }

    #info-content-target p {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem) !important;
    }

    #info-content-target p[style*="font-size: 1.2rem"] {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem) !important;
    }

    #info-content-target [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        align-items: center !important;
    }

    #overlay-data > div[style*="margin-bottom: 40px"]:first-of-type img {
        margin-bottom: 4px !important;
    }

    #event-inner-content hr {
        margin-bottom: 1.8rem !important;
    }

    /* ARCHIVE ARTIST NAME */
    .archive-artist-name {
        font-size: 0.85rem;
    }

    #archive-content-target b {
        font-size: 0.8rem !important;
    }

    #archive-content-target > div > div[style*="font-size: 1.2rem"] {
        font-size: 0.85rem !important;
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    #archive-content-target > div > div > div[style*="margin-bottom: 12px"] {
        font-size: clamp(0.95rem, 2.5vw, 1.3rem) !important;
        margin-top: 0.9rem !important;
        margin-bottom: 0.9rem !important;
    }
}

/* ===========================================
   MEDIA QUERIES - SMALL PHONE 320px
   =========================================== */
@media screen and (max-width: 320px) {

    #info-overlay, #artist-overlay, #event-overlay {
        align-items: flex-start !important;
        padding-top: 1.25rem;
    }

    #archive-overlay {
        padding-top: 2.0rem;
    }

    .archive-popup-container {
        align-items: flex-start !important;
    }

    .archive-popup-wrapper {
        width: 55% !important;
        height: 93%;
        padding-top: 1rem !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        padding-bottom: 0 !important;
    }

    .page-wrapper {
        padding: 0.15rem;
    }

    .shape {
        padding: 1.25rem 1.5rem;
    }

    .green-shape {
        padding: 1rem 1.25rem;
    }

    #box-top {
        border-radius: 2.5rem 1.5rem 3.5rem 2rem;
    }

    #box-mid {
        border-radius: 2rem 1.5rem 3rem 0.5rem;
    }

    #box-bottom {
        border-radius: 1.5rem 1.5rem 1.5rem 2rem;
    }

    #event-box {
        border-radius: 1.5rem 1.5rem 1.5rem 0.25rem;
        padding: 1rem;
    }

    #green-dots {
        border-radius: 1.5rem 2rem 1rem 0.5rem;
    }

    #bientot-tag {
        border-radius: 1rem;
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    #box-top-artistes {
        border-radius: 2rem 1rem 1.5rem 0.5rem;
    }

    #box-mid-artistes {
        border-radius: 2rem 2.5rem 4rem 2.25rem;
    }

    #box-mid-artistes li a, #box-mid li a, #archive-menu li a, #info-menu li a {
        font-size: 0.7rem !important;
        text-transform: uppercase;
        white-space: nowrap;
    }

    #box-bottom-artistes {
        border-radius: 0.5rem 1.5rem 0.25rem 1.5rem;
    }

    #green-dots-artistes {
        border-radius: 2rem 1.5rem 3rem 0.5rem;
    }

    #box-top-archives {
        border-radius: 2rem 1rem 1.5rem 0.5rem;
    }

    #archive-menu {
        border-radius: 2rem 0.5rem 1rem 0.75rem;
    }

    #archive-socials {
        border-radius: 1.5rem 6rem 1rem 0.5rem;
    }

    #box-top-info {
        border-radius: 2rem 0.5rem 2.5rem 2rem;
        padding: 1rem;
    }

    #info-menu {
        border-radius: 2rem 4rem 1rem 0.5rem;
    }

    .info-nav-box {
        border-radius: 2rem 2.5rem 1rem 0.5rem;
        padding: 1.5rem 0;
    }

    #info-socials {
        border-radius: 2rem 2.5rem 1rem 0.5rem;
    }

    #info-socials-info {
        border-radius: 1.25rem 2.5rem 1rem 0.5rem;
    }

    #box-bottom-info {
        border-radius: 1rem 1.5rem 1rem 1.5rem;
    }

    #box-bottom-info-info {
        border-radius: 0.5rem 1rem 0.75rem 0.5rem;
    }

    #box-bottom-info-archive {
        border-radius: 0.5rem 1.5rem 0.75rem 1.5rem;
    }

    h1 {
        font-size: clamp(2.5rem, 6vw, 3rem);
        letter-spacing: -0.05rem;
    }

    .subtitle {
        font-size: 0.9rem;
        max-width: 13rem;
    }

    nav a {
        font-size: 1.1rem;
    }

    nav ul {
        gap: 0.75rem;
    }

    .artist-box {
        width: 70%;
        min-height: 3rem;
        padding: 0.5rem;
        font-size: 0.75rem;
        border-radius: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .info-menu li {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .socials img, .google-maps img, .mail img {
        width: 1.75rem;
        height: 1.75rem;
    }

    .overlay-content,
    #event-overlay .overlay-content,
    #artist-overlay .overlay-content,
    #info-overlay .overlay-content {
        width: 95%;
        padding: 1.25rem;
        border-radius: 0.5rem;
        border-width: 2px;
    }

    .close-box {
        left: calc(50% - 16rem);
        width: 2rem;
        height: 2rem;
        font-size: 1.25rem;
        top: 3%;
        border-radius: 0.5rem;
    }

    .scroll-column {
        height: 12rem;
        padding: 0.75rem;
        border-radius: 1rem;
    }

    .col-header {
        font-size: 0.9rem;
        padding: 0.25rem;
    }

    .archive-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.25rem;
    }

    #event-box h2 {
        font-size: 1.25rem !important;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    #event-box p {
        font-size: 0.8rem !important;
    }

    .morph-text {
        font-size: 1rem !important;
    }

    #box-mid ul {
        gap: 0.5rem;
    }

    #box-mid li a {
        font-size: 0.7rem !important;
    }

    #info-menu ul {
        gap: 0.25rem;
    }

    #info-menu li a {
        font-size: 0.7rem !important;
    }

    #archive-menu ul {
        gap: 0.25rem;
    }

    #archive-menu a {
        font-size: 0.7rem !important;
    }

    #overlay-data h1 {
        font-size: clamp(1.2rem, 5vw, 1.5rem) !important;
    }

    #overlay-data div[style*="font-size: 1.2rem"] {
        font-size: clamp(0.75rem, 2.5vw, 0.95rem) !important;
    }

    #overlay-data p[style*="font-size: 0.8rem"] {
        font-size: clamp(0.6rem, 2vw, 0.75rem) !important;
    }

    #overlay-data a[style*="font-size: 0.9rem"] {
        font-size: 0.65rem !important;
    }

    #overlay-data a img[style*="width: 30px"] {
        width: 16px !important;
        height: 16px !important;
    }

    #overlay-data a img[style*="width: 40px"] {
        width: 20px !important;
        height: 20px !important;
    }

    #overlay-data > div[style*="gap: 30px"] {
        flex-direction: row !important;
        gap: 6px !important;
    }

    #artist-overlay .artist-close-button,
    .archive-close-button,
    .info-close-button {
        top: -0.8rem !important;
          font-size: 2.0rem;
    }

    #archive-overlay .archive-close-button {
        top: -0.5rem !important;
    }

    #info-content-target p {
        font-size: clamp(0.7rem, 2.5vw, 0.85rem) !important;
    }

    #info-content-target p[style*="font-size: 1.2rem"] {
        font-size: clamp(0.7rem, 2.5vw, 0.85rem) !important;
    }

    #info-content-target [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        align-items: center !important;
    }

    #overlay-data > div[style*="margin-bottom: 40px"]:first-of-type img {
        margin-bottom: 4px !important;
    }

    #event-inner-content hr {
        margin-bottom: 1rem !important;
    }
}