/* ==========================
   GLAM U SALON
   Luxury Website
========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#FAF9F7;
    color:#222;
    line-height:1.7;
}

/* Navigation */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 8%;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(18px);
    z-index:999;
    border-bottom:1px solid rgba(0,0,0,.05);
}

.logo{
    font-family:'Cormorant Garamond',serif;
    font-size:32px;
    font-weight:700;
    letter-spacing:2px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#b38b59;
}

.book-btn,
.primary-btn{
    background:#111;
    color:white;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.book-btn:hover,
.primary-btn:hover{
    transform:translateY(-2px);
    background:#b38b59;
}

.secondary-btn{
    border:1px solid #111;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    color:#111;
    margin-left:15px;
    transition:.3s;
}

.secondary-btn:hover{
    background:#111;
    color:#fff;
}

/* Hero */

.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(rgba(255,255,255,.55),rgba(255,255,255,.55)),
    url("images/hero.jpg") center/cover no-repeat;
}

.hero-content{
    max-width:850px;
    padding:20px;
}

.eyebrow{
    letter-spacing:4px;
    text-transform:uppercase;
    color:#777;
    margin-bottom:15px;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:82px;
    margin-bottom:10px;
}

.hero h2{
    font-size:24px;
    font-weight:400;
    margin-bottom:25px;
}

.hero-text{
    font-size:19px;
    color:#555;
    margin-bottom:40px;
}

/* Sections */

.section{
    padding:110px 8%;
}

.light{
    background:white;
}

.container{
    max-width:1200px;
    margin:auto;
}

.center{
    text-align:center;
}

.section h2{
    font-family:'Cormorant Garamond',serif;
    font-size:50px;
    margin-bottom:50px;
    text-align:center;
}

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

.card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

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

.feature{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.cta{
    background:#111;
    color:white;
    text-align:center;
    padding:100px 20px;
}

.cta h2{
    font-family:'Cormorant Garamond',serif;
    font-size:52px;
    margin-bottom:20px;
}

footer{
    background:#faf9f7;
    text-align:center;
    padding:60px 20px;
}

footer h3{
    font-family:'Cormorant Garamond',serif;
    font-size:36px;
    margin-bottom:10px;
}

@media(max-width:768px){

.navbar{
    flex-direction:column;
    gap:20px;
}

.nav-links{
    flex-wrap:wrap;
    justify-content:center;
}

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

.hero h2{
    font-size:18px;
}

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

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

.hero-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.secondary-btn{
    margin-left:0;
}

}
