
        :root {
            --rouge: #F93943;
            --noir: #0C0A08;
            --marine: #2B4570;
            --lavande: #D8D4F2;
            --creme: #FEFCF2;
            --icterine: #FFFD82;
            --font-main: 'Montserrat', sans-serif;
            --font-titles: 'Inter', sans-serif;
        }
        body {
            position: relative;
            overflow: hidden;
            height: 100vh;
            color: var(--creme);
            font-family: var(--font-main);
            background-image: url("../img/bg-accueil-640x360.webp");
            background-color: #1c283c; 
            background-size: cover;
            background-repeat: no-repeat;
        }
        video {
            position: fixed;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            -ms-transform: translateX(-50%) translateY(-50%);
            -moz-transform: translateX(-50%) translateY(-50%);
            -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
        }
        .overlay-neons {
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: black;
            opacity: 0.35;
            z-index: 1;
        }
        .content-wrapper {
            position: relative;
            z-index: 2;
            height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .rouge {
            color: var(--rouge);
        }
        h1 {
            font-size: 4.375rem;
            line-height: 1.2;
            font-weight: 500;
            font-family: var(--font-main);
            /*text-transform: uppercase;*/
        }
        .sous-titre {
            font-size: 3.75rem;
            display: block;
            margin-top: 2.5rem;
            font-weight: 500;
            color: var(--rouge);
            font-family: var(--font-main);
            text-transform: initial;
        }
        h1, h2, h3 {
            color: var(--creme);
        }
        h3 {
            font-weight: 600;
            font-family: var(--font-titles);
        }
        .hero-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 1rem;
        }
        .cta-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .cta-block {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 1rem;
            text-decoration: none;
            color: var(--creme);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-color: var(--rouge);
            backdrop-filter: blur(5px);
        }
        .cta-block:hover {
            transform: translateY(-5px);
            border-color: var(--lavande);
            box-shadow: 0 5px 15px rgba(249, 57, 67, 0.3);
            color: var(--creme);
            background-color: rgba(255, 255, 255, 0.15);
        }
        .cta-block h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            margin: 0;
            font-family: var(--font-titles);
        }
        .cta-block p {
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
            font-family: var(--font-main);
        }
        .btn-danger {
            transition: all 0.3s ease;
            font-weight: 500;
            font-family: var(--font-main);
        }
        .btn-danger:hover {
            background-color: var(--creme);
            border-color: var(--creme);
            color: var(--rouge);
        }
        .social-links a {
            color: var(--creme);
            font-size: 1.2rem;
            text-decoration: none;
        }
        .social-links a:hover {
            color: var(--rouge);
        }
        footer {
            color: var(--creme);
            background-color: transparent !important;
            padding: 0.5rem 0;
            font-family: var(--font-main);
        }
        footer a {
            color: var(--rouge);
            transition: all 0.3s ease;
        }
        footer a:hover {
            color: var(--creme);
        }
        .navbar {
            background-color: transparent;
            padding: 1rem 0;
        }
        @media (max-width: 991px) {
            .cta-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 767px) {
            .sous-titre {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 3rem;
            }
        }

        /* ==========================================================================
           STYLES ORIGINAUX + FOOTER ADAPTÉ
           Reprendre cw-style-accueil.css original + ajouter le footer
           ========================================================================== */

        /* GARDER TOUT LE CONTENU ORIGINAL DE cw-style-accueil.css */
        /* Puis AJOUTER seulement ces styles pour le footer : */

        /* ==========================================================================
           FOOTER INTÉGRÉ - AJOUT UNIQUEMENT
           ========================================================================== */

        .homepage-footer {
            background: linear-gradient(
                180deg,
                rgba(12, 10, 8, 0.0) 0%,
                rgba(12, 10, 8, 0.8) 100%
            );
            backdrop-filter: blur(5px);
            /*padding: 1.5rem 0;*/
            margin-top: auto;
            /*border-top: 1px solid rgba(254, 252, 242, 0.1);*/
        }

        .footer-link {
            color: rgba(254, 252, 242, 0.8);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .footer-link:hover {
            color: var(--rouge);
            background-color: rgba(249, 57, 67, 0.1);
            transform: translateY(-1px);
        }

        .homepage-footer .social-links a {
            color: rgba(254, 252, 242, 0.7);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: rgba(254, 252, 242, 0.05);
            margin: 0 0.25rem;
        }

        .homepage-footer .social-links a:hover {
            color: var(--rouge);
            background-color: rgba(249, 57, 67, 0.2);
            transform: translateY(-2px);
        }

        .homepage-footer .copyright {
            color: rgba(254, 252, 242, 0.6);
            font-size: 0.8rem;
            white-space: nowrap;
            margin-left: 1rem;
        }

        /* Animation pour le footer */
        .homepage-footer {
            animation: fadeIn 1s ease-out 0.6s both;
        }

        /* Responsive pour le footer */
        @media (max-width: 768px) {
            .homepage-footer .row {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .footer-link {
                font-size: 0.8rem;
                padding: 0.2rem 0.4rem;
            }
            
            .homepage-footer .copyright {
                margin-left: 0;
                margin-top: 0.5rem;
            }
        }

        @media (max-width: 576px) {
            .homepage-footer .d-flex.gap-3 {
                gap: 0.5rem !important;
                flex-wrap: wrap;
            }
            
            .footer-link {
                font-size: 0.75rem;
            }
        }