/* ==========================
   HM UNISEX SALON 79
   LUXURY BLACK & GOLD THEME
========================== */

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

body{
font-family:'Poppins',sans-serif;
background:#0b0b0b;
color:#ffffff;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

/* ==========================
HEADER
========================== */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.75);
backdrop-filter:blur(15px);
z-index:9999;
border-bottom:1px solid rgba(212,175,55,.15);
}

.logo img{
height: 50px;
}

nav ul{
display:flex;
gap:35px;
}

nav ul li a{
color:#fff;
font-size:15px;
font-weight:500;
transition:.3s;
}

nav ul li a:hover{
color:#d4af37;
}

.book-btn{
padding:14px 30px;
background:#d4af37;
color:#000;
font-weight:600;
border-radius:50px;
transition:.4s;
}

.book-btn:hover{
transform:translateY(-3px);
}

/* ==========================
HERO SECTION
========================== */

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
url('../images/background.jpg');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:0 20px;
}

.hero-content{
max-width:900px;
}

.sub-title{
display:block;
color:#d4af37;
letter-spacing:3px;
font-size:15px;
margin-bottom:20px;
text-transform:uppercase;
}

.hero h1{
font-family:'Cinzel',serif;
font-size:75px;
line-height:1.1;
margin-bottom:25px;
}

.hero p{
font-size:18px;
line-height:1.8;
color:#cccccc;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.primary-btn{
display:inline-block;
padding:16px 40px;
background:#d4af37;
color:#000;
font-weight:600;
border-radius:50px;
transition:.4s;
}

.primary-btn:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(212,175,55,.4);
}

.secondary-btn{
display:inline-block;
padding:16px 40px;
border:1px solid #d4af37;
color:#d4af37;
border-radius:50px;
transition:.4s;
}

.secondary-btn:hover{
background:#d4af37;
color:#000;
}

/* ==========================
SECTION HEADING
========================== */

.section-heading{
text-align:center;
margin-bottom:70px;
}

.section-heading span{
color:#d4af37;
letter-spacing:2px;
text-transform:uppercase;
}

.section-heading h2{
font-size:45px;
margin-top:15px;
font-family:'Cinzel',serif;
}

/* ==========================
STATS
========================== */

.stats{
padding:80px 8%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
background:#111;
}

.stat-box{
text-align:center;
}

.stat-box h2{
font-size:50px;
color:#d4af37;
margin-bottom:10px;
}

.stat-box p{
color:#cccccc;
}

/* ==========================
ABOUT
========================== */

.about{
padding:120px 8%;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-content span{
color:#d4af37;
text-transform:uppercase;
}

.about-content h2{
font-size:50px;
margin:20px 0;
font-family:'Cinzel',serif;
}

.about-content p{
line-height:1.9;
color:#cccccc;
margin-bottom:20px;
}

.about-image img{
border-radius:20px;
}

/* ==========================
SERVICES
========================== */

.services{
padding:120px 8%;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.service-card{
background:#111;
padding:40px 30px;
border-radius:20px;
text-align:center;
transition:.4s;
border:1px solid rgba(212,175,55,.15);
}

.service-card:hover{
transform:translateY(-10px);
border-color:#d4af37;
}

.service-card i{
font-size:40px;
color:#d4af37;
margin-bottom:20px;
}

.service-card h3{
margin-bottom:15px;
}

.service-card p{
color:#cccccc;
}

/* ==========================
WHY US
========================== */

.why-us{
padding:120px 8%;
background:#111;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.why-box{
padding:35px;
background:#0b0b0b;
border-radius:15px;
}

.why-box h3{
color:#d4af37;
margin-bottom:15px;
}

.why-box p{
color:#cccccc;
}

/* ==========================
GALLERY
========================== */

.gallery{
padding:120px 8%;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-grid img{
height:320px;
width:100%;
object-fit:cover;
border-radius:15px;
transition:.4s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

/* ==========================
TESTIMONIALS
========================== */

.testimonials{
padding:120px 8%;
background:#111;
}

.testimonial-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.testimonial-card{
padding:35px;
background:#0b0b0b;
border-radius:20px;
}

.testimonial-card p{
line-height:1.8;
margin-bottom:20px;
color:#cccccc;
}

.testimonial-card h4{
color:#d4af37;
}

/* ==========================
APPOINTMENT
========================== */

.appointment{
padding:120px 20px;
text-align:center;
}

.appointment h2{
font-size:50px;
font-family:'Cinzel',serif;
margin-bottom:20px;
}

.appointment p{
max-width:700px;
margin:auto;
color:#cccccc;
margin-bottom:35px;
}

/* ==========================
CONTACT
========================== */

.contact{
padding:120px 8%;
background:#111;
}

.contact-info{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
text-align:center;
}

.contact-info div{
padding:30px;
background:#0b0b0b;
border-radius:15px;
}

.contact-info h3{
color:#d4af37;
margin-bottom:10px;
}

/* ==========================
FOOTER
========================== */

footer{
padding:50px 20px;
text-align:center;
background:#050505;
border-top:1px solid rgba(212,175,55,.15);
}

.footer-logo img{
height:80px;
margin:auto;
margin-bottom:15px;
}

.social-icons{
margin:25px 0;
}

.social-icons a{
width:45px;
height:45px;
display:inline-flex;
justify-content:center;
align-items:center;
background:#111;
color:#d4af37;
border-radius:50%;
margin:0 5px;
transition:.4s;
}

.social-icons a:hover{
background:#d4af37;
color:#000;
}

/* ==========================
WHATSAPP
========================== */

.whatsapp-btn{
position:fixed;
right:20px;
bottom:20px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
color:#fff;
z-index:999;
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:991px){

.hero h1{
font-size:55px;
}

.about{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.testimonial-container{
grid-template-columns:1fr;
}

.contact-info{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

header{
padding:15px 5%;
}

.hero h1{
font-size:42px;
}

.gallery-grid{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:1fr;
}

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

}

.hero-content{
animation:fadeUp 1.5s ease;
}

@keyframes fadeUp{
0%{
opacity:0;
transform:translateY(80px);
}

100%{
opacity:1;
transform:translateY(0);
}
}

.logo img{
animation:glow 3s infinite alternate;
}

@keyframes glow{

from{
filter:drop-shadow(0 0 5px #d4af37);
}

to{
filter:drop-shadow(0 0 25px #d4af37);
}

}

.service-card{
position:relative;
overflow:hidden;
}

.service-card::before{
content:'';
position:absolute;
top:-100%;
left:-100%;
width:200%;
height:200%;
background:linear-gradient(
45deg,
transparent,
rgba(212,175,55,.15),
transparent
);
transform:rotate(45deg);
transition:1s;
}

.service-card:hover::before{
top:100%;
left:100%;
}

.whatsapp-btn{
animation:float 2s infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0);
}

}

.book-btn{
position:relative;
overflow:hidden;
}

.book-btn::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.5),
transparent
);
transition:.7s;
}

.book-btn:hover::before{
left:100%;
}

.gallery-grid img{
transition:1s;
}

.gallery-grid img:hover{
transform:scale(1.1);
}
.reveal{
opacity:0;
transform:translateY(100px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

.particles{
position:absolute;
width:100%;
height:100%;
background:url('https://www.transparenttextures.com/patterns/stardust.png');
opacity:.2;
animation:moveBg 25s linear infinite;
}

@keyframes moveBg{

0%{
transform:translateY(0);
}

100%{
transform:translateY(-500px);
}

}

/* ===========================
   ABOUT PAGE
=========================== */
.page-banner{height: fit-content;
width: auto;}

.about-hero{
    width:100%;
    height:70vh;

    background-image:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../images/about-banner.jpg");

    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;

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

    text-align:center;

    margin-top:90px;

}

.about-hero span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:15px;
}

.about-hero h1{
    font-size:60px;
    font-family:'Cinzel',serif;
    margin:20px 0;
}

.about-hero p{
    max-width:700px;
    margin:auto;
    color:#ddd;
    line-height:1.8;
}

/* OUR STORY */

.our-story{
    padding:120px 8%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
    align-items:center;
}

.story-image img{
    width:100%;
    border-radius:20px;
    transition:.6s;
}

.story-image img:hover{
    transform:scale(1.05);
}

.story-content span{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:2px;
}

.story-content h2{
    font-size:45px;
    margin:20px 0;
    font-family:'Cinzel',serif;
}

.story-content p{
    color:#bfbfbf;
    line-height:1.9;
    margin-bottom:20px;
}

/* PHILOSOPHY */

.philosophy{
    padding:100px 8%;
    background:#111;
    text-align:center;
}

.philosophy h2{
    font-size:45px;
    color:#d4af37;
    margin-bottom:25px;
    font-family:'Cinzel',serif;
}

.philosophy p{
    max-width:900px;
    margin:auto;
    color:#ccc;
    line-height:2;
}

/* MISSION */

.mission{
    padding:120px 8%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.mission-box{
    background:#151515;
    padding:50px;
    border-radius:20px;
    transition:.4s;
    border:1px solid rgba(212,175,55,.15);
}

.mission-box:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
}

.mission h3{
    color:#d4af37;
    margin-bottom:20px;
    font-size:30px;
}

.mission p{
    color:#cfcfcf;
    line-height:1.8;
}

/* WHY US */

.why-us{
    padding:120px 8%;
}

.why-us h2{
    text-align:center;
    font-size:45px;
    margin-bottom:60px;
    font-family:'Cinzel',serif;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.feature{
    background:#111;
    padding:40px;
    border-radius:15px;
    transition:.4s;
}

.feature:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(212,175,55,.1);
}

.feature h3{
    color:#d4af37;
    margin-bottom:15px;
}

.feature p{
    color:#ccc;
}

/* ACHIEVEMENTS */
/*=========================
    ACHIEVEMENTS SECTION
=========================*/

.achievements{
    padding:120px 8%;
    background:#111;
    text-align:center;
}

.achievements h2{
    font-size:50px;
    color:#fff;
    margin-bottom:15px;
    font-family:'Cinzel',serif;
}

.achievements .sub-heading{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:15px;
}

.counter-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.counter-grid div{
    background:#181818;
    padding:45px 30px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,.15);
    transition:.5s ease;
    position:relative;
    overflow:hidden;
}

/* Gold Shine Effect */

.counter-grid div::before{
    content:"";
    position:absolute;
    top:-100%;
    left:-100%;
    width:250%;
    height:250%;
    background:linear-gradient(
        45deg,
        transparent,
        rgba(212,175,55,.18),
        transparent
    );
    transform:rotate(25deg);
    transition:1s;
}

.counter-grid div:hover::before{
    top:100%;
    left:100%;
}

.counter-grid div:hover{
    transform:translateY(-12px);
    border-color:#d4af37;
    box-shadow:0 20px 45px rgba(212,175,55,.15);
}

.counter-grid h3{
    font-size:60px;
    color:#d4af37;
    margin-bottom:15px;
    font-family:'Cinzel',serif;
}

.counter{
    display:inline-block;
}

.counter-grid p{
    color:#bfbfbf;
    font-size:17px;
    letter-spacing:1px;
}

/* Hover Glow */

.counter-grid div:hover h3{
    text-shadow:
    0 0 10px #d4af37,
    0 0 20px #d4af37,
    0 0 40px #d4af37;
}

/* Responsive */

@media(max-width:768px){

    .achievements{
        padding:80px 20px;
    }

    .achievements h2{
        font-size:36px;
    }

    .counter-grid{
        grid-template-columns:1fr;
    }

    .counter-grid h3{
        font-size:45px;
    }

}
/* BRANDS */

.brands{
    padding:120px 8%;
    text-align:center;
}

.brands h2{
    font-size:45px;
    font-family:'Cinzel',serif;
}

.brands p{
    color:#ccc;
    max-width:800px;
    margin:25px auto;
}

.brand-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
}

.brand-grid div{
    background:#111;
    padding:35px;
    border-radius:15px;
    font-weight:600;
    transition:.4s;
}

.brand-grid div:hover{
    background:#d4af37;
    color:#000;
}

/* CTA */

.appointment{
    padding:120px 20px;
    text-align:center;
    background:#111;
}

.appointment h2{
    font-size:50px;
    font-family:'Cinzel',serif;
    margin-bottom:20px;
}

.appointment p{
    max-width:700px;
    margin:auto;
    color:#ccc;
    line-height:1.8;
    margin-bottom:40px;
}

/* RESPONSIVE */

@media(max-width:991px){

.our-story,
.mission-vision{
grid-template-columns:1fr;
}

.counter-grid{
grid-template-columns:repeat(2,1fr);
}

.about-hero h1{
font-size:45px;
}

}

@media(max-width:768px){

.counter-grid{
grid-template-columns:1fr;
}

.about-hero{
height:50vh;
}

.about-hero h1{
font-size:35px;
}

.story-content h2,
.philosophy h2,
.why-us h2,
.achievements h2,
.brands h2{
font-size:35px;
}

}

.services-list{

padding:120px 8%;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}

.service-card{

background:#111;

padding:45px;

border-radius:20px;

border:1px solid rgba(212,175,55,.15);

transition:.5s;

text-align:center;

position:relative;

overflow:hidden;

}

.service-card:hover{

transform:translateY(-12px);

border-color:#d4af37;

box-shadow:0 20px 45px rgba(212,175,55,.15);

}

.service-card i{

font-size:50px;

color:#d4af37;

margin-bottom:20px;

}

.service-card h3{

margin-bottom:15px;

font-size:28px;

}

.service-card p{

color:#bfbfbf;

line-height:1.8;

margin-bottom:20px;

}

.service-card a{

color:#d4af37;

font-weight:600;

}

/*=========================
    SERVICES INTRO
=========================*/

.services-intro{
    padding:100px 8%;
    background:#0d0d0d;
    text-align:center;
}

.services-intro .container{
    max-width:900px;
    margin:auto;
}

.services-intro h2{
    font-size:50px;
    color:#fff;
    font-family:'Cinzel',serif;
    margin-bottom:25px;
    position:relative;
}

.services-intro h2::after{
    content:"";
    width:100px;
    height:3px;
    background:#d4af37;
    display:block;
    margin:20px auto 0;
}

.services-intro p{
    color:#bfbfbf;
    font-size:18px;
    line-height:1.9;
    margin-top:30px;
}

.sub-title{
    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:15px;
    font-weight:600;
}

.services-intro{
    position:relative;
    overflow:hidden;
}

.services-intro::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(rgba(212,175,55,.08), transparent 70%);
    top:-200px;
    left:-150px;
    border-radius:50%;
}

.services-intro::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(rgba(212,175,55,.06), transparent 70%);
    bottom:-150px;
    right:-100px;
    border-radius:50%;
}


.page-banner{
    width:100%;
    height:70vh;

    background-image:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../images/banner.png");

    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;

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

    text-align:center;

    margin-top:90px;

}

/*==============================
CONTACT PAGE
==============================*/
.contact-section{
    background:#111;
    padding:100px 0;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.contact-image{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    height:650px;
}

.contact-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.contact-image:hover img{
    transform:scale(1.08);
}

.contact-form{
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(18px);
    border:1px solid rgba(212,175,55,.25);
    border-radius:25px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

.contact-form h2{
    color:#fff;
    font-size:42px;
    margin-bottom:30px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    background:#181818;
    border:1px solid #2d2d2d;
    color:#fff;
    padding:18px;
    border-radius:12px;
    margin-bottom:20px;
    transition:.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:#d4af37;
}

.contact-form button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:50px;
    background:linear-gradient(90deg,#d4af37,#f5d76e);
    color:#111;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
}
/*==============================
CONTACT CARDS
==============================*/

.contact-cards{
    background:#111;
    padding:90px 0;
}

.cards-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.contact-card{
    background:#181818;
    border:1px solid rgba(212,175,55,.15);
    border-radius:18px;
    padding:45px 30px;
    text-align:center;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.contact-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:#d4af37;
    transition:.4s;
}

.contact-card:hover::before{
    left:0;
}

.contact-card:hover{
    transform:translateY(-12px);
    border-color:#d4af37;
    box-shadow:0 15px 40px rgba(212,175,55,.15);
}

.contact-card .icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#d4af37;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    color:#111;
    transition:.4s;
}

.contact-card:hover .icon{
    transform:rotateY(180deg);
}

.contact-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.contact-card p{
    color:#bdbdbd;
    line-height:1.8;
    font-size:16px;
}

/* Tablet */

@media(max-width:991px){

.cards-wrapper{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:576px){

.cards-wrapper{
grid-template-columns:1fr;
}

.contact-card{
padding:35px 25px;
}

}
.contact-banner{
    width:100%;
    height:70vh;

    background-image:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../images/contact-banner.png");

    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;

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

    text-align:center;

    margin-top:90px;

}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    margin-bottom:20px;
    border:1px solid rgba(212,175,55,.15);
    border-radius:12px;
    overflow:hidden;
    background:#181818;
}

.faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:none;
    border:none;
    padding:22px 25px;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

.faq-question i{
    color:#d4af37;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
}

.faq-answer p{
    padding:0 25px 20px;
    color:#bdbdbd;
    line-height:1.8;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}
.container{
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding:0 15px;
}
/*=========================
      MOBILE MENU
=========================*/

.menu-toggle{
    width:35px;
    cursor:pointer;
    display:none;
    z-index:1001;
}

.menu-toggle span{
    display:block;
    width:100%;
    height:3px;
    margin:7px 0;
    background:#d4af37;
    transition:.4s;
}

@media(max-width:991px){

.navbar{

position:fixed;
top:0;
right:-100%;
width:280px;
height:100vh;
background:#111;
display:flex;
justify-content:center;
align-items:center;
transition:.5s;
z-index:999;

}

.navbar.active{

right:0;

}

.nav-links{

display:flex;
flex-direction:column;
gap:30px;

}

.nav-links li{

list-style:none;

}

.nav-links li a{

color:#fff;
font-size:22px;
text-decoration:none;
transition:.3s;

}

.nav-links li a:hover{

color:#d4af37;

}

.menu-toggle{

display:block;

}

}

/* Hamburger Animation */

.menu-toggle.active span:nth-child(1){

transform:rotate(45deg) translate(7px,7px);

}

.menu-toggle.active span:nth-child(2){

opacity:0;

}

.menu-toggle.active span:nth-child(3){

transform:rotate(-45deg) translate(7px,-7px);

}
.navbar.active{

backdrop-filter:blur(15px);

background:rgba(15,15,15,.95);

}
.nav-links li{

opacity:0;
transform:translateX(50px);
transition:.5s;

}

.navbar.active .nav-links li{

opacity:1;
transform:translateX(0);

}

.navbar.active .nav-links li:nth-child(1){transition-delay:.1s;}
.navbar.active .nav-links li:nth-child(2){transition-delay:.2s;}
.navbar.active .nav-links li:nth-child(3){transition-delay:.3s;}
.navbar.active .nav-links li:nth-child(4){transition-delay:.4s;}
.navbar.active .nav-links li:nth-child(5){transition-delay:.5s;}
/* Desktop */
@media (min-width:992px){

    .navbar{
        display:block !important;
        position:static;
        width:auto;
        height:auto;
        background:transparent;
    }

    .nav-links{
        display:flex;
        flex-direction:row;
        gap:35px;
    }

    .menu-toggle{
        display:none !important;
    }

    .book-btn{
        display:inline-block;
    }
}