/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --bg-color: #FBFBFB;
    --accent-color: #fe6f1f;
    --main-color: #2a2d35;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/* Fictional @font-face pointing to local Nexa Rust Sans */
@font-face {
    font-family: 'Nexa Rust Sans';
    src: url('../fonts/NexaRustSansDemo-Black-BF63bf55572b854-iF66178feab4953.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa Rust Hand Made';
    src: url('../fonts/NexaRustHandmade-Trial-Extended-BF63bf55571ed66-iF66178feaa93cb.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--accent-color);
    z-index: 10000; /* Stays on top of absolutely everything */
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 300px;
    padding: 0 20px;
}

.preloader-logo {
    width: 168px;
    height: auto;
    color: #FFFFFF; /* White logo */
}

.preloader-progress-container {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3); /* Transparent white track */
    overflow: hidden;
}

.preloader-progress-bar {
    width: 0%;
    height: 100%;
    background-color: #FFFFFF; /* Solid white progress */
    transition: width 0.1s ease-out;
}

.preloader-percentage {
    /* Same font as texts & inputs request */
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scrollbar-width: auto;
    scrollbar-color: var(--accent-color) #000000;
}

/* Scrollbar Styles (Webkit: Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border: 2px solid #000000; /* Adds an optional border to make thumb look nicer on black */
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e65c00;
}

/* Fluid responsive scaling for desktops wider than the design reference (1440px) */
@media (min-width: 1441px) {
    html {
        font-size: 1.1111vw;
        /* 16px at 1440px viewport */
    }
}

body {
    background-color: var(--bg-color);
    color: var(--main-color);
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* Empêche spécifiquement le scroll horizontal lié au parallax sans couper la hauteur du hero */
}

/* Primary Headings / Display Font */
.logo,
.main-title,
.roles,
.cta,
.email,
.section-label {
    /* Fallbacks heavily heavily condensed and bold if Nexa Rust Sans lacks */
    font-family: 'Nexa Rust Sans', 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   Layout / Container
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem 4rem;
}

@media (min-width: 1441px) {
    .container {
        max-width: 100%;
    }
}

/* ==========================================================================
   Header Base (Common)
   ========================================================================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    padding: 3rem 4rem 1rem 4rem;
    pointer-events: none;
}

@media (min-width: 1441px) {
    .header {
        max-width: 100%;
        padding: 3rem 5% 1rem 5%;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 2.25rem;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 3rem;
    padding-top: 0.2rem;
}

.nav a {
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.3rem;
}

/* ==========================================================================
   Header 1 : Calque de Différence (Inversion des couleurs)
   ========================================================================== */
.header-difference {
    mix-blend-mode: difference;
    color: #fff;
    z-index: 100;
}

/* Ajout d'une classe pour forcer le header en NOIR pur par-dessus la section orange (annule l'effet difference) */
.header-solid-black {
    mix-blend-mode: normal !important;
    color: var(--main-color) !important;
}

.header-difference .logo-link {
    display: block;
    color: inherit;
    pointer-events: none;
}

.header-difference .nav a {
    color: inherit;
    pointer-events: none;
}

/* ==========================================================================
   Header 2 : Calque Interactif Hover (Couleur originelle)
   ========================================================================== */
.header-hover {
    z-index: 101;
}

.header-hover .logo-link {
    display: block;
    color: var(--accent-color);
    opacity: 0;
    pointer-events: auto;
    transition: opacity 0.3s ease-out;
}

.header-hover .logo-link:hover {
    opacity: 1;
}

.header-hover .nav a {
    color: var(--accent-color);
    opacity: 0;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.header-hover .nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-hover .nav a:hover {
    opacity: 1;
}

.header-hover .nav a:hover::after {
    width: 100%;
}

/* Modifier classe pour forcer le hover en blanc quand on est sur la section orange */
.header-hover-white .logo-link,
.header-hover-white .nav a {
    color: #fff;
}

.header-hover-white .nav a::after {
    background-color: #fff;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    margin-top: 6rem;
    /* Compense la hauteur de l'en-tête qui est maintenant en absolu/fixed */
    /* Fill rest of screen */
    /* overflow: hidden removed: causes bug cutting texts */
}

/* Parallax Layer smoothing transition */
.parallax-layer {
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Massive Title Image */
.main-title {
    margin-bottom: 2rem;
    /* Tighter gap to let elements touch the title baseline */
    width: 100%;
    position: relative;
    cursor: default;
}

.title-base {
    width: 100%;
    height: auto;
    display: block;
}

.title-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/DIRECTEUR%20ARTISTIQUE%20ORANGE.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    /* Let the container handle mouse tracking */
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto 1fr;
    /* Two rows, second fills remaining space */
    grid-gap: 2rem;
    /* Gap between columns */
    position: relative;
    flex-grow: 1;
    /* Allow grid to fill remaining space before footer */
}

/* Row 1: Intro Text and Location */
.intro-text {
    grid-column: 1 / span 5;
    /* Increased span to reduce the gap with the black rectangle */
    grid-row: 1;
    color: var(--accent-color);
    font-size: 0.9rem;
    line-height: 1.8;
}

.location {
    grid-column: 11 / span 2;
    grid-row: 1;
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: right;
    align-self: start;
    margin-top: 0;
    /* Aligned perfectly to the grid top */
}

/* Row 2: Roles and Portrait */
.roles {
    grid-column: 3 / span 4;
    /* Wider position to the left of the portrait */
    grid-row: 2;
    list-style: none;
    font-family: 'Nexa Rust Sans', 'Oswald', sans-serif;
    color: var(--main-color);
    font-size: 1.6rem;
    /* Bolder, larger chunky font to match title */
    line-height: 1.1;
    white-space: nowrap;
    align-self: end;
    /* Push to bottom of its implicit row */
    margin-bottom: 0;
}

.arrow-svg {
    height: 0.8em;
    width: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
    /* Adjust arrow position to baseline properly */
    position: relative;
    top: -0.1em;
}

/* Center Column / Portrait Image */
.hero-center {
    grid-column: 7 / span 4;
    grid-row: 1 / span 2;
    /* Span across intro and roles rows */
    width: 100%;
    aspect-ratio: 3.5 / 4.5;
    /* Proportionate height */
    height: auto;
    object-fit: cover;
    /* Ensures the image fills the area beautifully */
    margin-top: 0;
    /* Align perfectly with intro text top */
    align-self: start;
    /* Anchor to top of row 1 */
}

/* Hero Footer */
.hero-footer {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
    /* Add a visible gap below the black rectangle */
    padding-bottom: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.cta {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    /* Match the size of the orange text */
    color: var(--main-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow-down {
    transform: rotate(45deg);
    margin-right: 0;
    margin-left: 0.2rem;
    height: 1em;
}

.email {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    /* Bold as requested */
    color: var(--main-color);
    position: relative;
    padding-bottom: 0.2rem;
}


.email::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
}

/* ==========================================================================
   Works Section
   ========================================================================== */
.works-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* On retire overflow: hidden pour permettre au Ripple de déborder et couvrir l'écran ! */
}

.works-grid {
    display: flex;
    justify-content: center;
    align-items: center; /* Permet au rectangle agrandi de rester centré verticalement */
    gap: 20px; /* Espace entre les rectangles */
    width: 100%;
    margin-top: 0; /* Remis à zéro car la section est déjà centrée (justify-content: center) */
    /* Propriétés 3D pour le carrousel au scroll */
    perspective: 2000px;
    transform-style: preserve-3d;
}

.works-rect {
    flex: 1; /* Les 5 rectangles prennent une largeur équitable */
    max-width: 12vw; /* Responsive au lieu de 160px */
    background-color: #d1d1d1; /* Gris clair */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    height: 18vw; /* Responsive au lieu de 250px */
    position: relative; /* Context for absolute positioning of overlay */
    overflow: hidden; /* Hide anything outside */
}

/* ==========================================================================
     HOVER OVERLAY (BLUR, VIDEO & TEXT)
     ========================================================================== */
.works-rect-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0.5rem; /* Ajustement du padding pour laisser plus de place en haut/bas */
    opacity: 0;
    transition: all 0.4s ease-out;
}

.works-rect:hover .works-rect-overlay {
    opacity: 1; /* S'affiche au survol */
    background: rgba(255, 255, 255, 0.1); /* Léger fond pour assombrir/éclaircir */
    backdrop-filter: blur(12px); /* L'image de fond devient floue */
    -webkit-backdrop-filter: blur(12px);
}

.works-rect-year {
    font-family: 'Nexa Rust Sans', 'Oswald', sans-serif;
    font-size: 1.5vw; /* Même taille que le titre */
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease-out;
    letter-spacing: 0.1em;
}

.works-rect:hover .works-rect-year {
    opacity: 1;
    transform: translateY(0);
}

.works-video-container {
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Empeche que survoler la vidéo stoppe le hover du rectangle */
}

.works-project-video {
    width: 90%; /* Pour éviter qu'elle colle totalement aux bords horizontaux */
    aspect-ratio: 16 / 9;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.works-rect:hover .works-project-video {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s; /* Arrive juste APRES le flou */
}

.works-rect-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.works-rect:hover .works-rect-bottom {
    opacity: 1;
    transform: translateY(0);
}

.works-rect-title {
    font-family: 'Nexa Rust Sans', 'Oswald', sans-serif;
    font-size: 1.2vw; /* Légèrement réduit pour être sûr que ça passe */
    line-height: 1.1; /* Réduit l'espace vertical du texte */
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.works-rect-role {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.7vw; /* Légèrement réduit aussi */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    margin-top: 5px; /* Marge réduite pour que ça ne pousse pas le texte hors du cadre */
    text-align: center;
}

/* ==========================================================================
     HOVER GRID LAYOUT ADJUSTMENTS 
     ========================================================================== */

/* On the hover, we make it ~25vw wide.
   Since base max-width is 160px, we use a large scale factor or set an absolute width. 
   Setting width directly is cleaner for maintaining flex layout with siblings. */
.works-grid:hover .works-rect:not(:hover) {
    /* Maintient la taille d'origine */
    flex: 1;
    opacity: 0.3; /* Fonce beaucoup plus ceux qui ne sont pas regardés */
}

.works-rect:hover {
    flex: 2; /* S'élargit */
    max-width: 25vw; /* Largeur d'expansion au survol */
    height: 25vw; /* Hauteur responsive au lieu de 350px */
}

/* CAROUSEL RIPPLE TRANSITION */
.transition-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Utilisation de vmax : 250vmax = 2.5x la plus grande dimension de l'écran, garanti de tout recouvrir */
    width: 250vmax;
    height: 250vmax;
    background-color: var(--accent-color);
    border-radius: 50%;
    /* La transformation originelle est gérée par GSAP (scale: 0) */
    z-index: 10; /* Au dessus des projets, en dessous du texte (plus tard) */
    pointer-events: none; /* Ne pas géner le clic */
}

/* ==========================================================================
   ABOUT & CONTACT WRAPPER
   ========================================================================== */
.about-contact-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    z-index: 20;
}

/* ==========================================================================
   ABOUT SECTION (Transparent, fond géré par les volets)
   ========================================================================== */
.about-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent; /* Remplacé par les volets */
    color: var(--bg-color); /* Texte blanc sur fond orange */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; /* Au dessus de Contact */
    pointer-events: none; /* Laisse passer les clics vers le formulaire en dessous ! */
}

.about-step {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    width: 100%;
    max-width: 1200px; /* Plus large pour éviter le retour à la ligne de 23 ANS */
    padding: 0 2rem;
    opacity: 0;
    pointer-events: none; /* Empêche de gêner le clic s'il n'est pas actif */
}

/* ==========================================================================
   ABOUT PROGRESS BAR
   ========================================================================== */
.about-progress {
    position: absolute;
    top: 50%;
    left: 4rem; /* Aligné à gauche, selon le padding du .container */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espacement entre les tirets */
    z-index: 10;
}

.progress-dot {
    width: 2px;
    height: 35px; /* Hauteur de chaque tiret */
    background-color: rgba(255, 255, 255, 0.2); /* Gris translucide par défaut */
    transition: background-color 0.4s ease, height 0.4s ease;
}

.progress-dot.active {
    background-color: #fff; /* S'allume en blanc pur quand c'est le texte actif */
}

.about-title {
    font-family: 'Nexa Rust Sans', 'Oswald', sans-serif;
    font-size: 4vw;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    color: #fff;
    letter-spacing: 0.05em;
}

.about-subtitle {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.5vw;
    font-weight: 400;
    color: #fff;
}

/* ==========================================================================
   TRANSITION VOLETS (BLINDS)
   ========================================================================== */
.blinds-wrapper {
    position: absolute;
    top: 0;
    left: 0; /* Plus besoin du 100vw trick car géré par le wrapper */
    width: 100%;
    height: 100%;
    display: flex;
    z-index: -1; /* Au fond du about-section */
    pointer-events: none;
}

.blind {
    flex: 1;
    height: 100%;
    background-color: var(--accent-color); /* Orange */
    transform-origin: right; /* Se refermera vers la droite */
    transform: scaleX(1); /* Couvre le contact qui est en dessous */
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--main-color);
    display: flex;
    align-items: center;
    z-index: 1; /* Derrière About */
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* Réduit encore l'espacement */
    width: 100%;
}

.contact-title-img {
    width: 100%;
    max-width: 400px; /* Plus compact */
    display: block;
    margin: 0 auto;
}

.contact-form-wrapper {
    max-width: 600px; /* Formulaire plus étroit */
    width: 100%;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Écart réduit entre les champs */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem; /* Plus petit */
    text-transform: uppercase;
    color: var(--accent-color); /* Orange */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.3rem 0; /* Padding réduit */
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem; /* Texte tapé plus petit */
    color: var(--main-color);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--accent-color);
}

.form-group textarea {
    min-height: 80px;
    resize: none;
}

/* Custom Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    margin: 0;
    min-width: 20px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--main-color);
    border-radius: 0; /* Carré strict */
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    transform: translateY(2px); /* Alignement optique avec le texte */
}

.checkbox-group input[type="checkbox"]::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
    margin-bottom: 2px;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-group input[type="checkbox"]:checked::after {
    opacity: 1;
}

.checkbox-group label {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    color: var(--main-color);
    line-height: 1.4;
    cursor: pointer;
}

.submit-btn {
    align-self: center;
    background: transparent;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    padding: 0.6rem 2rem; /* Marges réduites */
    font-family: 'Nexa Rust Sans', 'Oswald', sans-serif;
    font-size: 0.9rem; /* Bouton plus petit */
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    margin-top: 1rem; /* Marge réduite */
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.submit-btn:hover {
    color: #fff;
    border-color: var(--accent-color);
}

.submit-btn:hover::before {
    transform: translateY(0);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--accent-color);
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Copyright bar en haut */
.footer-copyright {
    text-align: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright p {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.75rem;
    color: #fff;
    letter-spacing: 0.05em;
    margin: 0;
}

/* 3 colonnes de liens */
.footer-links {
    display: flex;
    justify-content: space-between;
    padding: 3rem 4rem;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 0.6;
}

/* Colonne info (gauche) */
.footer-col--info a {
    font-size: 1rem;
}

/* Colonne nav (centre) */
.footer-col--nav {
    text-align: right;
}

/* Colonne social (droite) */
.footer-col--social {
    text-align: right;
}

/* Grand logo SVG en bas */
.footer-logo {
    position: relative;
    width: 100%;
    padding: 2rem 4rem 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    width: 100%;
    max-width: 1440px;
    display: block;
    transform: translateY(8%); /* Légèrement remonté */
}
@media (max-width: 1024px) {
    .hero-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 4rem;
    }

    .hero-center {
        position: relative;
        right: 0;
        top: 0;
    }

    .hero-right {
        margin-left: auto;
    }
}