/* ══════════════════════════════════════
   FOODISTAN — styles.css
   ══════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg:       #080808;
  --surface:  #111111;
  --surface2: #1a1a1a;
  --gold:     #D4A017;
  --gold-lt:  #F0C040;
  --red:      #C0392B;
  --white:    #FFFFFF;
  --muted:    #888888;
  --border:   rgba(212,160,23,.18);
  --radius:   6px;
  --nav-h:    70px;
  font-size: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── UTILITIES ── */
.section-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
}
.section-title span { color: var(--gold); }
.gold-line {
  width: 52px; height: 3px;
  background: var(--gold);
  margin-top: 1rem; margin-bottom: 1.6rem;
  border-radius: 2px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: #000;
  font-weight: 700; font-size: .9rem;
  letter-spacing: .04em;
  padding: .78rem 1.6rem;
  border: none; border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 0 transparent;
}
.btn-primary:hover {
  background: var(--gold-lt);
  box-shadow: 0 0 22px rgba(212,160,23,.45);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: .9rem;
  letter-spacing: .04em;
  padding: .76rem 1.55rem;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.4rem; }
section { padding: 90px 0; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 1.8rem;
  background: transparent;
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
}
#navbar.scrolled {
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1160px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--gold); color: #000;
  display: grid; place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem; font-weight: 700;
}
.logo-text { line-height: 1; }
.logo-text .name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--white); letter-spacing: .05em; }
.logo-text .tag  { font-size: .58rem; color: var(--muted); letter-spacing: .18em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,.78); font-size: .88rem; font-weight: 500; text-decoration: none; letter-spacing: .02em; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-ctas { display: flex; align-items: center; gap: .8rem; }
.nav-phone { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: .35rem; }
.nav-phone svg { color: var(--gold); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(8,8,8,.97); backdrop-filter: blur(18px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: .08em; color: var(--white); text-decoration: none; transition: color .2s; }
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(105deg, rgba(8,8,8,.88) 42%, rgba(8,8,8,.35) 100%),
    url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?w=1600&q=80') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,160,23,.07) 0%, transparent 65%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: calc(var(--nav-h) + 60px) 1.4rem 80px;
  max-width: 680px;
  margin: 0 auto 0 max(1.4rem, calc((100vw - 1160px) / 2 + 1.4rem));
}
.hero-eyebrow {
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .6rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900; line-height: 1.03;
  margin-bottom: 1.3rem;
}
.hero-headline .accent { color: var(--gold); }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.7); max-width: 420px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.hero-meta { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.hero-stars { display: flex; align-items: center; gap: .3rem; font-size: .85rem; color: rgba(255,255,255,.8); }
.star-filled { color: var(--gold); font-size: 1rem; }
.meta-divider { width: 1px; height: 18px; background: rgba(255,255,255,.2); }
.hero-open { font-size: .82rem; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: .35rem; }
.dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: #27ae60; box-shadow: 0 0 8px #27ae60;
  animation: pulse-live 1.8s infinite;
}
@keyframes pulse-live { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── ABOUT ── */
#about { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 10px;
  display: block;
  background: url('https://images.unsplash.com/photo-1606755962773-d324e0a13086?w=900&q=80') center/cover no-repeat;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: #000;
  padding: 1.1rem 1.4rem; border-radius: 10px;
  text-align: center; box-shadow: 0 8px 28px rgba(0,0,0,.4);
}
.badge-num   { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; line-height: 1; }
.badge-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.about-text p { color: rgba(255,255,255,.68); margin-bottom: 1rem; font-size: .96rem; }
.about-stats { display: flex; gap: 2.2rem; margin-top: 1.8rem; }
.stat { text-align: center; }
.stat-num   { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: .7rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: .2rem; }

/* ── MENU ── */
#menu { background: var(--bg); }
.menu-tabs { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.tab-btn {
  padding: .52rem 1.2rem; border-radius: 40px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  border: 1.5px solid var(--border); background: transparent; color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.tab-btn:hover,
.tab-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem; }
.menu-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: transform .22s, box-shadow .22s;
  display: none;
}
.menu-card.active-card { display: block; }
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.45); }
.menu-card-img {
  width: 100%; height: 190px;
  background-color: var(--surface2);
  background-size: cover; background-position: center;
  display: block;
}
.menu-card-body   { padding: 1.1rem 1.2rem 1.3rem; }
.menu-card-name   { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; }
.menu-card-desc   { font-size: .82rem; color: var(--muted); margin-bottom: .9rem; line-height: 1.5; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-price       { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--gold); }
.menu-price span  { font-size: .75rem; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: 0; }
.badge-hot {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 40px;
  background: rgba(192,57,43,.18); color: #e74c3c; border: 1px solid rgba(192,57,43,.35);
}
.badge-best {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 40px;
  background: rgba(212,160,23,.15); color: var(--gold); border: 1px solid var(--border);
}

/* ── REVIEWS ── */
#reviews { background: var(--surface); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.3rem; }
.review-card {
  background: var(--surface2); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.5rem 1.4rem;
  transition: border-color .2s;
}
.review-card:hover { border-color: rgba(212,160,23,.4); }
.review-stars  { display: flex; gap: 2px; margin-bottom: .8rem; color: var(--gold); font-size: 1rem; }
.review-text   { font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.65; margin-bottom: 1.1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .7rem; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: #000; font-weight: 700;
  display: grid; place-items: center; font-size: .85rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: .88rem; }
.review-date { font-size: .72rem; color: var(--muted); margin-top: .1rem; }

/* ── GALLERY ── */
#gallery { background: var(--bg); }
.gallery-masonry { columns: 3; column-gap: 1rem; }
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem; border-radius: 8px; overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block; transition: transform .35s;
  filter: brightness(.85);
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(1); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 50%);
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img  { max-width: 90vw; max-height: 88vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer;
  opacity: .7; transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }

/* ── LOCATION ── */
#location { background: var(--surface); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.map-placeholder {
  width: 100%; aspect-ratio: 4/3.2; border-radius: 10px;
  background: var(--surface2); border: 1px solid var(--border);
  overflow: hidden; position: relative;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; filter: invert(.85) hue-rotate(190deg) saturate(0.5); }
.info-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.6rem; }
.info-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--surface2); border: 1px solid var(--border); border-radius: 8px;
  padding: 1rem 1.1rem;
}
.info-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(212,160,23,.12); color: var(--gold);
  display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0;
}
.info-card-title { font-weight: 600; font-size: .9rem; margin-bottom: .15rem; }
.info-card-text  { font-size: .83rem; color: var(--muted); }

/* ── CONTACT ── */
#contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group   { display: flex; flex-direction: column; gap: .38rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.75); letter-spacing: .04em; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius);
  color: var(--white); padding: .72rem .9rem; font-family: 'Inter', sans-serif; font-size: .9rem;
  outline: none; transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--surface2); }
.form-success {
  display: none; padding: .9rem 1.2rem;
  background: rgba(39,174,96,.12);
  border: 1px solid rgba(39,174,96,.35); border-radius: var(--radius);
  color: #27ae60; font-size: .88rem; font-weight: 600; text-align: center;
}
.contact-info-box { background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; padding: 2rem 1.8rem; }
.contact-info-box h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.4rem; }
.contact-detail { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.contact-detail:last-child { margin-bottom: 0; }
.c-icon  { width: 40px; height: 40px; border-radius: 8px; background: rgba(212,160,23,.12); color: var(--gold); display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0; }
.c-label { font-size: .75rem; color: var(--muted); }
.c-val   { font-size: .92rem; font-weight: 500; margin-top: .05rem; }
.social-row { display: flex; gap: .7rem; margin-top: 1.6rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1.5px solid var(--border); background: transparent;
  display: grid; place-items: center; color: var(--muted);
  font-size: 1rem; cursor: pointer; transition: all .2s; text-decoration: none;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2rem 1.4rem;
}
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy   { font-size: .78rem; color: var(--muted); }
.footer-links  { display: flex; gap: 1.4rem; }
.footer-links a { font-size: .78rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

/* ── FLOATING BUTTONS ── */
.float-btns { position: fixed; bottom: 1.6rem; right: 1.4rem; display: flex; flex-direction: column; gap: .6rem; z-index: 900; }
.float-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.2rem;
  border: none; cursor: pointer; transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,.45);
}
.float-btn:hover { transform: scale(1.1); }
.float-wa   { background: #25D366; color: #fff; }
.float-call { background: var(--gold); color: #000; }

/* ── SCROLL-TO-TOP ── */
#toTop {
  position: fixed; bottom: 5.4rem; right: 1.4rem; z-index: 900;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface2); border: 1.5px solid var(--border); color: var(--muted);
  display: none; align-items: center; justify-content: center; cursor: pointer;
  font-size: .85rem; transition: all .2s;
}
#toTop.visible { display: flex; }
#toTop:hover   { border-color: var(--gold); color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: flex; }
  .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge { right: 1rem; bottom: -16px; }
  .gallery-masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-outline { display: none; }
  .about-stats { gap: 1.4rem; }
  .gallery-masonry { columns: 2; }
  .hero-headline { font-size: 2.6rem; }
  section { padding: 64px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
