/* Vino's Makeup - Nouveau design inspiré de Dennis Snellenberg */

/* ========================= VARIABLES HÉRITÉES DE HERO (À PRÉSERVER) ========================= */
:root {
    --primary-gold: #D4AF37;
    --accent-gold: #CFB53B;
    --dark-gold: #B8860B;
    --black: #000000;
    --transparent-black: rgba(0, 0, 0, 0.7);
    --transparent-gold: rgba(212, 175, 55, 0.1);
}

/* ========================= VARIABLES DENNIS SNELLENBERG ========================= */
:root {
    --color-dark: #1C1D20;
    --color-dark-dark: #141517;
    --color-light: #FFFFFF;
    --color-blue: var(--primary-gold);
    --color-blue-dark: var(--dark-gold);
    --color-gray: #999D9E;
    --color-lightgray: #E9EAEB;
    --color-white: #FFFFFF;
    
    --color-border: rgba(28, 29, 32, 0.175);
    --color-border-solid: #D2D2D2;
    --color-border-light: rgba(255, 255, 255, 0.2);
    --color-border-solid-light: #545557;

    --color-text: #1C1D20;
    --color-text-light: #FFF;

    --animation-primary: all .5s cubic-bezier(.7, 0, .3, 1);
    --animation-fast: all .3s cubic-bezier(.7, 0, .3, 1);
    --animation-smooth: all .7s cubic-bezier(.7, 0, .3, 1);
    --animation-slow: all .9s cubic-bezier(.7, 0, .3, 1);

    --section-padding: clamp(5em, 21vh, 12em);
    --container-padding: clamp(2.5em, 8vw, 8em);
    --gap-padding: clamp(1.5em, 4vw, 2.5em);
}

@media screen and (max-width: 1200px){
    :root { 
        --container-padding: 6vw;
    }
}

@media screen and (max-width: 720px){
    :root { 
        --section-padding: 12vh;
    }
}

@media screen and (max-width: 540px){
    :root { 
        --color-border: rgba(28, 29, 32, 0.225);
        --color-border-light: rgba(255, 255, 255, 0.225);
        --container-padding: clamp(1.25em, 4vw, 2.5em);
        --section-padding: max(2.5em, 12vh);
    }
}

/* ========================= RESET & BASE STYLES ========================= */
*, *:after, *:before { 
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box; 
}

li, ul {
    padding: 0; 
    margin: 0; 
    list-style: none;
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif;
    color: var(--color-white);
    line-height: 1.6;
    font-weight: 450;
    font-style: normal;
    font-size: 16px;
    font-size: clamp(16px, 1.2vw, 19px);
    background-color: var(--color-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html, body {
    width: 100%;
    -webkit-font-smoothing: antialiased;
    position: relative;
    background-color: var(--color-dark);
}

/* ========================= CURSEUR IMAGES HOVER (STYLE DENNIS) ========================= */
.mouse-pos-list-image {
    width: 0;
    z-index: 25;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -52%);
    border-radius: 0;
}

.mouse-pos-list-image.active {
    border-radius: 0;
    width: clamp(10em, 27.5vw, 25em);
    transition: width .4s cubic-bezier(0.34, 1, 0.64, 1);
}

.mouse-pos-list-image-bounce {
    overflow: hidden;
    transform: scale(1) rotate(.001deg);
    transition: all .5s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.mouse-pos-list-image-bounce.active {
    transform: scale(1) rotate(.001deg);
}

.mouse-pos-list-image::before {
    display: block;
    content: "";
    padding-top: 100%;
}

.mouse-pos-list-image .mouse-pos-list-image-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} 

.mouse-pos-list-image .float-image-wrap {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
}

.mouse-pos-list-image .float-image-wrap .mouse-pos-list-image-inner {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    height: 100%;
}

.mouse-pos-list-image .float-image-wrap .mouse-pos-list-image-inner:before {
    display: block;
    content: "";
    padding-top: 100%;
} 

.mouse-pos-list-image .float-image-wrap .mouse-pos-list-image-inner.visible {
    width: 100%;
}

.mouse-pos-list-btn,
.mouse-pos-list-span {
    width: 0;
    height: 0;
    z-index: 25;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: all .4s cubic-bezier(0.34, 1, 0.64, 1);
}

.mouse-pos-list-btn {
    background: var(--color-dark);
}

.mouse-pos-list-span {
    background: transparent;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mouse-pos-list-span p {
    font-size: .75em;
    font-weight: 500;
    margin: 0;
    opacity: 0;
    transition: all .4s cubic-bezier(0.34, 1, 0.64, 1);
}

.mouse-pos-list-btn.active,
.mouse-pos-list-span.active {
    width: 4.5em;
    height: 4.5em;
}

.mouse-pos-list-span.active p {
    opacity: 1;
}

/* Classes overlay nécessaires */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.overlay-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========================= SECTIONS DE BASE ========================= */
.section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    position: relative;
    background: var(--color-dark);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    position: relative;
    width: 100%;
}

.container.medium {
    max-width: 840px;
}

.row {
    display: flex;
    width: 100%;
    position: relative;
}

.flex-col {
    display: block;
    position: relative;
}

/* ========================= GALERIE AVEC PARALLAX HORIZONTAL (DENIS) ========================= */
.simple-gallery {
    margin-top: 2rem;
    overflow: hidden;
}

.simple-gallery .gallery-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    width: 120vw;
    position: relative;
    left: -10vw;
    will-change: transform;
}

.simple-gallery .gallery-row:first-child {
    animation: scrollHorizontalLeft 30s linear infinite;
}

.simple-gallery .gallery-row:last-child {
    animation: scrollHorizontalRight 30s linear infinite;
}

.simple-gallery .gallery-item {
    flex: 0 0 300px;
    height: 225px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-lightgray);
}

.simple-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.simple-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.grid-sub-title {
    margin-bottom: 2rem;
}

.grid-sub-title h5 {
    font-size: 1.2em;
    color: var(--primary-gold);
    margin: 0;
}

/* Animations de défilement horizontal */
@keyframes scrollHorizontalLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

@keyframes scrollHorizontalRight {
    0% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

@media screen and (max-width: 768px) {
    .simple-gallery .gallery-item {
        flex: 0 0 250px;
        height: 187px;
    }
    
    .simple-gallery .gallery-row {
        animation: none !important;
        transform: translateX(0) !important;
        width: 100%;
        left: 0;
        overflow-x: auto;
    }
}

@media screen and (max-width: 480px) {
    .simple-gallery .gallery-item {
        flex: 0 0 200px;
        height: 150px;
    }
    
    .simple-gallery .gallery-row {
        gap: 15px;
    }
}

/* ========================= STYLES BOUTONS (STYLE DENIS) ========================= */
.btn {
    margin-bottom: calc(var(--gap-padding) / 2);
    position: relative;
    z-index: 5;
    border: 0;
    outline: 0;
}

.btn:hover {
    z-index: 15;
}

.btn:last-child {
    margin-bottom: 0;
}

.btn-click {
    cursor: pointer;
    border: 0;
    color: var(--color-white);
    background: transparent;
    border-radius: 2.125em;
    min-width: 1em;
    height: 4.25em;
    padding: 0;
    font-size: 1em;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    will-change: transform;
    outline: 0;
    transform: translateZ(0) rotate(0.001deg);
}

.btn-normal .btn-click {
    -webkit-box-shadow: inset 0px 0px 0px 1px var(--color-border-light); 
    box-shadow: inset 0px 0px 0px 1px var(--color-border-light);
}

.btn-fill {
    background: var(--color-blue);
    position: absolute;
    width: 150%;
    height: 200%;
    border-radius: 50%;
    top: -50%;
    left: -25%;
    transform: translate3d(0,-76%,0);
    will-change: transform;
    transition: background-color ease-in-out .25s;
}

.btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 2.5em;
    z-index: 2;
    color: var(--color-white);
    position: relative;
    transform: rotate(0.001deg);
    pointer-events: none;
    will-change: transform, color;
}

.btn-text-inner {
    font-weight: 450;
    color: var(--color-white);
}

.btn-round {
    margin: 0;
    z-index: 20;
}

.btn-round .btn-click {
    width: clamp(9em, 12vw, 11em);
    height: clamp(9em, 12vw, 11em);
    border-radius: 50%;
    border: 0;
    background: var(--color-dark);
    -webkit-box-shadow: inset 0px 0px 0px 1px var(--color-border-light); 
    box-shadow: inset 0px 0px 0px 1px var(--color-border-light);
}

.btn-round .btn-text {
    padding: 0 1em;
    text-align: center;
}

.btn-round .btn-text-inner {
    color: #fff;
}

.btn-round .btn-fill {
    background: var(--color-blue);
}

.theme-dark .btn-round .btn-click {
    background: var(--color-blue);
}

.theme-dark .btn-round .btn-fill {
    background: var(--color-blue-dark);
}

/* ========================= BOUTON CENTRÉ (STYLE DENIS) ========================= */
.center-grid-btn {
    padding-top: calc(var(--section-padding) / 3);
    padding-bottom: calc(var(--section-padding) * 1);
}

.center-grid-btn-home {
    padding-top: calc(var(--section-padding) / 2);
    padding-bottom: 0;
}

.center-grid-btn .grid-after-btn {
    display: flex;
    justify-content: center;
}

.center-grid-btn .grid-after-btn .btn-text {
    min-width: 10em;
}

@media screen and (max-width: 540px) {
    .mouse-pos-list-image,
    .mouse-pos-list-btn,
    .mouse-pos-list-span {
        display: none;
    }
}

/* ========================= HERO SECTION (PRÉSERVÉE INTÉGRALEMENT) ========================= */
.luxury-heading {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
}

/* Simple Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 110;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.btn-hamburger {
    position: relative;
    top: auto;
    right: auto;
    z-index: 150;
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .navbar-brand img {
        height: 40px;
    }
}

.btn-hamburger:hover {
    z-index: 105;
}

.btn-hamburger .btn-click,
.btn-hamburger .btn-text {
    width: clamp(3em, 4vw, 3.5em);
    height: clamp(3em, 4vw, 3.5em);
    border-radius: 50%;
}

.btn-hamburger .btn-click {
    border: 0;
    background-color: var(--black);
    transition: background-color .25s cubic-bezier(0.36, 0, 0.66, 0), box-shadow .25s cubic-bezier(0.36, 0, 0.66, 0);
    -webkit-box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.2); 
    box-shadow: inset 0px 0px 0px 1px rgba(255, 255, 255, 0.2);
}

.btn-hamburger .btn-fill {
    background-color: var(--primary-gold);
}

.btn-hamburger .btn-text-inner {
    color: #fff;
    opacity: 0;
}

.btn-hamburger .btn-bars {
    position: absolute;
    width: 28%;
    height: 8%;
    opacity: 1;
}

.btn-hamburger .btn-text {
    position: relative;
}

.btn-hamburger .btn-bars {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28%;
    height: 8%;
}

.btn-hamburger .btn-bars::before,
.btn-hamburger .btn-bars::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    height: 1px;
    width: 100%;
    background: #fff;
    transition: all 0.3s ease;
}

.btn-hamburger .btn-bars::before {
    top: -6px;
    transform: translateX(-50%);
}

.btn-hamburger .btn-bars::after {
    top: 6px;
    transform: translateX(-50%);
}

.btn-hamburger.active .btn-bars::before {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.btn-hamburger.active .btn-click {
    background-color: var(--primary-gold);
}

.btn-hamburger.active .btn-bars::after {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

/* Fixed Nav */
.fixed-nav-back {
    background: linear-gradient(to right,hsla(220, 13%, 0%, .3) 40%, hsla(220, 13%, 0%, 1) 80%);
    opacity: 0;
    transition: opacity .8s cubic-bezier(.7, 0, .2, 1);
    z-index: 100;
    pointer-events: none;
    will-change: opacity;
}

.nav-active .fixed-nav-back {
    opacity: .35;
    pointer-events: all;
}

.fixed-nav {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    background: var(--black);
    z-index: 100;
    transform: translate(calc(100% + 6vw),0) rotate(0.001deg);
    transition: transform .8s cubic-bezier(.7, 0, .2, 1);
    will-change: transform;
}

.nav-active .fixed-nav {
    transform: translate(0,0) rotate(0.001deg);
}

.fixed-nav-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 15vh 7.5vw 10vh 7.5vw;
    position: relative;
    transform: translate(0,0) rotate(0.001deg);
    transition: all .6s cubic-bezier(.7, 0, .2, 1);
    will-change: transform;
}

.nav-active .fixed-nav-inner {
    transform: translate(0,0) rotate(0.001deg);
}

.fixed-nav .nav-row h5 {
    margin-bottom: 3em;
    color: var(--primary-gold);
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .8;
}

.fixed-nav .nav-row ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 5vh;
    margin-left: calc(var(--gap-padding) / -2);
}

.fixed-nav .nav-row .btn-link .btn-click {
    height: auto;
}

.fixed-nav .nav-row .btn-text-inner {
    font-size: 2.5em;
    line-height: 1.4;
    color: #fff;
}

.fixed-nav .nav-row .btn-link .btn-click::after {
    display: none !important;
}

.fixed-nav .social-row .btn-link .btn-click::after {
    display: none !important;
}

.fixed-nav .social-row {
    margin-left: calc(var(--gap-padding) / -4);
}

.fixed-nav .social-row ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.fixed-nav .social-row .btn-text-inner {
    font-size: 1.5em;
    color: #fff;
}

/* Supprimer tous les soulignements */
.fixed-nav a, .fixed-nav .btn-click {
    text-decoration: none !important;
}

.fixed-nav .btn-link .btn-click::after,
.fixed-nav .btn-link-external .btn-click::after {
    display: none !important;
}

.fixed-nav .social-row h5 {
    color: var(--primary-gold);
    margin-bottom: 2em;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .8;
}

.fixed-nav .social-row .btn-text-inner {
    color: #fff;
}

.fixed-nav-rounded-div {
    position: absolute;
    left: 1px;
    transform: translateX(-100%);
    height: 100%;
    top: 0;
}

.fixed-nav-rounded-div .rounded-div-wrap {
    width: 0vw;
    height: 100%;
    transition: all .85s cubic-bezier(.7, 0, .2, 1);
    will-change: width;
    overflow: hidden;
}

.nav-active .fixed-nav-rounded-div .rounded-div-wrap {
    width: 6vw;
}

.fixed-nav-rounded-div .rounded-div-wrap .rounded-div {
    background: var(--black);
    height: 150%;
    content: "";
    display: block;
    position: absolute;
    width: 775%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-6.5%, -50%);
}

.fixed-nav .nav-row ul .btn {
    transform: translate(15vw,0) rotate(0.001deg);
    transition: all .8s cubic-bezier(.7, 0, .2, 1);
    will-change: transform;
}

.nav-active .fixed-nav .nav-row ul .btn {
    transform: translate(0,0) rotate(0.001deg);
}

.fixed-nav .nav-row ul .btn:nth-child(2) {transition-delay: .03s;}
.fixed-nav .nav-row ul .btn:nth-child(3) {transition-delay: .06s;}
.fixed-nav .nav-row ul .btn:nth-child(4) {transition-delay: .09s;}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('https://i.postimg.cc/Z5vBSRMk/banner.jpg');
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 100px 0 0;
}

@media screen and (max-width: 1024px) {
    .hero-section {
        background-image: url('https://i.postimg.cc/Y08ghs1J/banner1.jpg');
        background-size: cover;
        background-position: right center;
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
}

/* Arc Text */
.arc-text {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 120px;
    z-index: 2;
}

.arc-svg {
    width: 100%;
    height: 100%;
}

.arc-svg text {
    fill: white;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 768px) {
    .arc-text {
        top: -80px;
        width: 320px;
        height: 90px;
    }
    
    .arc-svg text {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 2px;
    }
}

/* Globe Container */
.globe-container {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: baseline;
}

/* Digital Ball Globe */
.digital-ball {
    width: 1em;
    height: 1em;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    overflow: visible;
    z-index: 2;
}

.digital-ball .overlay {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: digitalball 6s ease-in-out infinite;
}

@keyframes digitalball {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1em;
    height: 1em;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    will-change: transform;
}

.globe-wrap {
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
    animation: globeRotate 5.4s cubic-bezier(0.35, 0, 0.65, 1) infinite;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 0.125em var(--primary-gold);
}

@keyframes globeRotate {
    0% { transform: translate(-50%, -50%) rotate(15deg); }
    50% { transform: translate(-50%, -50%) rotate(-15deg); }
    100% { transform: translate(-50%, -50%) rotate(15deg); }
}

.globe .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: inset 0.1em 0px 0px 0.08em var(--primary-gold);
    animation: circleRotate 2.7s linear infinite;
    font-size: 0.75em;
}

@keyframes circleRotate {
    0% { border-radius: 50%; box-shadow: inset 0.1em 0px 0px 0.08em var(--primary-gold); width: 100%; }
    49% { border-radius: 50%; box-shadow: inset 0.1em 0px 0px 0.08em var(--primary-gold); background: transparent; }
    50% { border-radius: 0%; width: 0.175em; background: var(--primary-gold); }
    51% { border-radius: 50%; box-shadow: inset -0.1em 0px 0px 0.08em var(--primary-gold); background: transparent; }
    100% { border-radius: 50%; box-shadow: inset -0.1em 0px 0px 0.08em var(--primary-gold); width: 100%; }
}

.globe :nth-child(1) {
    animation-delay: -1.8s;
}

.globe :nth-child(2) {
    animation-delay: -0.9s;
}

.globe .circle-hor {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    height: 55%;
    box-shadow: inset 0px 0px 0px 0.15em var(--primary-gold);
    font-size: 0.75em;
}

.globe .circle-hor-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    transform: translate(-50%, -50%);
    border-radius: 0%;
    height: 0.15em;
    background: var(--primary-gold);
    font-size: 0.75em;
}

/* Gallery Carousel */
.hero-gallery {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 40px;
    left: 0;
    z-index: 0;
    opacity: 0.8;
}

.gallery-track {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 20px;
}

.gallery-item {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 250px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-150%);
        }
    }
}

/* Hero Description */
.hero-description {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    height: 40px;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
}

.description-track {
    display: flex;
    animation: scrollText 40s linear infinite;
    white-space: nowrap;
}

@keyframes scrollText {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.description-track span {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ========================= TYPOGRAPHY DENNIS STYLE ========================= */
h1, h2, h3, h4, h5, h6, p, a, li, ul, ol, span, strong, em {
    padding: 0; 
    margin: 0; 
    font-style: normal; 
    font-weight: 450; 
    letter-spacing: normal;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 450;
    font-style: normal;
    font-size: calc(clamp(3.25em, 7vw, 8em) * .875);
    line-height: 1.065;
    margin-bottom: 1em;
    color: var(--color-white);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 450;
    font-style: normal;
    font-size: calc(clamp(3.25em, 5vw, 4.5em) * .75);
    line-height: 1.065;
    margin-bottom: .66em;
    color: var(--color-white);
}

h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 450;
    font-style: normal;
    font-size: clamp(1.55em, 2.3vw, 2.5em);
    line-height: 1.45;
    margin: 0;
    color: var(--primary-gold);
}

h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 450;
    font-style: normal;
    font-size: clamp(1.1em, 1.65vw, 1.45em);
    line-height: 1.45;
    margin: 0;
    color: var(--primary-gold);
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 450;
    font-style: normal;
    color: var(--color-white);
    font-size: 1em;
    line-height: 1.66;
    margin-bottom: 1em;
}

/* ========================= LAYOUT FOUNDATION DENNIS STYLE ========================= */
.section {
    display: block;
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    position: relative;
}

.container {
    width: 100%;
    max-width: 100%;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin: 0 auto;
}

.container.medium {
    max-width: 75em;
    padding-left: calc(var(--container-padding) / 2);
    padding-right: calc(var(--container-padding) / 2);
}

.row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.flex-col {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stripe {
    background: var(--color-white);
    height: 1px;
    width: 100%;
}

.text-wrap {
    width: 100%;
}

.text-wrap p {
    color: var(--color-white);
    line-height: 1.6;
    opacity: 0.9;
}

.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 1;
}

/* ========================= HOME INTRO SECTION ========================= */
.home-intro {
    padding-bottom: calc(var(--section-padding) * .66);
}

.home-intro .flex-col:nth-child(1) {
    width: 70%;
    padding-right: var(--gap-padding);
}

.home-intro .flex-col:nth-child(2) {
    width: 30%;
    padding-left: var(--gap-padding);
}

.home-intro .flex-col:nth-child(2) .btn {
    position: absolute;
    top: 80%;
}

.home-intro .flex-col:nth-child(2) p {
    margin-bottom: 6em;
    padding-top: .5em;
    max-width: 14em;
}

@media screen and (max-width: 720px){
    .home-intro {
        padding-bottom: calc(var(--section-padding) * 1);
    }

    .home-intro .flex-col:nth-child(1) {
        width: 100%;
        padding-right: 0;
    }
    
    .home-intro .flex-col:nth-child(2) {
        width: 100%;
        padding-left: 0;
        max-width: 100%;
        padding: calc(var(--section-padding) / 2) 0 0 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .home-intro .flex-col:nth-child(2) .text-wrap {
        width: 100%;
    }

    .home-intro .flex-col:nth-child(2) p {
        margin-bottom: calc(var(--section-padding) * .66);
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .home-intro .flex-col:nth-child(2) .btn {
        position: absolute;
        top: unset;
        bottom: 0;
        right: 0;
        transform: translate(-20%, 50%);
    }
}

/* Span Lines Animation */
.span-lines.animate .span-line {
    position: relative;
    display: inline-flex;
    overflow: hidden;
}

.span-lines.animate .span-line .span-line-inner {
    position: relative;
    display: block;
}

/* ========================= WORK GRID SECTION ========================= */
.work-grid .row { 
    align-items: center;
    color: unset;
    text-decoration: unset;
    padding: calc(var(--section-padding) / 3) 0;
}

.work-grid .work-items li {
    transition: var(--animation-smooth);
}

.work-grid .work-items .flex-col:nth-child(1) {
    padding-left: calc(var(--container-padding) * 1);
    width: 44%;
}

.work-grid .work-items .flex-col:nth-child(2) {
    width: 20%;
    padding-top: .25em;
}

.work-grid .work-items h4 {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 1;
    transition: var(--animation-fast);
    transform: translateX(0) rotate(0.001deg);
    color: var(--primary-gold);
}

.work-grid .work-items h4 span {
    position: relative;
    display: block;
    padding: .1em 0;
}

.work-grid .work-items a:hover h4 {
    transform: translateX(calc(var(--container-padding) * -.1)) rotate(0.001deg);
}

.work-grid .work-items a p {
    transition: var(--animation-fast);  
    transform: translateX(0) rotate(0.001deg);
    color: #fff;
}

.work-grid .work-items a:hover p {
    transform: translateX(calc(var(--container-padding) * .1)) rotate(0.001deg);
}

.work-grid .work-items li a {
    transition: var(--animation-fast);
}

.work-grid .work-items:hover a {
    opacity: 1;
}

.work-grid .work-items a:hover {
    opacity: .33;
}

.work-grid .grid-sub-title {
    width: 100%;
    display: flex;
    padding-bottom: var(--gap-padding);
}

.work-grid .grid-sub-title h5 {
    margin: 0;
    width: 100%;
    color: var(--primary-gold);
}

.work-grid .grid-sub-title .flex-col:nth-child(1) {
    padding-left: calc(var(--container-padding) * 1);
    width: 44%;
}

/* Large Work Grid */
.large-work-grid {
    padding-top: 0;
    padding-bottom: 0;
}

.large-work-grid .work-items h4 {
    font-size: calc(clamp(3.25em, 7vw, 8em) * .75);
}

.large-work-grid .row { 
    padding: calc(var(--section-padding) / 3.5) 0 calc(var(--section-padding) / 3) 0;
}

.large-work-grid .work-items .flex-col:nth-child(1) {
    padding-left: calc(var(--container-padding) * 1);
    width: 70%;
}

.large-work-grid .work-items .flex-col:nth-child(2) {
    width: 30%;
    padding-left: var(--gap-padding);
    padding-top: 1em;
    padding-right: calc(var(--container-padding) * .5);
}

.large-work-grid .grid-sub-title .flex-col:nth-child(1) {
    padding-left: calc(var(--container-padding) * 1);
    width: 70%;
}

@media screen and (max-width: 1024px) {
    .large-work-grid {
        display: none;
    }
}

/* ========================= WORK TILES SECTION ========================= */
.work-tiles {
    padding-top: 0;
}

.work-tiles .container {
    padding-left: calc(var(--container-padding) * .75);
    padding-right: calc(var(--container-padding) * .75);
}

.work-tiles ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-top: var(--gap-padding);
}

.work-tiles ul li {
    display: block;
    width: 50%;
    position: relative;
    overflow: hidden;
    height: 0;
    width: 0;
    transform: translateY(0%) rotate(0.001deg) scale(1);
    transition: opacity .3s ease-in .4s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-tiles ul li.visible {
    height: auto;
    width: 50%;
}

.work-tiles ul li .single-tile-wrap {
    width: 100%;
    padding-bottom: calc(var(--section-padding) * 1);
    padding-left: calc(var(--container-padding) * .25);
    padding-right: calc(var(--container-padding) * .25);
}

.work-tiles ul li a { 
    align-items: center;
    color: unset;
    text-decoration: unset;
    overflow: hidden;
}

.work-tiles ul li a .flex-col:nth-child(1) {
    width: 100%;
    padding-bottom: var(--gap-padding);
}

.work-tiles ul li a .flex-col:nth-child(2) {
    width: 100%;
    padding-bottom: calc(var(--gap-padding) / 2);
}

.work-tiles ul li a .stripe {
    margin-top: calc(var(--gap-padding) / 2);
    background: var(--primary-gold);
    height: 1px;
    width: 100%;
}

.work-tiles ul li a .flex-col:nth-child(3) { 
    width: 70%;
}

.work-tiles ul li a .flex-col:nth-child(4) {
    width: 30%;
    text-align: right;
}

.work-tiles ul li a .tile-image {
    width: 100%;
    position: relative;
    background: var(--color-lightgray);
    overflow: hidden;
    border-radius: 10px;
}

.work-tiles ul li a .tile-image .overlay-image { 
    transform: scale(1) rotate(0.001deg);
    transition: var(--animation-primary);
    will-change: transform;
}

.work-tiles ul li a:hover .tile-image .overlay-image { 
    transform: scale(1.025) rotate(0.001deg);
}

.work-tiles ul li a .tile-image::before {
    display: block;
    content: "";
    padding-top: 100%;
}

.work-tiles ul li a h4 {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 1;
    transition: var(--animation-fast);
    transform: translateX(0) rotate(0.001deg);
    margin: 0;
    color: var(--primary-gold);
}

.work-tiles ul li a h4 span {
    position: relative;
    display: block;
    padding: .1em 0;
}

@media screen and (max-width: 1024px) {
    .work-tiles ul li a h4 {
        font-size: calc(clamp(1.75em, 2.3vw, 2.5em) * 1.125);
    }
}

@media screen and (max-width: 620px) {
    .work-tiles ul li.visible {
        width: 100%;
    }

    .work-tiles .container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .work-tiles ul li .single-tile-wrap {
        padding-left: 0;
        padding-right: 0;
    }

    .work-tiles ul li a:hover .tile-image .overlay-image { 
        transform: scale(1) rotate(0.001deg);
    }

    .work-tiles ul li a .flex-col:nth-child(2) {
        width: 100%;
        padding-bottom: calc(var(--section-padding) / 6);
    }
    
    .work-tiles ul li a .stripe {
        margin-top: calc(var(--section-padding) / 6);
    }
}

/* Work Tiles Home */
.work-tiles-home {
    display: none;
    padding-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .work-tiles-home {
        display: block;
    }

    .work-tiles-home + .center-grid-btn {
        padding-top: 0;
    }

    .work-tiles-home .container ul li:nth-child(3){
        display: none;
    }

    .work-tiles-home .container ul li:nth-child(4){
        display: none;
    }
}

/* ========================= BUTTONS DENNIS STYLE ========================= */
.btn {
    margin-bottom: calc(var(--gap-padding) / 2);
    position: relative;
    z-index: 5;
    border: 0;
    outline: 0;
}

.btn:hover {
    z-index: 15;
}

.btn:last-child {
    margin-bottom: 0;
}

.btn-click {
    cursor: pointer;
    border: 0;
    color: var(--color-white);
    background: transparent;
    border-radius: 2.125em;
    min-width: 1em;
    height: 4.25em;
    padding: 0;
    font-size: 1em;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    will-change: transform;
    outline: 0;
    transform: translateZ(0) rotate(0.001deg);
}

.btn-click:hover {
    cursor: pointer;
    text-decoration: none;
}

.btn-normal .btn-click {
    -webkit-box-shadow: inset 0px 0px 0px 1px var(--color-border-light); 
    box-shadow: inset 0px 0px 0px 1px var(--color-border-light);
}

.btn-fill {
    background: var(--primary-gold);
    position: absolute;
    width: 150%;
    height: 200%;
    border-radius: 50%;
    top: -50%;
    left: -25%;
    transform: translate3d(0,-76%,0);
    will-change: transform;
    transition: background-color ease-in-out .25s;
}

.btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 2.5em;
    z-index: 2;
    color: var(--color-white);
    position: relative;
    transform: rotate(0.001deg);
    pointer-events: none;
    will-change: transform, color;
}

.btn-text-inner {
    color: var(--color-white);
}

.btn-round {
    margin: 0;
    z-index: 20;
}

.btn-round .btn-click {
    width: clamp(9em, 12vw, 11em);
    height: clamp(9em, 12vw, 11em);
    border-radius: 50%;
    border: 0;
    background: var(--color-dark);
}

.btn-round .btn-text {
    padding: 0 1em;
    text-align: center;
}

.btn-round .btn-text-inner {
    color: #fff;
}

/* ========================= CENTER GRID BUTTON ========================= */
.center-grid-btn {
    padding-top: calc(var(--section-padding) / 3);
    padding-bottom: calc(var(--section-padding) * 1);
}

.center-grid-btn-home {
    padding-top: calc(var(--section-padding) / 2);
    padding-bottom: 0;
}

.center-grid-btn .grid-after-btn {
    display: flex;
    justify-content: center;
}

.center-grid-btn .grid-after-btn .btn-text {
    min-width: 10em;
}

/* ========================= FOOTER DENNIS STYLE ========================= */
.footer-rounded-div {
    width: 100%;
    position: relative;
    height: 0;
    display: block;
    z-index: 2;
}

.footer-rounded-div .rounded-div-wrap {
    transform: translateY(-1px);
    will-change: height;
    width: 100%;
    top: 0;
    position: relative;
    height: 10vh;
    overflow: hidden;
}

.footer-rounded-div .rounded-div {
    width: 150%;
    content: "";
    display: block;
    position: absolute;
    background: var(--color-dark-dark);
    height: 750%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -86.666%);
    z-index: 1;
}

.footer-wrap {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--color-dark-dark);
    display: flex;
    align-items: flex-end;
    box-shadow: 0px 5px 0px 5px var(--color-dark);
}

.footer-wrap.theme-dark .footer{
    background: var(--color-dark-dark);
}

.footer-wrap.theme-dark .overlay-gradient {
    pointer-events: none;
    height: calc(var(--section-padding) * .75);
    background: linear-gradient(to bottom,rgba(28, 29, 32, 1) 0%, rgba(28, 29, 32, 0) 100%);
    opacity: .75;
}

.footer {
    padding-bottom: 0;
    width: 100%;
    will-change: transform;
    background: var(--color-dark-dark);
}

.footer .arrow {
    margin-bottom: 2em;
}

.footer .arrow svg {
    opacity: 0.6;
}

.footer h2 {
    font-size: calc(clamp(3.25em, 7vw, 8em) * .875);
    color: var(--color-white);
}

.footer h2 span {
    display: block;
}

.footer .container.medium {
    display: flex;
    flex-direction: column;
}

.footer .container.medium .row:nth-child(1) {
    padding-bottom: calc(var(--section-padding) / 2);
}

.footer .container.medium .row:nth-child(2) {
    padding-bottom: calc(var(--section-padding) * .475);
}

.footer .container.medium .row:nth-child(3) .flex-col {
    display: flex;
    flex-direction: row;
}

.footer .container.medium .row:nth-child(3) .flex-col .btn {
    display: inline-flex;
    margin-right: 0.5em;
    margin-bottom: 0;
}

/* Bottom Footer Section (exactement comme Denis) */
.footer .container.no-padding {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.bottom-footer {
    padding: calc(var(--section-padding) / 1.3) calc(var(--gap-padding) / 1.33) calc(var(--gap-padding) / 1.75) calc(var(--gap-padding) / 1);
    flex-direction: row;
    justify-content: space-between;
}

.bottom-footer .stripe {
    display: none;
}

.bottom-footer .flex-col {
    display: flex;
    width: auto;
    justify-content: space-between;
}

.bottom-footer .credits {
    padding-right: var(--gap-padding);
}

.bottom-footer .credits,
.bottom-footer .time,
.bottom-footer .developer {
    display: flex;
    flex-direction: column;
}

.bottom-footer .credits h5,
.bottom-footer .time h5,
.bottom-footer .developer h5,
.bottom-footer .socials h5 {
    font-size: 0.85em;
    color: var(--color-gray);
    margin-bottom: 1.5em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.bottom-footer .credits p,
.bottom-footer .time p,
.bottom-footer .developer p {
    font-size: 0.85em;
    color: var(--color-light);
    margin: 0;
    line-height: 1.4;
}

.bottom-footer .developer a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-footer .developer a:hover {
    color: var(--primary-gold);
}

.bottom-footer .socials {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.bottom-footer .socials h5 {
    padding-left: calc(var(--gap-padding) * .5);
    margin-bottom: 1em;
}

.bottom-footer .socials ul {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin-top: 0;
    width: 100%;
}

.bottom-footer .socials li {
    display: inline-flex;
    font-size: 0.85em;
}

.bottom-footer .socials .btn-link .btn-click {
    height: auto;
    min-height: 2em;
    padding: 0.5em 1em;
    border-radius: 1em;
    font-size: 0.85em;
}

.bottom-footer .socials .btn-text-inner {
    color: var(--color-light);
    font-size: 0.85em;
}

.bottom-footer .socials .stripe {
    display: block;
    margin-top: var(--gap-padding);
    width: 100%;
}

.bottom-footer #timeSpan {
    text-transform: uppercase;
}

@media screen and (max-width: 720px){
    .footer-rounded-div .rounded-div-wrap{
        height: 7.5vh;
    }

    .footer .container.medium .row:nth-child(3) .flex-col {
        flex-direction: column;
    }
    
    .footer .container.medium .row:nth-child(3) .flex-col .btn {
        width: 100%;
        margin: 0;
        margin-bottom: .75em;
    }
    
    .footer .container.medium .row:nth-child(3) .flex-col .btn .btn-click {
        width: 100%;
    }
    
    .footer .container.medium .row:nth-child(1) {
        padding-bottom: calc(var(--section-padding) * .75);
    }
    
    .footer .container.medium .row:nth-child(2) {
        padding-bottom: calc(var(--section-padding) * 1.25);
    }

    .footer .container.medium .row:nth-child(3) {
        padding-bottom: calc(var(--section-padding) / 5);
    }

    .footer .container.medium .row:nth-child(2) .btn-fixed {
        position: absolute;
        right: 0;
        top: 0;
        transform: translate(-20%, -50%);
    }

    .bottom-footer {
        padding: 5vh 0 calc(var(--gap-padding) / 1.75) 0;
    }

    .bottom-footer .flex-col {
        width: 100%;
    }

    .bottom-footer .flex-col:nth-child(2) {
        padding: 0 calc(var(--container-padding) - calc(var(--gap-padding) * .333)) calc(var(--section-padding) / 3) calc(var(--container-padding) - calc(var(--gap-padding) * .333));
        width: 100%;
    }

    .bottom-footer .flex-col:nth-child(1) {
        order: 3;
        padding: 0 var(--container-padding) calc(var(--gap-padding) * .75) var(--container-padding);
    }

    .bottom-footer .socials li {
        display: inline-flex;
        font-size: 1em;
        margin-right: 0;
    }
    
    .bottom-footer p {
        font-size: 1em;
    }

    .footer .container.medium .row:nth-child(2) .stripe {
        display: block;
    }

    .bottom-footer .stripe {
        display: block;
        margin-top: var(--gap-padding);
        width: calc(100% - (var(--gap-padding) * .666));
        left: 50%;
        margin-left: calc(var(--gap-padding) * .333);
    }

    .bottom-footer .socials,
    .bottom-footer .socials ul {
        width: 100%;
    }
}

/* ========================= UTILITIES ========================= */
.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img.overlay,
video.overlay {
    object-fit: cover;
}

/* Selection */
::selection {
    background-color: var(--primary-gold); 
    color: var(--color-white); 
    text-shadow: none;
}

::-moz-selection {
    background-color: var(--primary-gold); 
    color: var(--color-white); 
    text-shadow: none;
}