*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

html,
body{
overflow-x:hidden;
background:#111827;
color:#fff;
}

.container{
max-width:1200px;
margin:auto;
padding-left:20px;
padding-right:20px;
}

.navbar{
background:rgba(0,0,0,.8)!important;
backdrop-filter:blur(12px);
padding:15px 0;
}

.navbar-brand{
font-size:32px;
font-weight:700;
color:#C69B6D!important;
}

.nav-link{
color:#fff!important;
font-weight:500;
margin-left:15px;
transition:.3s;
}

.nav-link:hover{
color:#C69B6D!important;
}

.btn-login{
background:#C69B6D;
color:#111827;
padding:10px 24px;
border-radius:12px;
font-weight:600;
text-decoration:none;
display:inline-block;
transition:.3s;
}

.btn-login:hover{
background:#d8b58a;
color:#111827;
}

.hero{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:120px 20px 80px;

background:
linear-gradient(
rgba(0,0,0,.65),
rgba(0,0,0,.65)
),
url('../images/barber-bg.png');

background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.hero-content{
max-width:900px;
margin:auto;
}

.hero h1{
font-size:clamp(48px,8vw,90px);
font-weight:800;
line-height:1.1;
margin-bottom:25px;
}

.hero span{
color:#C69B6D;
}

.hero p{
font-size:22px;
line-height:1.7;
color:#e5e5e5;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
justify-content:center;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.btn-primary-custom{
background:#C69B6D;
color:#111827;
padding:15px 35px;
border-radius:14px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.btn-primary-custom:hover{
background:#d8b58a;
color:#111827;
transform:translateY(-3px);
}

.btn-secondary-custom{
border:2px solid #C69B6D;
color:#C69B6D;
padding:15px 35px;
border-radius:14px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.btn-secondary-custom:hover{
background:#C69B6D;
color:#111827;
}

.stats{
background:#0F172A;
padding:80px 20px;
display:flex;
justify-content:center;
align-items:center;
gap:100px;
text-align:center;
}

.stat-item h2{
font-size:60px;
font-weight:700;
color:#C69B6D;
margin-bottom:10px;
}

.stat-item p{
font-size:18px;
color:#d1d5db;
}

section{
padding:100px 0;
}

.section-title{
text-align:center;
font-size:48px;
font-weight:700;
margin-bottom:60px;
color:#C69B6D;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
width:100%;
}

.card{
background:#1F2937;
border:none;
border-radius:24px;
padding:40px 30px;
text-align:center;
color:#fff;
transition:.3s;
width:100%;
overflow:hidden;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:50px;
color:#C69B6D;
margin-bottom:20px;
display:block;
}

.card h3{
margin-bottom:15px;
font-weight:600;
}

.card p{
color:#d1d5db;
line-height:1.8;
}

.slider{
overflow:hidden;
width:100%;
margin-top:30px;
}

.slide-track{
display:flex;
width:calc(320px * 8);
animation:scroll 25s linear infinite;
}

.slide-track img{
width:300px;
height:220px;
object-fit:cover;
margin-right:20px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.4);
}

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(calc(-320px * 4));
}

}

.contact{
background:#0F172A;
text-align:center;
}

.contact p{
font-size:18px;
margin-bottom:15px;
}

.contact i{
color:#C69B6D;
margin-right:10px;
}

footer{
background:#020617;
padding:30px;
text-align:center;
color:#94A3B8;
}

img{
max-width:100%;
height:auto;
display:block;
}

@media(max-width:992px){

.hero h1{
font-size:60px;
}

.stats{
gap:50px;
}

}

@media(max-width:768px){

.hero{
padding-top:120px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
}

.btn-primary-custom,
.btn-secondary-custom{
width:100%;
max-width:280px;
text-align:center;
}

.stats{
flex-direction:column;
gap:30px;
}

.stat-item h2{
font-size:42px;
}

.section-title{
font-size:32px;
}

.cards{
grid-template-columns:1fr;
}

.card{
padding:30px 20px;
}

.slide-track img{
width:240px;
height:180px;
}

.navbar-brand{
font-size:26px;
}

}

@media(max-width:480px){

.hero h1{
font-size:34px;
}

.hero p{
font-size:15px;
}

.section-title{
font-size:28px;
}

.stat-item h2{
font-size:36px;
}

.card{
padding:25px 18px;
}

}