/* =========================================================
   DESIGN TOKENS
========================================================= */
:root {
  --bg: #0e0d0c;
  --bg-soft: #131210;
  --card: rgba(255,255,255,0.08);
  --accent: #c8a46a;
  --text: #f5f5f5;
  --muted: #b5b5b5;
  --radius: 18px;
  --blur: blur(14px);
  --transition: .35s ease;
}

/* LIGHT MODE */
body.light {
  --bg: #f7f5f2;
  --bg-soft: #ffffff;
  --card: rgba(0,0,0,0.05);
  --text: #1c1c1c;
  --muted: #555;
}

/* =========================================================
   RESET / BASE
========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   HEADER – PREMIUM
========================================================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: var(--blur);
  background: linear-gradient(
    to bottom,
    rgba(10,9,8,.9),
    rgba(10,9,8,.6)
  );
  border-bottom: 1px solid rgba(255,255,255,.08);
}

body.light .header {
  background: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  position: relative;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text);
  cursor: pointer;
}


/* =========================================================
   HERO (PARALLAX FEEL)
========================================================= */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 140px 24px 80px;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.9)),
    url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?q=80&w=2400");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-content {
  max-width: 720px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200,164,106,.35);
}

/* =========================================================
   SECTIONS
========================================================= */
section {
  max-width: 1200px;
  margin: auto;
  padding: 100px 24px;
}

.section-dark {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01)
  );
}

.section-intro {
  max-width: 640px;
  margin-bottom: 48px;
}

/* =========================================================
   CARDS / ANIMATIONS
========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.card {
  background: var(--card);
  padding: 36px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transform: translateY(40px);
  opacity: 0;
  transition: .8s ease;
}

.card.visible {
  transform: translateY(0);
  opacity: 1;
}

.card h3 {
  color: var(--accent);
}

/* =========================================================
   MENU
========================================================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.menu-block ul {
  padding-left: 18px;
  margin: 0;
}

.menu-block li {
  margin-bottom: 8px;
  color: var(--muted);
}


/* =========================================================
   GALLERY (PREMIUM + PARALLAX)
========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gallery img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .6s ease;
}

.gallery img:hover {
  transform: scale(1.04);
}

/* =========================================================
   MAP
========================================================= */
.map {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  padding: 64px 24px;
  text-align: center;
  color: var(--muted);
  background: var(--bg-soft);
}

/* =========================================================
   DARK / LIGHT TOGGLE (ANIM READY)
========================================================= */
.theme-toggle {
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  font-size: 14px;
}

/* =========================================================
   POPUP / DISCLAIMER
========================================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 1000;
}

.popup {
  max-width: 420px;
  padding: 40px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  animation: popupIn .5s ease;
}

.popup h3 {
  margin-bottom: 16px;
}

.popup p {
  font-size: 15px;
}

.popup-btn {
  margin-top: 24px;
}

/* Animation */
@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* =========================================================
   ACCESSIBILITY / PERFORMANCE
========================================================= */
img, iframe {
  max-width: 100%;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: var(--bg-soft);
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li{
    text-align: center;
  }

  .hero {
    background-attachment: scroll;
  }
}
