
        :root{
            --primary:#ff6b35;
            --secondary:#081120;
            --dark:#e85d04;
            --light:#F8FAFC;
            --text:#64748B;
            --white:#ffffff;
            --accent:#c1121f;
        }

        

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

        body{
            font-family:'Poppins',sans-serif;
            color:#334155;
            overflow-x:hidden;
        }

        h1,h2,h3,h4,h5,h6{
            font-family:'Playfair Display',serif;
            font-weight:700;
        }

        a{
            text-decoration:none;
        }

        section{
            padding:100px 0;
        }

        .section-title{
            text-align:center;
            margin-bottom:60px;
        }

        .section-title span{
            color:var(--primary);
            font-weight:600;
            letter-spacing:2px;
            text-transform:uppercase;
            font-size:14px;
        }

        .section-title h2{
            font-size:48px;
            margin-top:15px;
            color:var(--secondary);
        }

       

        
        /* NAVBAR */

        .navbar{
            position:absolute;
            width:100%;
            z-index:999;
            padding:20px 0;
            transition:.4s;
        }

        .navbar.scrolled{
            position:fixed;
            top:0;
            background:white;
            box-shadow:0 5px 30px rgba(0,0,0,.08);
        }

        .navbar-brand{
            font-size:32px;
            font-weight:800;
            color:white;
            font-family:'Playfair Display',serif;
        }

        .navbar.scrolled .navbar-brand{
            color:var(--secondary);
        }

        .nav-link{
            color:white !important;
            margin-left:15px;
            font-weight:500;
        }

        .navbar.scrolled .nav-link{
            color:var(--secondary) !important;
        }

        .btn-gold{
            background:var(--primary);
            color:white;
            padding:14px 30px;
            border-radius:50px;
            font-weight:600;
            transition:.4s;
        }

        .btn-gold:hover{
            background:#af8546;
            color:white;
            transform:translateY(-3px);
        }

        /* FOOTER */

        footer{
            background:var(--secondary);
            color:white;
            padding-top:80px;
        }

        .footer-title{
            margin-bottom:20px;
        }

        .footer-link{
            display:block;
            color:#cbd5e1;
            margin-bottom:10px;
        }

        .footer-link:hover{
            color:var(--primary);
        }

        .footer-bottom{
            border-top:1px solid rgba(255,255,255,.1);
            margin-top:50px;
            padding:25px 0;
            text-align:center;
        }

        @media(max-width:991px){

            section{
                padding:70px 0;
            }

            .section-title h2{
                font-size:35px;
            }

            .navbar{
                background:var(--secondary);
            }

            .navbar-brand{
                font-size:24px;
            }
        }

.navbar-brand{

    display:flex;
    align-items:center;
}

.navbar-brand img{

    height:70px;

    width:auto;

    object-fit:contain;

    transition:.3s;
}

.navbar-brand:hover img{

    transform:scale(1.05);
}
.navbar-brand img{

    height:85px;
}
@media(max-width:768px){

    .navbar-brand img{

        height:60px;
    }
}

.footer-bottom .fa-heart{

    color:#dc2626;

    margin:0 5px;
}
.footer-bottom{

    margin-top:50px;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.1);
}

.footer-bottom-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.75);

    font-size:15px;
}

.footer-bottom strong{

    color:#ffffff;

    font-weight:700;
}

.footer-bottom a{

    color:#ff6b35;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.footer-bottom a:hover{

    color:#ffffff;
}

/* WhatsApp */

.floating-whatsapp{

    position:fixed;

    bottom:25px;
    left:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#25D366;

    color:white;

    font-size:32px;

    text-decoration:none;

    z-index:9999;

    box-shadow:
    0 15px 35px rgba(37,211,102,.35);

    transition:.3s;
}

.floating-whatsapp:hover{

    transform:
    translateY(-5px)
    scale(1.08);

    color:white;
}

/* Retour en haut */

.back-to-top{

    position:fixed;

    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #ff6b35,
        #dc2626
    );

    color:white;

    font-size:20px;

    cursor:pointer;

    z-index:9999;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    box-shadow:
    0 15px 35px rgba(220,38,38,.3);
}

.back-to-top.show{

    opacity:1;

    visibility:visible;
}

.back-to-top:hover{

    transform:
    translateY(-5px);
}
.floating-whatsapp{

    animation:
    whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{

    0%{

        box-shadow:
        0 0 0 0 rgba(37,211,102,.5);
    }

    70%{

        box-shadow:
        0 0 0 20px rgba(37,211,102,0);
    }

    100%{

        box-shadow:
        0 0 0 0 rgba(37,211,102,0);
    }
}


    .topbar{

    background:
    linear-gradient(
        135deg,
        #081120,
        #0f172a
    );

    padding:12px 0;

    color:white;

    font-size:14px;

    position:relative;

    z-index:999;
}

.topbar-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;
}

.topbar-left,
.topbar-right{

    display:flex;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;
}

.topbar-item{

    display:flex;

    align-items:center;

    gap:10px;
}

.topbar-item i{

    color:#ff6b35;

    font-size:15px;
}
.social-links{

    display:flex;

    gap:10px;
}

.social-links a{

    width:34px;
    height:34px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    rgba(255,255,255,.08);

    color:white;

    transition:.3s;
}

.social-links a:hover{

    background:
    linear-gradient(
        135deg,
        #ff6b35,
        #dc2626
    );

    color:white;

    transform:translateY(-3px);
}

.topbar::after{

    content:"";

    position:absolute;

    bottom:0;
    left:0;

    width:100%;
    height:1px;

    background:
    linear-gradient(
        to right,
        transparent,
        #ff6b35,
        transparent
    );
}

@media(max-width:768px){

    .topbar-content{

        flex-direction:column;

        text-align:center;
    }

    .topbar-left,
    .topbar-right{

        justify-content:center;
    }
}

.navbar .nav-link{

    position:relative;

    font-weight:600;

    color:#081120;

    transition:.3s;
}

.navbar .nav-link.active{

    color:#ff6b35;
}
.active-btn{

    background:
    linear-gradient(
        135deg,
        #dc2626,
        #ff6b35
    ) !important;

    color:white !important;
}