/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI",Arial,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fafafa;
    color:#222;
    line-height:1.6;
    padding-top:80px;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}


/* =========================
   CONTAINER
========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}


/* =========================
   NAVBAR
========================= */

.navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    height:80px;

    background:white;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 7%;

    box-shadow:0 3px 15px rgba(0,0,0,.1);

    z-index:1000;

}


.logo img{

    height:60px;

}



.nav-links{

    display:flex;
    gap:30px;
    list-style:none;

}


.nav-links a{

    color:#111;
    font-weight:600;
    transition:.3s;

}


.nav-links a:hover,
.nav-links .active{

    color:#c59d5f;

}



.menu-toggle{

    display:none;

    background:none;
    border:none;

    font-size:30px;

    cursor:pointer;

}



/* =========================
 HERO
========================= */

.hero{

    min-height:70vh;

    background:
    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.55)
    ),
    url("images/hero back.jpeg");

    background-size:cover;
    background-position:center;

    display:flex;

    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

}



.hero-overlay,
.hero-content{

    padding:40px;

}



.hero h1{

    font-size:3rem;

    margin-bottom:15px;

}


.hero p{

    font-size:1.2rem;

}



/* =========================
 BUTTONS
========================= */

.btn{

    display:inline-block;

    padding:12px 25px;

    border-radius:30px;

    font-weight:bold;

    color:white;

    margin-top:15px;

    transition:.3s;

}



.btn:hover{

    transform:translateY(-3px);

}



.house-call{

    background:#25d366;

}



.house-call:hover{

    background:#128c7e;

}



.salon-visit{

    background:#c59d5f;

}



.salon-visit:hover{

    background:#a47d43;

}



/* =========================
 SERVICES
========================= */

.services{

    padding:70px 20px;

    text-align:center;

}



.services h2,
.gallery h2{

    font-size:2.2rem;

    margin-bottom:40px;

}



.services-grid,
.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}



.service-card,
.gallery-card{

    background:white;

    border-radius:15px;

    overflow:hidden;

    padding:20px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}



.service-card:hover,
.gallery-card:hover{

    transform:translateY(-8px);

}



.service-card img,
.gallery-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:12px;

}



.service-card h3,
.gallery-card h3{

    margin:15px 0;

    color:#111;

}



.service-card p{

    color:#666;

}



/* =========================
 GALLERY
========================= */

.gallery{

    padding:70px 20px;

}



.gallery-content{

    text-align:center;

}



.price{

    color:#25d366;

    font-weight:bold;

    font-size:1.2rem;

}



.gallery-actions{

    display:flex;

    justify-content:center;

    gap:10px;

    flex-wrap:wrap;

}



/* =========================
 VIDEO
========================= */

.video-section{

    padding:70px 20px;

    background:#f5f5f5;

}



.video-section h2{

    text-align:center;

    margin-bottom:40px;

}


.video-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}



.video-card{

    background:white;

    padding:15px;

    border-radius:15px;

    box-shadow:0 10px 20px rgba(0,0,0,.1);

}



.video-card video{

    width:100%;

    border-radius:10px;

}



/* =========================
 ABOUT
========================= */

.about-history,
.about-achievements{

    padding:70px 20px;

}



.about-history h2,
.about-achievements h2{

    text-align:center;

    margin-bottom:30px;

}


.about-achievements ul{

    max-width:600px;

    margin:auto;

    line-height:2;

}



/* =========================
 CONTACT
========================= */

.contact-info{

    padding:70px 20px;

}


.contact-info h2{

    text-align:center;

    margin-bottom:40px;

}



.contact-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}



.contact-card{

    background:white;

    padding:30px;

    text-align:center;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.1);

}



.contact-card i{

    font-size:35px;

    color:#c59d5f;

    margin-bottom:15px;

}


.contact-card a{

    color:#333;

}



/* =========================
 EMAIL FORM
========================= */

.email-form{

    padding:70px 20px;

}


.email-form form{

    max-width:700px;

    margin:auto;

    background:white;

    padding:30px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.1);

}



.email-form input,
.email-form textarea,
.email-form select{

    width:100%;

    padding:15px;

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:8px;

}



.email-form button{

    width:100%;

    padding:15px;

    border:none;

    background:#111;

    color:white;

    border-radius:8px;

    cursor:pointer;

}



.email-form button:hover{

    background:#c59d5f;

}



/* =========================
 CTA
========================= */

.cta{

    padding:70px 20px;

    text-align:center;

    background:#111;

    color:white;

}



.cta h2{

    margin-bottom:15px;

}



/* =========================
 WHATSAPP FLOAT
========================= */

.whatsapp{

    position:fixed;

    bottom:20px;

    left:20px;

    z-index:999;

}



.whatsapp img{

    width:60px;

    height:60px;

}



/* =========================
 FOOTER
========================= */

footer{

    background:#000;

    color:white;

    text-align:center;

    padding:25px;

}



/* =========================
 MOBILE
========================= */

@media(max-width:768px){


body{

    padding-top:70px;

}


.menu-toggle{

    display:block;

}



.nav-links{

    position:absolute;

    top:80px;

    left:0;

    width:100%;

    background:white;

    flex-direction:column;

    text-align:center;

    display:none;

}



.nav-links.active{

    display:flex;

}



.nav-links li{

    padding:15px;

    border-bottom:1px solid #eee;

}



.hero h1{

    font-size:2rem;

}


.hero p{

    font-size:1rem;

}



.services-grid,
.gallery-grid{

    grid-template-columns:1fr;

}



.gallery-actions{

    flex-direction:column;

}


.btn{

    width:100%;

}



}
/* ================= MOBILE HAMBURGER ================= */

.menu-toggle{
    display:none;
    width:40px;
    height:40px;
    background:none;
    border:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    gap:6px;
}


.menu-toggle span{

    display:block;
    width:30px;
    height:3px;
    background:#111;
    border-radius:5px;

}


@media(max-width:768px){

.menu-toggle{
    display:flex;
}


.nav-links{

    position:absolute;
    top:80px;
    left:0;
    width:100%;

    background:white;

    display:none;

    flex-direction:column;

}


.nav-links.active{

    display:flex;

}

}
/* MOBILE HAMBURGER */

.menu-toggle{

    display:none;
    flex-direction:column;
    gap:6px;
    cursor:pointer;

}


.menu-toggle span{

    width:30px;
    height:3px;
    background:#111;
    border-radius:5px;

}



@media(max-width:768px){

.menu-toggle{

    display:flex;

}


.nav-links{

    position:absolute;
    top:80px;
    left:0;
    width:100%;

    background:white;

    display:none;

    flex-direction:column;

    text-align:center;

    padding:20px 0;

}


.nav-links.active{

    display:flex;

}


.nav-links li{

    padding:15px;

    border-bottom:1px solid #eee;

}

}