/* =========================
   RESET
========================= */

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

:root{
--gold:#D4AF37;
--gold-light:#E6C766;
--black:#0F0F0F;
--dark:#171717;
--light:#F8F5EF;
--text:#D8D8D8;
}

body{
font-family:'Poppins',sans-serif;
background:var(--black);
color:white;
overflow-x:hidden;
line-height:1.7;
}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

img{
width:100%;
display:block;
}

a{
text-decoration:none;
}

/* =========================
   PRELOADER
========================= */

#preloader{
position:fixed;
inset:0;
background:#000;
display:flex;
align-items:center;
justify-content:center;
z-index:99999;
}

.loader-logo img{
width:180px;
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.08);}
100%{transform:scale(1);}
}

/* =========================
   HEADER
========================= */

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
background:rgba(0,0,0,.85);
backdrop-filter:blur(10px);
}

header.scrolled{
background:#000;
box-shadow:0 5px 20px rgba(0,0,0,.5);
}

header .container{
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 0;
}

.logo img{
height:90px;
width:auto;
}

#navbar ul{
display:flex;
list-style:none;
gap:35px;
}

#navbar a{
color:white;
font-size:15px;
font-weight:500;
transition:.3s;
}

#navbar a:hover{
color:var(--gold);
}

.order-btn{
padding:12px 25px;
border:1px solid var(--gold);
border-radius:50px;
color:var(--gold);
transition:.3s;
}

.order-btn:hover{
background:var(--gold);
color:black;
}

.mobile-toggle{
display:none;
background:none;
border:none;
font-size:28px;
color:white;
cursor:pointer;
}

/* =========================
   HERO
========================= */

.hero{
min-height:100vh;
display:flex;
align-items:center;
position:relative;
padding-top:120px;
background:
linear-gradient(
rgba(0,0,0,.75),
rgba(0,0,0,.75)),
url("assets/hero-biryani.jpg");
background-size:cover;
background-position:center;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.tagline{
display:inline-block;
font-size:28px;
color:var(--gold);
font-family:'Cormorant Garamond',serif;
margin-bottom:10px;
}

.hero h1{
font-size:110px;
line-height:1;
font-family:'Cormorant Garamond',serif;
color:var(--gold);
margin-bottom:20px;
}

.hero p{
max-width:600px;
font-size:18px;
color:#ddd;
margin-bottom:30px;
}

.hero-right img{
border-radius:30px;
box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-bottom:40px;
}

.btn-primary{
padding:16px 32px;
background:var(--gold);
color:black;
border-radius:50px;
font-weight:600;
display:inline-flex;
align-items:center;
gap:10px;
transition:.3s;
}

.btn-primary:hover{
transform:translateY(-4px);
}

.btn-secondary{
padding:16px 32px;
border:1px solid var(--gold);
border-radius:50px;
color:white;
display:inline-flex;
align-items:center;
gap:10px;
}

.hero-features{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.feature-box{
background:rgba(255,255,255,.05);
padding:20px;
border-radius:20px;
text-align:center;
}

.feature-box i{
font-size:28px;
color:var(--gold);
margin-bottom:10px;
}

/* =========================
   SECTION TITLES
========================= */

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:var(--gold);
letter-spacing:3px;
font-size:14px;
}

.section-title h2{
font-size:48px;
font-family:'Cormorant Garamond',serif;
margin-top:10px;
}

/* =========================
   ABOUT
========================= */

.about-section{
padding:120px 0;
background:#111;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
border-radius:25px;
}

.about-content h2{
font-size:55px;
font-family:'Cormorant Garamond',serif;
margin:15px 0;
color:var(--gold);
}

.about-content p{
color:#ccc;
margin-bottom:20px;
}

.stats-box{
grid-column:1/-1;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:30px;
}

.stat{
background:#1B1B1B;
padding:25px;
border-radius:20px;
display:flex;
gap:15px;
align-items:center;
}

.stat i{
font-size:28px;
color:var(--gold);
}

/* =========================
   SPECIALS
========================= */

.specials{
padding:120px 0;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.product-card{
background:#171717;
border-radius:25px;
overflow:hidden;
transition:.4s;
}

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

.product-card img{
height:260px;
object-fit:cover;
}

.product-card h3{
padding:20px 20px 10px;
}

.price{
display:block;
padding:0 20px 15px;
color:var(--gold);
font-weight:600;
}

.product-card a{
display:block;
margin:0 20px 20px;
padding:12px;
background:var(--gold);
text-align:center;
border-radius:10px;
color:black;
font-weight:600;
}

/* =========================
   GALLERY
========================= */

.gallery-section{
padding:120px 0;
background:#111;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-item{
overflow:hidden;
border-radius:20px;
}

.gallery-item img{
height:320px;
object-fit:cover;
transition:.5s;
}

.gallery-item:hover img{
transform:scale(1.08);
}

/* =========================
   REVIEWS
========================= */

.reviews-section{
padding:120px 0;
}

.review-card{
max-width:800px;
margin:auto;
background:#171717;
padding:50px;
border-radius:25px;
text-align:center;
}

.stars{
font-size:28px;
color:var(--gold);
margin-bottom:20px;
}

/* =========================
   CTA
========================= */

.cta-banner{
padding:100px 0;
background:linear-gradient(135deg,#201700,#0F0F0F);
text-align:center;
}

.cta-banner h2{
font-size:55px;
font-family:'Cormorant Garamond',serif;
color:var(--gold);
margin-bottom:20px;
}

/* =========================
   INSTAGRAM
========================= */

.instagram-section{
padding:120px 0;
text-align:center;
}

.instagram-btn{
display:inline-block;
margin-top:30px;
padding:15px 35px;
background:#E1306C;
border-radius:50px;
color:white;
font-weight:600;
}

/* =========================
   LOCATION
========================= */

.location-section{
padding:120px 0;
background:#111;
}

.location-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.map-box iframe{
width:100%;
height:450px;
border:none;
border-radius:20px;
}

/* =========================
   FOOTER
========================= */

footer{
background:black;
padding:80px 0 30px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.footer-logo{
width:180px;
margin-bottom:15px;
}

.footer-col h3{
color:var(--gold);
margin-bottom:15px;
}

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col a{
color:#ccc;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.1);
margin-top:40px;
padding-top:20px;
text-align:center;
color:#888;
}

/* =========================
   FLOATING BUTTONS
========================= */

.floating-whatsapp,
.floating-call,
.floating-instagram{
position:fixed;
right:20px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
font-size:24px;
z-index:999;
}

.floating-whatsapp{
bottom:20px;
background:#25D366;
}

.floating-call{
bottom:90px;
background:#D4AF37;
color:black;
}

.floating-instagram{
bottom:160px;
background:#E1306C;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

.hero-grid,
.about-grid,
.location-grid,
.footer-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr 1fr;
}

.hero h1{
font-size:70px;
}

.hero-features{
grid-template-columns:1fr 1fr;
}

.stats-box{
grid-template-columns:1fr 1fr;
}

#navbar{
display:none;
}

.mobile-toggle{
display:block;
}

}

@media(max-width:768px){

.hero h1{
font-size:55px;
}

.section-title h2{
font-size:38px;
}

.gallery-grid{
grid-template-columns:1fr;
}

.stats-box{
grid-template-columns:1fr;
}

.hero-features{
grid-template-columns:1fr;
}

}
/* Animation */

.show,
.animate{
opacity:1 !important;
transform:translateY(0) !important;
}

.product-card,
.gallery-item,
.stat,
.review-card,
.about-content,
.about-image{
opacity:0;
transform:translateY(40px);
transition:all .8s ease;
}

/* Mobile Menu */

#navbar.mobile-open{
display:block !important;
position:absolute;
top:100%;
left:0;
width:100%;
background:#111;
padding:20px;
}

#navbar.mobile-open ul{
flex-direction:column;
gap:20px;
}

/* Active Link */

.active-link{
color:#D4AF37 !important;
}

/* Lightbox */

.lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,.95);
display:flex;
justify-content:center;
align-items:center;
z-index:99999;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:20px;
}

.close-lightbox{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

/* Back To Top */

.back-to-top{
position:fixed;
left:25px;
bottom:25px;
width:55px;
height:55px;
border:none;
border-radius:50%;
background:#D4AF37;
color:black;
font-size:20px;
cursor:pointer;
opacity:0;
visibility:hidden;
z-index:999;
transition:.3s;
}

.show-top{
opacity:1;
visibility:visible;
}
