/* --- VARIABLES DE LA CHARTE GRAPHIQUE --- */
:root {
    --blue-dark: #024EA3;
    --blue-medium: #2275C5;
    --blue-light: #6EB0CA;
    --yellow-accent: #FFBF00;
    --off-white: #F1E8E1;
    --bg-light: #F4F8FB; 
}

/* --- RESET & CORRECTION DE L'OVERFLOW HORIZONTAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html, body {
    width: 100%;
    max-width: 100vw; 
    overflow-x: hidden !important; 
    position: relative; 
}

body {
    color: var(--off-white); 
    background-color: #000000; 
}

/* Verrouille l'écran quand le menu burger est ouvert */
body.no-scroll {
    overflow: hidden !important;
    height: 100vh;
}

/* --- ARRIÈRE-PLAN VIDÉO ET FILTRE COLORÉ --- */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    z-index: -1; 
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; 
    transition: opacity 1s ease-in-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; 
    pointer-events: none; 
    background: linear-gradient(
        180deg, 
        rgba(2, 78, 163, 0.85) 0%, 
        rgba(34, 117, 197, 0.35) 50%, 
        rgba(110, 176, 202, 0.15) 90%,
        var(--blue-medium) 100%
    );
}

/* --- EN-TÊTE / NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: relative;
    z-index: 100;
}

.nav-left, .nav-right {
    flex: 1;
}

.nav-left ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-left a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.nav-left a:hover {
    color: var(--yellow-accent);
}

.nav-left .arrow {
    font-size: 0.6rem;
}

/* --- MENUS DÉROULANTS (DROPDOWN) DESKTOP --- */
.has-dropdown {
    position: relative; 
}

.submenu {
    position: absolute;
    top: calc(100% + 15px); 
    left: 0;
    background-color: var(--blue-dark); 
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 200;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    
    display: flex;
    flex-direction: column;
    gap: 0 !important; 
}

.submenu::before {
    content: "";
    position: absolute;
    top: -15px; 
    left: 0;
    width: 100%;
    height: 15px;
    background-color: transparent; 
}

.submenu li {
    list-style: none;
    width: 100%;
}

.submenu li a {
    padding: 0.8rem 1.5rem;
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.submenu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--yellow-accent);
    padding-left: 1.8rem; 
}

.has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .arrow {
    transform: rotate(180deg);
}
/* ------------------------------------------- */

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 10000; 
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--off-white);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 1 auto;
}

.logo img {
    height: 40px;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.language svg {
    flex-shrink: 0; 
    width: 20px;
    height: 20px;
}

.language:hover {
    color: var(--yellow-accent);
}

/* --- BOUTON SE CONNECTER --- */
.login-btn {
    display: inline-block;
    background-color: var(--yellow-accent);
    color: var(--blue-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 191, 0, 0.2);
    white-space: nowrap;
}

.login-btn:hover {
    background-color: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* --- AVATAR UTILISATEUR ET BOUTON DÉCONNEXION --- */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--yellow-accent);
    color: var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
    cursor: default;
}
.user-avatar:hover {
    transform: scale(1.05);
}

.logout-btn {
    color: var(--off-white);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-left: 0.5rem;
}
.logout-btn:hover {
    color: var(--yellow-accent);
    text-decoration: underline;
}

/* --- SECTION PRINCIPALE (HERO) --- */
.hero {
    display: flex;
    align-items: center;
    height: calc(100vh - 100px);
    padding: 0 6rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #FFFFFF; 
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: var(--off-white);
}

/* --- INDICATEUR DE DEFILEMENT (FLECHE) --- */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--off-white);
    white-space: nowrap; 
}

.arrow-down {
    font-size: 1.8rem;
    animation: bounce 2s ease-in-out infinite; 
}

/* --- ANIMATIONS CSS --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.scroll-indicator.fade-in-up {
    transform: translate(-50%, 30px);
    animation-name: fadeInUpCentered;
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUpCentered { to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes fadeInDown { to { opacity: 1; transform: translateY(0); } }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

/* ========================================= */
/* --- SECTION STATISTIQUES (CHIFFRES) --- */
/* ========================================= */

.stats-section {
    min-height: 100vh; 
    background-color: var(--blue-medium);
    margin-top: -5px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    padding: 6rem 2rem 8rem 2rem; 
    position: relative;
    z-index: 10;
    overflow: hidden; 
}

.stats-hero-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -4rem; 
    margin-bottom: 11rem; 
    z-index: 1; 
}

.stats-hero-image {
    position: relative;
    width: 100%;
    max-width: 650px; 
    z-index: 1; 
}

.stats-hero-image::before {
    content: "";
    position: absolute;
    top: -200px; 
    left: 15%; 
    right: 15%; 
    bottom: 0;
    background-color: var(--blue-dark);
    z-index: -1; 
    border-radius: 4px;
}

.stats-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-hero-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(34,117,197,0) 0%, rgba(34,117,197,1) 100%);
    z-index: 2;
}

.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; 
    z-index: 4; 
}

.snowflake {
    position: absolute;
    top: -10%; 
    color: #FFFFFF; 
    opacity: 0;
    animation: fall linear infinite;
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.2); 
}

@keyframes fall {
    0% { top: -10%; opacity: 0; transform: translateX(0) rotate(0deg); }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: 110%; opacity: 0; transform: translateX(40px) rotate(360deg); }
}

.snowflake:nth-child(1) { left: 10%; font-size: 3rem; animation-duration: 12s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 25%; font-size: 4.5rem; animation-duration: 16s; animation-delay: 4s; }
.snowflake:nth-child(3) { left: 40%; font-size: 2.5rem; animation-duration: 10s; animation-delay: 2s; }
.snowflake:nth-child(4) { left: 55%; font-size: 3.8rem; animation-duration: 14s; animation-delay: 6s; }
.snowflake:nth-child(5) { left: 70%; font-size: 2.8rem; animation-duration: 13s; animation-delay: 1s; }
.snowflake:nth-child(6) { left: 85%; font-size: 5rem; animation-duration: 18s; animation-delay: 5s; }
.snowflake:nth-child(7) { left: 15%; font-size: 3.5rem; animation-duration: 15s; animation-delay: 7s; }
.snowflake:nth-child(8) { left: 80%; font-size: 2.2rem; animation-duration: 11s; animation-delay: 3s; }

.stats-title {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%); 
    width: 100%;
    font-size: 7rem;
    font-weight: 900;
    color: var(--off-white); 
    text-transform: uppercase;
    text-align: center;
    line-height: 0.85; 
    letter-spacing: -2px; 
    margin: 0; 
    z-index: 5; 
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7); 
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 3;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 150px; 
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--yellow-accent); 
    line-height: 1;
    margin-bottom: 0.8rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--off-white); 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.snow-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 6; 
    pointer-events: none;
}

.snow-wave svg {
    width: 100%;
    height: 70px;
    display: block;
}

/* ========================================= */
/* --- SECTION SPONSORS (RUBAN DÉFILANT) --- */
/* ========================================= */

.sponsors-section {
    background-color: var(--bg-light);
    padding: 6rem 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden; 
    position: relative;
    z-index: 10;
}

.sponsors-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--blue-dark); 
    margin-bottom: 4rem; 
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-align: center;
    padding: 0 2rem;
}

.sponsors-ribbon {
    width: 100%;
    background-color: var(--blue-medium); 
    border-top: 5px solid var(--yellow-accent); 
    border-bottom: 5px solid var(--yellow-accent); 
    display: flex;
    padding: 1.5rem 0;
    position: relative;
    transform: rotate(-3deg); 
    width: 110%; 
    left: -5%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sponsors-ribbon::before,
.sponsors-ribbon::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.sponsors-ribbon::before {
    left: 0;
    background: linear-gradient(to right, rgba(34, 117, 197, 1) 0%, rgba(34, 117, 197, 0) 100%);
}

.sponsors-ribbon::after {
    right: 0;
    background: linear-gradient(to left, rgba(34, 117, 197, 1) 0%, rgba(34, 117, 197, 0) 100%);
}

.sponsors-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform; 
}

.sponsors-track img {
    height: 85px; 
    margin: 0 3.5rem;
    object-fit: contain;
}

/* ========================================= */
/* --- SECTION ACTIVITÉS (CARROUSEL INFINI) --- */
/* ========================================= */

.activities-section {
    background-color: var(--bg-light); 
    padding: 2rem 4rem 8rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.activities-header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.activities-title-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.activities-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--blue-dark);
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.carousel-controls {
    display: flex;
    gap: 1rem;
}

.carousel-arrow {
    background-color: #FFFFFF;
    color: var(--blue-dark);
    border: 2px solid var(--blue-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-arrow svg {
    display: block; 
}

.carousel-arrow:hover {
    background-color: var(--blue-dark);
    color: #FFFFFF;
}

/* Wrapper qui cache ce qui dépasse */
.activities-carousel-wrapper {
    width: 100%;
    max-width: 1200px;
    overflow: hidden; 
    padding-bottom: 2rem; 
}

.activities-track {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.activity-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    
    width: calc((1200px / 3) - 1.35rem);
    flex-shrink: 0;
}

.activity-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.activity-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--off-white);
    color: var(--blue-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.badge-blue {
    background-color: var(--blue-light);
    color: #FFFFFF;
}

.activity-image {
    width: 100%;
    height: 250px;
    background-color: #E8E8E8; 
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.activity-name {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--blue-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.activity-colors {
    display: flex;
    gap: 0.4rem;
    margin-top: auto; 
    justify-content: flex-end;
}

.color-dot {
    width: 15px;
    height: 15px;
    border-radius: 2px;
}

.color-dot.yellow { background-color: var(--yellow-accent); }
.color-dot.dark-blue { background-color: var(--blue-dark); }
.color-dot.light-blue { background-color: var(--blue-light); }

/* ========================================= */
/* --- RESPONSIVE DESIGN (Mobiles & Tabs) --- */
/* ========================================= */

@media screen and (max-width: 1200px) {
    .activity-card {
        width: calc((100vw - 8rem) / 3 - 1.35rem);
    }
}

@media screen and (max-width: 1024px) {
    .hero-content h1 { font-size: 4rem; }
    .navbar { padding: 2rem; }
    
    .stats-title { font-size: 5rem; }
    .stats-hero-container { margin-top: -2rem; margin-bottom: 8rem; }
    .stats-hero-image { max-width: 500px; }
    
    .stat-number { font-size: 3.5rem; }
    .stats-grid { gap: 3rem; }

    .sponsors-title { font-size: 2rem; }
    .sponsors-track img { height: 70px; margin: 0 2.5rem; }

    .activities-section { padding: 2rem 2rem 6rem 2rem; }
    .activities-title { font-size: 2.2rem; }
    
    .activity-card { width: calc((100vw - 4rem) / 2 - 1rem); }
}

@media screen and (max-width: 768px) {
    .video-background {
        height: 100dvh;
    }

    .navbar { padding: 1.5rem; }

    .nav-left ul#nav-menu {
        position: fixed;
        top: 0;
        left: -100%; 
        width: 280px; 
        height: 100vh;
        background: rgba(2, 78, 163, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.4s ease;
        z-index: 9999; 
        box-shadow: 2px 0 15px rgba(0,0,0,0.5); 
    }

    .nav-left ul.active { left: 0; }
    .nav-left a { font-size: 1.3rem; } 
    
    .hamburger { display: flex; }

    /* MENU BURGER FIXE SUR L'ÉCRAN QUAND OUVERT */
    .hamburger.active { 
        position: fixed;
        top: 2rem; 
        left: 1.5rem;
    }

    .hamburger.active .bar { background-color: var(--yellow-accent); } 
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .logo img { height: 30px; }
    .nav-right { gap: 0.8rem; }
    .lang-text { display: none; }
    .login-btn { padding: 0.5rem 1rem; font-size: 0.8rem; }

    /* --- RESPONSIVE MOBILE POUR LES SOUS-MENUS --- */
    .submenu {
        position: static; 
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        padding: 0;
        margin-top: 1rem;
        display: none; 
    }
    
    .submenu::before {
        display: none; 
    }

    .submenu li a {
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
        text-align: center;
    }
    
    .submenu li a:hover {
        padding-left: 1rem; 
    }

    .has-dropdown.open .submenu {
        display: flex;
    }
    
    .has-dropdown.open .arrow {
        transform: rotate(180deg);
    }
    /* --------------------------------------------- */

    .hero { 
        padding: 0 1.5rem; 
        text-align: center; 
        justify-content: center; 
        height: calc(100dvh - 78px); 
    }
    
    .hero-content { margin-top: -10vh; }
    .hero-content h1 { font-size: 2.8rem; margin-bottom: 1rem; }
    .hero-content p { font-size: 1rem; }
    
    .scroll-indicator { font-size: 0.65rem; bottom: 1.5rem; gap: 0.2rem; }
    .arrow-down { font-size: 1.2rem; }
    
    .stats-section { padding: 4rem 1rem 6rem 1rem; min-height: auto; }
    .stats-hero-image { max-width: 85%; }
    .stats-hero-image::before { left: 5%; right: 5%; top: -110px; }
    .stats-title { font-size: 3.2rem; }
    .stats-hero-container { margin-top: -1rem; margin-bottom: 5.5rem; }
    .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
    .stat-item { flex: none; }
    .stat-item:last-child { grid-column: span 2; }
    .stat-number { font-size: 2.8rem; margin-bottom: 0.3rem; }
    .stat-label { font-size: 0.95rem; }
    
    .snowflake:nth-child(1) { font-size: 2rem; }
    .snowflake:nth-child(2) { font-size: 3rem; }
    .snowflake:nth-child(3) { font-size: 1.5rem; }
    .snowflake:nth-child(4) { font-size: 2.5rem; }
    .snowflake:nth-child(5) { font-size: 1.8rem; }
    .snowflake:nth-child(6) { font-size: 3.5rem; }
    .snowflake:nth-child(7) { font-size: 2.2rem; }
    .snowflake:nth-child(8) { font-size: 1.2rem; }

    .snow-wave svg { height: 45px; }

    .sponsors-section { padding: 4rem 0; }
    .sponsors-title { font-size: 1.5rem; margin-bottom: 2rem; }
    .sponsors-ribbon { padding: 1rem 0; width: 120%; left: -10%; } 
    .sponsors-track img { height: 55px; margin: 0 2rem; }
    .sponsors-ribbon::before, .sponsors-ribbon::after { width: 50px; }

    .activities-section { padding: 2rem 1.5rem 4rem 1.5rem; }
    .activities-title { font-size: 1.6rem; margin-bottom: 0.5rem; }
    
    .activity-card { width: calc(100vw - 3rem); flex: 0 0 calc(100vw - 3rem); } 
    
    .carousel-controls { gap: 0.5rem; }
    .carousel-arrow { width: 38px; height: 38px; }
    .carousel-arrow svg { width: 18px; height: 18px; }
}

/* ========================================= */
/* --- FOOTER STYLÉ --- */
/* ========================================= */

.site-footer {
    background-color: var(--blue-dark);
    padding: 3rem 4rem;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-socials {
    display: flex;
    gap: 2.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--off-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.social-link:hover {
    color: var(--yellow-accent);
    transform: translateY(-3px);
}

.footer-copyright {
    color: rgba(241, 232, 225, 0.7); 
    font-size: 0.85rem;
    font-weight: 400;
    text-align: right;
}

/* --- FOOTER RESPONSIVE --- */
@media screen and (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-socials {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    
    .footer-copyright {
        text-align: center;
        margin-top: 1rem;
    }
}