*{

    margin:0;

    padding:0;

    box-sizing:border-box;

    scroll-behavior:smooth;

}

body{

    font-family:"Poppins",sans-serif;

    background:#fff;

    color:#222;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

img{

    width:100%;

    display:block;

}

.navbar{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;

}

.logo{

    font-size:32px;

    font-weight:700;

    color:#e63946;

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:#222;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#e63946;

}

.menu-btn{

    display:none;

    font-size:26px;

    cursor:pointer;

}
@media(max-width:768px){

.nav-links{

position:absolute;

top:80px;

left:-100%;

width:100%;

background:#fff;

flex-direction:column;

text-align:center;

padding:30px 0;

transition:.4s;

box-shadow:0 10px 20px rgba(0,0,0,.1);

}

.nav-links.show{

left:0;

}

.menu-btn{

display:block;

}

.hero h1{

    font-size:40px;

}

.hero p{

    font-size:16px;

}

.hero{

    height:90vh;

}

.hero-buttons{

    flex-direction:column;

    align-items:center;

}

.about .container{

    flex-direction:column;

}

.stats{

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.about-content{

    text-align:center;

}

.menu{

    padding:70px 5%;

}

.section-heading h2{

    font-size:34px;

}

.gallery{

    padding:70px 5%;

}

.testimonials{

    padding:70px 5%;

}

}

/* =========================
   HERO
========================= */

.hero{

    position:relative;

    height:100vh;

    background:url("../images/hero1.jpg") center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:#fff;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:relative;

    max-width:750px;

    padding:20px;

    z-index:2;

    animation:fadeUp 1s ease;

}

.tagline{

    color:#ffb703;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:15px;

    font-weight:600;

}

.hero h1{

    font-size:64px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    display:inline-block;

    background:#e63946;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    background:#d62828;

    transform:translateY(-4px);

}

.btn-outline{

    display:inline-block;

    border:2px solid #fff;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    transition:.3s;

}

.btn-outline:hover{

    background:#fff;

    color:#222;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================
ABOUT
=========================*/

.about{

    padding:100px 8%;

}

.about .container{

    display:flex;

    align-items:center;

    gap:70px;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.about-content{

    flex:1;

}

.section-subtitle{

    color:#e63946;

    font-weight:600;

    letter-spacing:2px;

}

.about-content h2{

    font-size:45px;

    margin:15px 0;

}

.about-content p{

    line-height:1.8;

    color:#555;

}

.about-features{

    margin-top:30px;

}

.about-features div{

    margin-bottom:18px;

    font-weight:500;

}

.about-features i{

    color:#e63946;

    margin-right:10px;

}

/*=========================
STATS
=========================*/

.stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    text-align:center;

    padding:70px 8%;

    background:#e63946;

    color:#fff;

}

.stat h2{

    font-size:48px;

}

.stat p{

    margin-top:10px;

}

/*=========================
MENU
=========================*/

.menu{

    padding:100px 8%;

    background:#fafafa;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading span{

    color:#e63946;

    font-weight:600;

    letter-spacing:2px;

}

.section-heading h2{

    font-size:42px;

    margin:15px 0;

}

.section-heading p{

    color:#666;

}

.menu-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.menu-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.menu-card:hover{

    transform:translateY(-10px);

}

.menu-card img{

    height:230px;

    object-fit:cover;

}

.menu-content{

    padding:25px;

}

.menu-content h3{

    margin-bottom:10px;

}

.rating{

    color:#ffb703;

    margin-bottom:15px;

}

.menu-content p{

    color:#666;

    line-height:1.7;

}

.price-row{

    margin-top:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.price{

    font-size:24px;

    font-weight:bold;

    color:#e63946;

}

.order-btn{

    background:#e63946;

    color:#fff;

    padding:10px 20px;

    border-radius:30px;

    transition:.3s;

}

.order-btn:hover{

    background:#c1121f;

}

/*=========================
GALLERY
=========================*/

.gallery{

    padding:100px 8%;

}

.gallery-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-item{

    position:relative;

}

.overlay-text{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    opacity:0;

    transition:.4s;

}

.gallery-item:hover .overlay-text{

    opacity:1;

}

/*=========================
TESTIMONIALS
=========================*/

.testimonials{

    padding:100px 8%;

    background:#fafafa;

}

.testimonial-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card img{

    width:100px;

    height:100px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

}

.testimonial-card h3{

    margin-bottom:10px;

}

.testimonial-card p{

    color:#666;

    line-height:1.8;

    margin-top:15px;

}

/*=========================
RESERVATION
=========================*/

.reservation{

    padding:100px 8%;

}

.reservation-form{

    max-width:700px;

    margin:auto;

    display:grid;

    gap:20px;

}

.reservation-form input,
.reservation-form select{

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.reservation-form input:focus,
.reservation-form select:focus{

    border-color:#ff6b35;

}

.reservation-form button{

    padding:16px;

    background:#ff6b35;

    color:#fff;

    border:none;

    border-radius:10px;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

.reservation-form button:hover{

    background:#e5532d;

}

.contact{
padding:80px 10%;
background:#fafafa;
}

.contact h2{
text-align:center;
margin-bottom:50px;
font-size:38px;
}

.contact-container{
display:flex;
gap:40px;
flex-wrap:wrap;
}

.contact-info{
flex:1;
}

.contact-form{
flex:1;
}

.info-box{
background:white;
padding:20px;
margin-bottom:20px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.info-box h3{
margin-bottom:10px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px;
margin-bottom:20px;
border:1px solid #ccc;
border-radius:8px;
outline:none;
font-size:16px;
}

.contact-form button{
padding:15px 40px;
background:#ff4d4d;
color:white;
border:none;
border-radius:8px;
cursor:pointer;
font-size:17px;
transition:.3s;
}

.contact-form button:hover{
background:#d93b3b;
}

.social-icons{
margin-top:30px;
display:flex;
gap:20px;
}

.social-icons a{
text-decoration:none;
color:#ff4d4d;
font-weight:bold;
}

footer{
background:#222;
color:white;
padding:30px;
text-align:center;
}