/*=========================================
        LUXURY NAILS STUDIO
        PREMIUM CSS
=========================================*/

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

:root{

    --gold:#D4AF37;
    --gold-light:#f5d76e;
    --pink:#ff4fa0;
    --pink-light:#ffd8ea;
    --white:#ffffff;
    --black:#0f0f12;
    --gray:#888;
    --bg:#111114;

    --shadow:0 15px 45px rgba(0,0,0,.25);
    --radius:18px;
    --transition:.4s ease;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fafafa;
    color:#222;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

section{

    padding:100px 8%;

}

h1,h2,h3{

    font-weight:700;

}

h2{

    text-align:center;
    font-size:2.7rem;
    margin-bottom:60px;
    color:var(--black);

}

/*================ NAVBAR ================*/

header{

    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    transition:.4s;

}

header.active{

    background:white;
    box-shadow:0 10px 30px rgba(0,0,0,.1);

}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 8%;

}

.logo{

    color:white;
    font-size:2rem;
    font-weight:700;

}

header.active .logo{

    color:black;

}

.logo span{

    color:var(--gold);

}

.nav-links{

    display:flex;
    gap:35px;
    list-style:none;

}

.nav-links a{

    text-decoration:none;
    color:white;
    font-weight:500;
    transition:.3s;

}

header.active .nav-links a{

    color:#222;

}

.nav-links a:hover{

    color:var(--gold);

}

.menu-btn{

    display:none;
    color:white;
    font-size:28px;
    cursor:pointer;

}

header.active .menu-btn{

    color:black;

}

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

.hero{

    height:100vh;
    background:url("https://images.unsplash.com/photo-1604654894610-df63bc536371?auto=format&fit=crop&w=1800&q=80");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;

}

.overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.65));

}

.hero-content{

    position:relative;
    z-index:2;
    color:white;
    animation:fadeUp 1.2s;

}

.hero h1{

    font-size:2.5rem;
    margin-bottom:20px;
    line-height:1.1;

}

.hero p{

    font-size:1.3rem;
    margin-bottom:40px;
    color:#eee;

}

.btn{

    display:inline-block;
    padding:16px 42px;
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    color:#111;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
    box-shadow:0 15px 35px rgba(212,175,55,.4);

}

.btn:hover{

    transform:translateY(-5px);
    box-shadow:0 25px 50px rgba(212,175,55,.55);

}

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

.container{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;

}

.about-text h2{

    text-align:left;
    margin-bottom:25px;

}

.about-text p{

    line-height:1.9;
    color:#666;
    font-size:1.1rem;

}

.about-image img{

    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.5s;

}

.about-image img:hover{

    transform:scale(1.04);

}

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

.services{

    background:#f8f8f8;

}

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;

}

.card{

    background:white;
    padding:45px;
    text-align:center;
    border-radius:20px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.07);

}

.card:hover{

    transform:translateY(-15px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.card i{

    font-size:50px;
    color:var(--gold);
    margin-bottom:25px;

}

.card h3{

    margin-bottom:15px;

}

.card p{

    color:#666;
    line-height:1.7;


}
/*================ GALERIA ================*/

.gallery{

    background:white;

}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;

}

.gallery-grid img{

    height:320px;
    object-fit:cover;
    border-radius:20px;
    cursor:pointer;
    transition:.5s;
    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.gallery-grid img:hover{

    transform:scale(1.05);
    filter:brightness(.85);

}


/*================ BOOKING ================*/

.booking{

    background:
    linear-gradient(
        135deg,
        #111114,
        #24242a
    );

    color:white;

}


.booking h2{

    color:white;

}


#bookingForm{

    max-width:700px;
    margin:auto;
    display:grid;
    gap:20px;

}


#bookingForm input,
#bookingForm select,
#bookingForm textarea,
#contactForm input,
#contactForm textarea{

    width:100%;
    padding:17px 20px;
    border:none;
    outline:none;
    border-radius:12px;
    font-family:inherit;
    background:white;
    font-size:15px;
    transition:.3s;

}


#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus,
#contactForm input:focus,
#contactForm textarea:focus{

    box-shadow:
    0 0 0 3px rgba(212,175,55,.4);

}


#bookingForm textarea,
#contactForm textarea{

    min-height:130px;
    resize:none;

}


#bookingForm button,
#contactForm button{

    border:none;
    cursor:pointer;
    padding:18px;
    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    font-weight:700;
    font-size:16px;

    transition:.4s;

}


#bookingForm button:hover,
#contactForm button:hover{

    transform:translateY(-5px);

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

}



/*================ LOCATION ================*/


.location{

    background:#fafafa;

}


.map{

    overflow:hidden;
    border-radius:25px;
    box-shadow:var(--shadow);

}


.map iframe{

    width:100%;
    height:450px;
    border:0;

}



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


.contact{

    background:white;

}


#contactForm{

    max-width:600px;
    margin:auto;
    display:grid;
    gap:20px;

}



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


footer{

    background:#0d0d10;
    color:white;
    text-align:center;
    padding:60px 20px;

}


footer h3{

    font-size:2rem;
    margin-bottom:15px;

}


footer p{

    color:#aaa;

}


.social{

    display:flex;
    justify-content:center;
    gap:25px;
    margin:30px 0;

}


.social a{

    width:50px;
    height:50px;

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

    border-radius:50%;

    background:#1c1c22;

    color:white;

    font-size:22px;

    transition:.4s;

}


.social a:hover{

    background:var(--gold);
    color:black;
    transform:translateY(-8px);

}


.copy{

    margin-top:30px;
    font-size:.9rem;

}



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


.whatsapp{

    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

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

    background:#25d366;

    color:white;

    border-radius:50%;

    font-size:35px;

    z-index:1000;

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

    animation:pulse 2s infinite;

}



/*================ TOP BUTTON ================*/


#topBtn{

    position:fixed;

    right:30px;
    bottom:105px;

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:black;

    cursor:pointer;

    font-size:18px;

    opacity:0;
    visibility:hidden;

    transition:.4s;

    z-index:999;

}


#topBtn.show{

    opacity:1;
    visibility:visible;

}



/*================ ANIMACIONES ================*/


@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(50px);

    }


    to{

        opacity:1;
        transform:translateY(0);

    }

}



@keyframes pulse{

    0%{

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

    }


    70%{

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

    }


    100%{

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

    }

}



/*================ SCROLL REVEAL ================*/


.reveal{

    opacity:0;

    transform:
    translateY(60px);

    transition:
    1s ease;

}


.reveal.active{

    opacity:1;

    transform:
    translateY(0);

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

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#000000ce;
        flex-direction:column;
        align-items:center;
        gap:25px;
        padding:30px 0;
        box-shadow:0 10px 25px rgba(0,0,0,.08);

        transform:scaleY(0);
        transform-origin:top;
        opacity:0;
        visibility:hidden;
        transition:.3s;
    }

    .nav-links.active{
        transform:scaleY(1);
        opacity:1;
        visibility:visible;
    }
}