/* ═══════════════════════════════════════════════
   WebTurtle — Restaurant Template
   Design DNA: Nobu-inspired — cinematic, luxurious,
   dark/moody, photo-driven, gold accents
   ═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --bg: #1a1a1a;
  --surface: #2a2a2a;
  --gold: #c9a96e;
  --gold-light: #d4ba85;
  --gold-dark: #a88b52;
  --text: #f5f0eb;
  --text-muted: #a39e96;
  --border: rgba(201, 169, 110, 0.25);

  /* base.css FAQ overrides */
  --primary: #c9a96e;
  --text: #f5f0eb;
  --text-muted: #a39e96;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Global ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: -32px auto 48px;
  line-height: 1.7;
}

/* ── Gold Rule ── */
.gold-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 48px;
}

/* ── Button ── */
.btn-gold {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  background: transparent;
}

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


/* ═══════════════════════════════════════════════
   NAV — Transparent, solidifies on scroll
   ═══════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.nav-solid {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

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

.nav-cta {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav .nav-cta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 14px 40px;
  margin-top: 16px;
}


/* ═══════════════════════════════════════════════
   HERO — Full viewport cinematic
   ═══════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  border: 1px solid var(--gold);
  padding: 6px 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ═══════════════════════════════════════════════
   PHILOSOPHY — 3 pillars, magazine layout
   ═══════════════════════════════════════════════ */

.philosophy {
  background: var(--bg);
}

.philosophy-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.philosophy-item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.philosophy-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.philosophy-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.philosophy-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.philosophy-divider {
  width: 1px;
  height: 120px;
  background: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
  align-self: center;
}


/* ═══════════════════════════════════════════════
   MENU — Alternating image/text rows
   ═══════════════════════════════════════════════ */

.menu-section {
  background: var(--surface);
}

.dish-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
  min-height: 400px;
}

.dish-row-reverse {
  direction: rtl;
}

.dish-row-reverse > * {
  direction: ltr;
}

.dish-image {
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dish-row:hover .dish-image img {
  transform: scale(1.03);
}

.dish-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 60px;
  background: var(--bg);
}

.dish-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.dish-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 400px;
}

.dish-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.menu-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


/* ═══════════════════════════════════════════════
   BOOKING / RESERVATION
   ═══════════════════════════════════════════════ */

.booking-section {
  background: var(--bg);
}

#booking-widget {
  max-width: 640px;
  margin: 0 auto;
}

#booking-widget .bw-services-grid {
  display: flex;
  justify-content: center;
}

#booking-widget .bw-svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  color: var(--gold);
  padding: 32px 48px;
  letter-spacing: 0.06em;
  transition: background 0.3s, border-color 0.3s;
}

#booking-widget .bw-svc-card:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

#booking-widget .bw-svc-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#booking-widget .bw-svc-duration {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

#booking-widget .bw-svc-card:hover .bw-svc-duration {
  color: var(--bg);
}


/* ═══════════════════════════════════════════════
   ABOUT / STORY — Full-width cinematic overlay
   ═══════════════════════════════════════════════ */

.about-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px;
}

.about-bg {
  position: absolute;
  inset: 0;
}

.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.about-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: 0.06em;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.about-text p {
  margin-bottom: 16px;
}


/* ═══════════════════════════════════════════════
   LOCATION & HOURS
   ═══════════════════════════════════════════════ */

.location-section {
  background: var(--surface);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.location-map {
  overflow: hidden;
  border: 1px solid var(--border);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  display: block;
  filter: grayscale(0.3) brightness(0.85);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}

.location-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

.location-block a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-block a:hover {
  color: var(--gold);
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  font-size: 0.9rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--text);
}

.hours-time {
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════
   REVIEWS — Dark cards, gold stars
   ═══════════════════════════════════════════════ */

.reviews-section {
  background: var(--bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.3s ease;
}

.review-card:hover {
  border-color: var(--gold);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ═══════════════════════════════════════════════
   FAQ — Dark themed overrides
   ═══════════════════════════════════════════════ */

.faq-section {
  background: var(--surface);
  --border: rgba(201, 169, 110, 0.2);
  --text: #f5f0eb;
  --text-muted: #a39e96;
  --primary: #c9a96e;
}

.faq-section .faq-question {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-section .faq-question:hover {
  color: var(--gold);
}

.faq-section .faq-icon {
  color: var(--gold);
}

.faq-section .faq-answer-inner {
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════
   FOOTER — Dark, minimal, gold accents
   ═══════════════════════════════════════════════ */

.footer {
  background: #111;
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0.6;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .philosophy-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .philosophy-divider {
    width: 60px;
    height: 1px;
  }

  .philosophy-item {
    padding: 0 20px;
  }

  .dish-row,
  .dish-row-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }

  .dish-image {
    height: 300px;
  }

  .dish-info {
    padding: 36px 28px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

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

  .location-map iframe {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 5px 16px;
  }

  .section-heading {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    margin-bottom: 36px;
  }

  .dish-image {
    height: 240px;
  }

  .dish-info {
    padding: 28px 24px;
  }

  .review-card {
    padding: 28px 24px;
  }

  .about-section {
    padding: 80px 20px;
    min-height: 400px;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}
