/* ===========================================
   GERALD SALON
   Premium Version 2.0
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#ffffff;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

img{
    max-width:100%;
    display:block;
}

section{
    padding:90px 0;
}

/* ==========================
        NAVBAR
========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(8px);
    z-index:1000;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo img{

height:200px;

width:auto;

display:block;

}

nav ul{
    display:flex;
    list-style:none;
    gap:28px;
}

nav a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#D4AF37;
}

.call-btn{
    background:#D4AF37;
    color:#000;
    text-decoration:none;
    padding:12px 25px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.call-btn:hover{
    background:#f0c44d;
    transform:translateY(-2px);
}

/* ==========================
          HERO
========================== */

.hero{
    height:100vh;
    background:url("../images/hero.jpg") center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:800px;
}

.hero h3{
    color:#D4AF37;
    letter-spacing:3px;
    margin-bottom:15px;
}

.hero h1{
    font-size:68px;
    font-family:'Cinzel',serif;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#ddd;
    margin-bottom:35px;
}

.btn1,
.btn2{
    display:inline-block;
    padding:15px 35px;
    border-radius:35px;
    text-decoration:none;
    margin:10px;
    transition:.35s;
}

.btn1{
    background:#D4AF37;
    color:#000;
}

.btn2{
    border:2px solid #D4AF37;
    color:#fff;
}

.btn1:hover{
    transform:translateY(-4px);
}

.btn2:hover{
    background:#D4AF37;
    color:#000;
}

/* ==========================
      TITLES
========================== */

h2{
    font-family:'Cinzel',serif;
    color:#D4AF37;
    margin-bottom:20px;
    text-align:center;
    font-size:42px;
}

.section-title{
    margin-bottom:60px;
}

/* ==========================
     SERVICE CARDS
========================== */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-card{
    background:#171717;
    padding:35px;
    text-align:center;
    border-radius:15px;
    transition:.3s;
    border:1px solid #222;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
}

.service-card i{
    font-size:42px;
    color:#D4AF37;
    margin-bottom:20px;
}

/* ==========================
        PRICING
========================== */

#pricing ul{
    max-width:600px;
    margin:auto;
    list-style:none;
}

#pricing li{
    background:#171717;
    margin:15px 0;
    padding:18px 25px;
    border-left:5px solid #D4AF37;
    border-radius:8px;
    font-size:18px;
}

/* ==========================
       ABOUT
========================== */

#about p{
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#d7d7d7;
}

/* ==========================
      REVIEWS
========================== */

#reviews p{
    max-width:700px;
    margin:20px auto;
    text-align:center;
    background:#171717;
    padding:25px;
    border-radius:10px;
}

/* ==========================
      CONTACT
========================== */

#contact p{
    text-align:center;
    margin:12px 0;
}

#contact a{
    color:#D4AF37;
    text-decoration:none;
}

/* ==========================
      FOOTER
========================== */

footer{
    background:#111;
    text-align:center;
    padding:40px;
    color:#888;
}

/* ==========================
      MOBILE
========================== */

@media(max-width:900px){

header .container{
    flex-direction:column;
    height:auto;
    padding:20px 0;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
    margin:15px 0;
}

.hero h1{
    font-size:44px;
}

.hero p{
    font-size:18px;
}

.call-btn{
    margin-bottom:15px;
}

}
.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:20px;

}

.gallery-grid img{

width:100%;

height:260px;

object-fit:cover;

border-radius:12px;

transition:.4s;

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

}
/* ABOUT SECTION */

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:15px;

box-shadow:0 20px 40px rgba(0,0,0,.5);

}

.about-text p{

margin-bottom:20px;

color:#ddd;

line-height:1.8;

}

@media(max-width:900px){

.about-grid{

grid-template-columns:1fr;

}

}