*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#fff;
    background:radial-gradient(circle at top left,#6f2dbd 0%,#42146b 35%,#2d0b57 70%,#220541 100%);
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(24,8,50,.95);
    backdrop-filter:blur(10px);
    z-index:1000;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

.navbar{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:75px;
    width:auto;
    display:block;
}

.menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.menu a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.menu a:hover{
    color:#ff7b29;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:140px 20px 80px;
}

.hero-logo{
    width:220px;
    display:block;
    margin:0 auto 35px;
}

.hero h1{
    font-size:68px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    max-width:850px;
    margin:0 auto 40px;
    color:#ddd;
    font-size:22px;
}

.btn{
    display:inline-block;
    padding:16px 42px;
    background:#ff6b1a;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(255,107,26,.35);
    transition:.35s;
}

.btn:hover{
    background:#ff8742;
    transform:translateY(-5px);
}

section{
    padding:100px 10%;
}

section h2{
    text-align:center;
    font-size:54px;
    margin-bottom:35px;
}

#rendezvous{
    text-align:center;
}

#rendezvous p{
    max-width:700px;
    margin:0 auto 35px;
    font-size:22px;
}

.center-btn{
    display:flex;
    justify-content:center;
}

.contact{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;
    margin-top:30px;
    font-size:24px;
}

.contact p{
    display:flex;
    align-items:center;
    gap:15px;
}

.contact a{
    color:#fff;
    text-decoration:none;
}

.contact a:hover{
    color:#ff7b29;
}

.contact i{
    color:#ff7b29;
}

footer{
    margin-top:80px;
    background:#1b0835;
    text-align:center;
    padding:30px;
}

@media(max-width:768px){
    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .menu{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-logo{
        width:170px;
    }

    section h2{
        font-size:38px;
    }

    .contact{
        font-size:20px;
    }
    /* ==========================
MENU ACTIF
========================== */

.menu a.active{

    color:#ff7b29;

}

/* ==========================
ANIMATION
========================== */

section{

    transition:all .8s ease;

}
}