*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#fafafa;
color:#333;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-size:24px;
font-weight:700;
color:#e53935;
}

nav{
display:flex;
gap:20px;
align-items:center;
}

nav a{
text-decoration:none;
color:#444;
font-weight:500;
}

.btn-small{
background:#e53935;
color:white;
padding:10px 18px;
border-radius:25px;
}

.hero{
padding:80px 0;
background:linear-gradient(135deg,#fff5f5,#fff);
}

.hero-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.hero h1{
font-size:48px;
line-height:1.2;
margin-bottom:20px;
}

.hero p{
font-size:18px;
margin-bottom:30px;
color:#666;
}

.hero-buttons{
display:flex;
gap:15px;
margin-bottom:25px;
}

.btn-primary,
.btn-secondary{
text-decoration:none;
padding:14px 28px;
border-radius:30px;
font-weight:600;
}

.btn-primary{
background:#e53935;
color:white;
}

.btn-secondary{
border:2px solid #e53935;
color:#e53935;
}

.info{
display:flex;
gap:20px;
flex-wrap:wrap;
font-size:14px;
}

.hero-image img{
width:100%;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.features,
.menu,
.testimoni,
.gallery,
.location{
padding:80px 0;
}

h2{
text-align:center;
font-size:36px;
margin-bottom:50px;
}

.feature-grid,
.menu-grid,
.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.feature-box{
background:white;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.icon{
font-size:45px;
margin-bottom:15px;
}

.card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card-body{
padding:20px;
}

.card-body h3{
margin-bottom:10px;
}

.card-body p{
color:#e53935;
font-weight:700;
margin-bottom:15px;
}

.card-body a{
display:inline-block;
background:#e53935;
color:white;
padding:10px 20px;
border-radius:25px;
text-decoration:none;
}

.promo{
padding:80px 0;
}

.promo-box{
background:linear-gradient(135deg,#ff6b35,#ff9800);
color:white;
padding:60px;
text-align:center;
border-radius:30px;
}

.promo-box h2{
margin-bottom:20px;
}

.promo-box a{
display:inline-block;
margin-top:20px;
background:white;
color:#ff6b35;
padding:14px 30px;
border-radius:30px;
text-decoration:none;
font-weight:700;
}

.testimonial{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
}

.gallery-grid img{
width:100%;
height:220px;
object-fit:cover;
border-radius:15px;
}

.location{
text-align:center;
background:#fff5f5;
}

footer{
background:#222;
color:white;
text-align:center;
padding:40px 0;
}

@media(max-width:900px){

.hero-content,
.feature-grid,
.menu-grid,
.testimonial-grid,
.gallery-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:36px;
}

.nav{
flex-direction:column;
gap:15px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.hero-buttons{
flex-direction:column;
}

}