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

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

:root{
--bg:#0e0e0e;
--card:#171717;
--card2:#1d1d1d;

--copper:#c86b32;
--cream:#f5e6d3;

--white:#ffffff;
--text:#b8b8b8;

--border:rgba(255,255,255,.07);
}

body{
font-family:'Inter',sans-serif;
background:var(--bg);
color:var(--white);
overflow-x:hidden;
position:relative;
}

/* =========================
   BACKGROUND GLOWS
========================= */

.bg-glow{
position:fixed;
border-radius:50%;
filter:blur(140px);
z-index:-1;
opacity:.15;
}

.glow-1{
width:500px;
height:500px;
background:var(--copper);
top:-150px;
left:-150px;
}

.glow-2{
width:450px;
height:450px;
background:#7a3d17;
right:-120px;
bottom:-120px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 8%;
z-index:999;
transition:.3s;
}

.navbar.scrolled{
background:rgba(0,0,0,.78);
backdrop-filter:blur(14px);
border-bottom:1px solid var(--border);
}

.logo{
font-family:'Playfair Display',serif;
font-size:1.8rem;
font-weight:700;
}

.logo span{
color:var(--copper);
}

.nav-links{
display:flex;
list-style:none;
gap:35px;
}

.nav-links a{
text-decoration:none;
color:white;
font-weight:500;
transition:.3s;
}

.nav-links a:hover{
color:var(--copper);
}

.nav-btn{
text-decoration:none;
background:var(--copper);
color:white;
padding:14px 24px;
border-radius:999px;
font-weight:700;
transition:.3s;
}

.nav-btn:hover{
transform:translateY(-3px);
}

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

.hero{
min-height:100vh;
position:relative;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:120px 8%;

background:
url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=80");

background-size:cover;
background-position:center;
}

.hero-overlay{
position:absolute;
inset:0;
background:
linear-gradient(
rgba(0,0,0,.75),
rgba(0,0,0,.9)
);
}

.hero-content{
position:relative;
z-index:2;
max-width:900px;
}

.hero-tag{
color:var(--copper);
letter-spacing:2px;
font-size:.9rem;
font-weight:700;
margin-bottom:20px;
}

.hero h1{
font-family:'Playfair Display',serif;
font-size:clamp(3rem,8vw,6rem);
line-height:1.05;
margin-bottom:25px;
}

.hero h1 span{
display:block;
color:var(--copper);
}

.hero-description{
max-width:700px;
margin:auto;
font-size:1.2rem;
line-height:1.8;
color:var(--text);
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}

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

.primary-btn{
background:var(--copper);
color:white;
text-decoration:none;
padding:16px 34px;
border-radius:999px;
font-weight:700;
transition:.3s;
}

.primary-btn:hover{
transform:translateY(-4px);
box-shadow:
0 0 30px rgba(200,107,50,.35);
}

.secondary-btn{
border:1px solid var(--copper);
padding:16px 34px;
border-radius:999px;
text-decoration:none;
color:white;
transition:.3s;
}

.secondary-btn:hover{
background:rgba(255,255,255,.05);
}

/* =========================
   STATS
========================= */

.stats{
padding:80px 8%;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.stat-card{
background:var(--card);
padding:35px;
border-radius:20px;
text-align:center;
border:1px solid var(--border);
}

.stat-card h2{
font-size:3rem;
color:var(--copper);
margin-bottom:10px;
}

.stat-card p{
color:var(--text);
}

/* =========================
   SECTIONS
========================= */

.section{
padding:120px 8%;
}

.dark-section{
background:#111111;
}

.section-header{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:70px;
}

.section-header h2{
font-family:'Playfair Display',serif;
font-size:3rem;
margin-bottom:15px;
}

.section-header p{
color:var(--text);
line-height:1.8;
}

/* =========================
   MENU CARDS
========================= */

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

.menu-card{
background:var(--card);
border-radius:20px;
overflow:hidden;
border:1px solid var(--border);
transition:.4s;
}

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

.menu-image{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.menu-card h3{
padding:25px 25px 10px;
}

.menu-card p{
padding:0 25px 25px;
color:var(--text);
line-height:1.7;
}

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

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

.about-image{
height:500px;
border-radius:25px;

background:
url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1200&q=80");

background-size:cover;
background-position:center;
}

.about-content h2{
font-family:'Playfair Display',serif;
font-size:3rem;
margin-bottom:25px;
}

.about-content p{
color:var(--text);
line-height:1.9;
margin-bottom:20px;
}

/* =========================
   MENU PRICES
========================= */

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

.price-card{
background:var(--card);
padding:40px;
text-align:center;
border-radius:20px;
border:1px solid var(--border);
transition:.3s;
}

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

.price-card h3{
margin-bottom:15px;
}

.price-card h4{
font-size:2rem;
color:var(--copper);
}

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

.gallery-card{
    height:280px;
    overflow:hidden;
    border-radius:20px;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.gallery-card:hover img{
    transform:scale(1.05);
}
/* =========================
   TESTIMONIALS
========================= */

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

.testimonial-card{
background:var(--card);
padding:35px;
border-radius:20px;
border:1px solid var(--border);
}

.testimonial-card p{
line-height:1.8;
margin-bottom:15px;
color:var(--text);
}

.testimonial-card h4{
color:var(--copper);
}

/* =========================
   CONTACT
========================= */

.contact-section{
padding:120px 8%;
text-align:center;
}

.contact-section h2{
font-family:'Playfair Display',serif;
font-size:3rem;
margin-bottom:20px;
}

.contact-section p{
color:var(--text);
}

.contact-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}

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

footer{
padding:40px;
text-align:center;
border-top:1px solid var(--border);
color:#777;
}

/* =========================
   REVEAL
========================= */

.reveal{
opacity:0;
transform:translateY(40px);
transition:.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* =========================
   MOBILE
========================= */

@media(max-width:950px){

.nav-links{
display:none;
}

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

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

.about-image{
height:350px;
}

.hero h1{
font-size:3rem;
}

.section-header h2,
.about-content h2,
.contact-section h2{
font-size:2.3rem;
}

}
/* =========================
   ACTIVE NAV
========================= */

.nav-links a.active{
color:var(--copper);
}

/* =========================
   FLOATING PARTICLES
========================= */

.particle{
position:fixed;
bottom:-20px;
background:var(--copper);
border-radius:50%;
pointer-events:none;
z-index:-1;
animation:floatParticle linear forwards;
}

@keyframes floatParticle{

from{
transform:translateY(0);
opacity:1;
}

to{
transform:translateY(-120vh);
opacity:0;
}

}