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

body{
    font-family:'Poppins', sans-serif;
    background:#111;
    color:#fff;
    line-height:1.6;
}

.hero{
    height:100vh;
    background:linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/barber-bg.jpg') center/cover no-repeat;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 10%;
    background:rgba(0,0,0,0.5);
    position:sticky;
    top:0;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#f5b400;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

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

.hero-content{
    text-align:center;
    padding-top:180px;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero-content p{
    width:60%;
    margin:auto;
    margin-bottom:30px;
    font-size:18px;
}

.btn{
    display:inline-block;
    background:#f5b400;
    color:#111;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

section{
    padding:80px 10%;
}

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

h2{
    text-align:center;
    margin-bottom:40px;
    color:#f5b400;
    font-size:40px;
}

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

.card{
    background:#1c1c1c;
    padding:30px;
    border-radius:15px;
    transition:0.3s;
}

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

.card h3{
    margin-bottom:15px;
    color:#f5b400;
}

.pricing table{
    width:100%;
    border-collapse:collapse;
}

.pricing th, .pricing td{
    border:1px solid #333;
    padding:18px;
    text-align:left;
}

.pricing th{
    background:#f5b400;
    color:#111;
}

.booking form{
    display:grid;
    gap:20px;
    max-width:700px;
    margin:auto;
}

.booking input,
.booking select{
    padding:15px;
    border:none;
    border-radius:8px;
}

.booking button{
    background:#f5b400;
    border:none;
    padding:15px;
    border-radius:8px;
    font-weight:700;
    cursor:pointer;
}

.hours p, footer p{
    text-align:center;
    margin-bottom:10px;
}

footer{
    background:#0b0b0b;
    padding:50px 10%;
}

.copyright{
    margin-top:30px;
    color:#888;
}

@media(max-width:768px){
    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        width:90%;
    }

    nav{
        flex-direction:column;
    }

    nav ul{
        margin-top:15px;
    }
}
