/* =====================
   Root & Reset
   ===================== */
:root {
  --black: #000;
  --matte: #0c0c0c;
  --deep: #111;
  --gold: #FFD700;
  --white: #fff;
  --gray: #bdbdbd;
  --muted: #999;
  --transition: .4s cubic-bezier(.2,.6,.2,1);
  --shadow: 0 10px 30px rgba(0,0,0,.6);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg,#050505, #111);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3 { font-family: 'Playfair Display', serif; color: var(--gold); }
img { max-width: 100%; display: block; border-radius: 12px; }
a { text-decoration: none; color: inherit; }
section { padding: 100px 8% 80px; position: relative; }

/* =====================
   Navbar
   ===================== */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: var(--transition);
}
.nav-container {
  max-width: 1200px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 8%;
}
.logo { font-size: 1.5rem; font-weight: 700; white-space: nowrap; }
.logo span { color: var(--gold); }
nav a {
  margin: 0 12px; font-size: .95rem; position: relative;
}
nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--gold); transition: width var(--transition);
}
nav a:hover::after { width: 100%; }
.btn-order {
  background: var(--gold); color: var(--black); padding: 8px 16px;
  border-radius: 24px; font-weight: 700; box-shadow: 0 6px 18px rgba(255,215,0,.15);
}
#hamburger { display: none; font-size: 1.4rem; border: none; background: none; color: var(--gold); }
.glass { backdrop-filter: saturate(140%) blur(10px); background: rgba(0,0,0,.25); }
.scrolled { background: rgba(0,0,0,.65) !important; }

/* =====================
   Hero
   ===================== */
#hero {
  height: 100vh; position: relative; display: grid; place-items: center;
  text-align: center; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background: url('../assets/Food/Home(coziness).jpeg') center/cover no-repeat;
}
.hero-media video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,0,0,.2), rgba(0,0,0,.85)); }
.hero-content {
  position: relative; z-index: 2; animation: fadeUp .9s ease both;
}
.title-stroke {
  -webkit-text-stroke: 1px rgba(255,215,0,.35);
  text-shadow: 0 6px 24px rgba(255,215,0,.15);
  font-size: clamp(2.4rem, 6vw, 4rem);
}
.hero-content p {
  font-size: 1.2rem; color: var(--gray);
  margin: .5rem 0 1.5rem;
}
.hero-ctas .btn-outline,
.hero-ctas .btn-gold { margin: .5rem .5rem 0 0; }
.scroll-indicator {
  position: absolute; bottom: 60px; left: 50%;
  transform: translateX(-50%); opacity: .8; text-align: center;
}
.scroll-indicator span {
  display: block; width: 2px; height: 28px; margin: 0 auto 6px;
  background: var(--gold); animation: scrollBlink 1.6s infinite;
}
.scroll-indicator small {
  display: block; font-size: 0.8rem; color: var(--muted); margin-top: 6px;
}
@keyframes scrollBlink { 50% { opacity: .2; transform: scaleY(.6); } }

/* Buttons */
.btn-outline {
  border: 2px solid var(--gold); color: var(--gold);
  padding: 12px 28px; border-radius: 30px;
  transition: var(--transition); font-weight: 700; display: inline-block;
}
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold); color: var(--black);
  padding: 12px 28px; border-radius: 30px;
  transition: var(--transition); font-weight: 700; display: inline-block;
}
.btn-gold:hover { filter: brightness(1.04); transform: translateY(-1px); }

/* =====================
   Specials
   ===================== */
#specials { background: var(--deep); }
#specials h2 { text-align: center; margin-bottom: 50px; font-size: 2.2rem; }
.grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 28px;
}
.card {
  background: #121212; border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius); padding: 18px; text-align: center;
  transition: var(--transition);
}
.card-media {
  height: 220px; overflow: hidden; border-radius: 12px; margin-bottom: 12px;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.card:hover img { transform: scale(1.08); }
.card h3 { margin: 8px 0 4px; }
.card span { font-weight: 700; color: var(--gold); }

/* =====================
   Gallery
   ===================== */
#gallery { background: var(--deep); }
#gallery h2 { text-align: center; margin-bottom: 40px; font-size: 2.2rem; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: 10px; cursor: pointer;
  transition: transform .6s ease, box-shadow .6s ease;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow); }

/* =====================
   Testimonials Carousel
   ===================== */
#testimonials{background:var(--black);}
#testimonials h2{text-align:center;margin-bottom:40px;font-size:2.2rem;}
.testimonial-slider{
  max-width:900px; margin:0 auto; position:relative; padding:10px 0 40px;
}
.slide{
  text-align:center; opacity:0; transform:translateY(12px); transition:opacity .6s ease, transform .6s ease;
  position:absolute; inset:0; margin:auto; display:grid; place-items:center; gap:12px;
}
.slide img{width:68px;height:68px;border-radius:50%;}
.slide blockquote{font-size:1.05rem; color:#e9e9e9;}
.slide figcaption{color:var(--gold); font-size:.9rem;}
.slide.current{opacity:1; transform:translateY(0); position:relative;}
.dots{ display:flex; gap:8px; justify-content:center; margin-top:18px;}
.dot{
  width:9px; height:9px; border-radius:50%; background:#333; border:1px solid #555; cursor:pointer; transition:transform var(--transition), background var(--transition);
}
.dot.active{ background:var(--gold); transform:scale(1.2);}




/* =====================
   Location
   ===================== */
#location {
  background: linear-gradient(180deg,#0b0b0b,#111);
  padding: 80px 6%;
}
.split { display: flex; flex-wrap: wrap; gap: 40px; }
.map, .cta { flex: 1 1 320px; }
.map iframe {
  width: 100%; height: 280px; border: none; border-radius: 12px;
}
.cta h3 { color: var(--gold); margin-bottom: 10px; }
.cta p { margin-bottom: 10px; color: var(--gray); }

/* =====================
   Footer
   ===================== */
footer {
  background: #0a0a0a; padding: 50px 8% 20px; position: relative;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px; margin-bottom: 30px;
}
.footer-grid h4 { margin-bottom: 10px; color: var(--gold); }
footer a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); margin: 4px 0;
  transition: color .3s ease, transform .3s ease;
}
footer a:hover { color: #fff; transform: translateY(-2px); }
.copyright { text-align: center; color: var(--muted); font-size: .85rem; }
#topBtn {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--gold); color: var(--black); border: none; border-radius: 50%;
  width: 46px; height: 46px; font-size: 1.2rem;
  cursor: pointer; opacity: 0; transition: var(--transition); z-index: 999;
}
#topBtn.show { opacity: 1; }

/* =====================
   Animations & Mobile
   ===================== */
@keyframes fadeUp { from{opacity:0; transform:translateY(12px);} to{opacity:1; transform:none;} }

@media(max-width:820px) {
  nav {
    position: absolute; top: 60px; left: 0; width: 100%;
    background: rgba(15,15,15,.96); backdrop-filter: blur(8px);
    flex-direction: column; align-items: center;
    max-height: 0; overflow: hidden;
    transition: max-height var(--transition);
  }
  nav a { margin: 12px 0; }
  nav.show { max-height: 420px; }
  #hamburger { display: block; }
  .title-stroke { font-size: clamp(2rem, 10vw, 3rem); }
  .offer-wrapper { flex-direction: column-reverse; }
}
