/*
Theme Name: Zero95 Pizza Bar
Theme URI: https://zero95.com.au
Author: Zero95 Dining Group
Description: A luxury dark theme for Zero95 Pizza Bar — Wood-Fired, Hand-Crafted, Authentic.
Version: 1.0.0
License: Proprietary
Tags: restaurant, dark, luxury, fullscreen
*/

/* ============================================================
   ZERO95 — COMPLETE STYLESHEET (clean, no duplicates)
   ============================================================ */

/* --- VARIABLES --- */
:root {
  --bg:     #080808;
  --fg:     #fafafa;
  --accent: #D4AF37;
  --muted:  rgba(255,255,255,0.5);
  --border: rgba(255,255,255,0.1);
  --font-sans:    'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-serif:   'Playfair Display', serif;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
a { color: inherit; text-decoration: none; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--accent); color: #000; }

/* --- GRAIN OVERLAY --- */
.grain-overlay {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none !important; /* must not block clicks */
  z-index: 9998; /* below nav but above everything else */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.zero95-nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 9000;  /* high z-index so it's always on top and clickable */
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem;
  color: white;
  transition: background 0.4s ease, padding 0.4s ease;
  /* NO mix-blend-mode here — it breaks pointer events on inner pages */
}
.zero95-nav .nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: 0.2em; color: white; z-index: 9001;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9);
  position: relative;
}
.zero95-nav .nav-actions { display: flex; align-items: center; gap: 2rem; }
.zero95-nav .nav-book-link {
  display: none;
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  transition: color 0.3s;
}
.zero95-nav .nav-book-link:hover { color: var(--accent); }
@media(min-width:768px) { .zero95-nav .nav-book-link { display: block; } }

.nav-toggle {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 50; padding: 4px;
}
.nav-toggle span {
  display: block; width: 32px; height: 1px;
  background: white; transition: all 0.4s ease;
}
.nav-toggle.is-open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-open span:last-child  { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 8999; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-100%);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.nav-overlay.is-open { opacity: 1; transform: translateY(0); pointer-events: all; }
.nav-overlay ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 2rem; }
.nav-overlay ul a {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 300; text-transform: uppercase;
  letter-spacing: 0.05em; color: rgba(255,255,255,0.5);
  transition: color 0.5s;
}
.nav-overlay ul a:hover { color: white; }
.nav-overlay-footer { position: absolute; bottom: 3rem; text-align: center; }
.nav-overlay-footer p:first-child { color: var(--accent); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 0.5rem; }
.nav-overlay-footer p:last-child  { color: rgba(255,255,255,0.3); font-size: 0.65rem; font-family: monospace; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative; height: 100vh; width: 100%;
  overflow: hidden; background: black;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.15); z-index: 1;  /* much lighter — just edge darkening */
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1rem;
  mix-blend-mode: difference;  /* same as original React — text blends with image */
}
.hero-tagline {
  display: block; color: var(--accent);
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.5em; margin-bottom: 1.5rem;
}
.hero-title {
  font-size: 18vw; line-height: 0.8;
  font-weight: 700; letter-spacing: -0.02em; color: white;
  mix-blend-mode: overlay;  /* original: className="mix-blend-overlay" */
}
.hero-divider { width: 6rem; height: 1px; background: rgba(255,255,255,0.5); margin: 2rem auto; }
.hero-subtitle {
  color: rgba(255,255,255,0.8); font-weight: 300;
  text-transform: uppercase; letter-spacing: 0.3em;
  font-size: clamp(0.8rem,2vw,1rem);
}
.hero-subtitle span { color: var(--accent); margin: 0 0.5rem; }
.hero-scroll-line {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  width: 1px; height: 6rem; z-index: 10;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent);
}

/* ============================================================
   MANIFESTO / PHILOSOPHY
   ============================================================ */
.manifesto-section {
  padding: 8rem 1.5rem;
  background: black; position: relative; overflow: hidden;
}
.manifesto-bg-text {
  position: absolute; top: 3rem; left: 0;
  width: 100%; overflow: hidden;
  pointer-events: none; opacity: 0.03;
}
.manifesto-bg-text h2 { font-size: 20vw; white-space: nowrap; line-height: 1; }
.manifesto-inner { max-width: 56rem; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.section-label {
  display: block; color: var(--accent);
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.3em; margin-bottom: 3rem;
}
.manifesto-heading {
  font-size: clamp(2rem,5vw,4rem);
  font-weight: 300; line-height: 1.2;
  letter-spacing: 0.05em; margin-bottom: 4rem;
  color: rgba(255,255,255,0.95);
}
.manifesto-heading .accent-word { color: var(--accent); }
.manifesto-heading .italic-word {
  color: rgba(255,255,255,0.3);
  font-style: italic; font-family: var(--font-serif);
  text-transform: none; letter-spacing: 0;
}
.manifesto-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; text-align: left;
}
@media(min-width:768px) { .manifesto-grid { grid-template-columns: 1fr 1fr; } }
.manifesto-item h3 {
  font-size: 0.85rem; letter-spacing: 0.15em;
  margin-bottom: 1.5rem; padding-left: 1rem;
  border-left: 2px solid var(--accent);
}
.manifesto-item p { color: rgba(255,255,255,0.6); line-height: 1.8; font-size: 0.95rem; }

/* ============================================================
   THE PROCESS — Horizontal Scroll Section
   ============================================================ */
.process-section {
  background: black;
  position: relative;
  height: auto; /* mobile default */
}
@media(min-width:768px) {
  .process-section { height: 300vh; }
}

.process-sticky {
  position: relative;
  display: flex; align-items: center;
  height: auto; overflow: visible;
}
@media(min-width:768px) {
  .process-sticky {
    position: sticky; top: 0;
    height: 100vh; overflow: hidden;
  }
}

.process-label {
  position: absolute; top: 2rem; left: 2rem; z-index: 20;
}
@media(min-width:768px) { .process-label { top: 3rem; left: 3rem; } }

.process-title {
  font-size: 1.5rem; letter-spacing: 0.2em; color: white; margin-top: 0.5rem;
}
@media(min-width:768px) { .process-title { font-size: 2.5rem; } }

.process-track {
  display: flex; flex-wrap: wrap; gap: 0;
}
@media(min-width:768px) {
  .process-track { flex-wrap: nowrap; will-change: transform; }
}

.process-panel {
  width: 100%; height: 75vw; min-height: 320px;
  flex-shrink: 0; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media(min-width:768px) {
  .process-panel { width: 100vw; height: 100vh; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.05); }
}

.process-intro-panel { display: flex; align-items: center; justify-content: center; }
.process-ghost-text {
  font-size: clamp(4rem,10vw,10vw); font-family: var(--font-heading);
  text-transform: uppercase; color: rgba(255,255,255,0.05);
  font-weight: 700; line-height: 1; text-align: center;
}

.process-card {
  width: 100%; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 2rem;
}
@media(min-width:768px) { .process-card { width: 80vw; padding: 6rem; } }

.process-card-bg { position: absolute; inset: 0; z-index: 0; }
.process-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.65); transition: background 0.8s;
}
.process-card:hover .process-card-overlay { background: rgba(0,0,0,0.3); }
.process-card-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1); transform: scale(1.02);
  transition: filter 1s, transform 0.8s;
}
.process-card:hover .process-card-bg img { filter: grayscale(0); transform: scale(1.07); }
.process-card-content { position: relative; z-index: 2; max-width: 42rem; }
.process-card-number {
  font-size: 10vw; font-family: var(--font-heading); font-weight: 700;
  color: rgba(255,255,255,0.04); position: absolute;
  top: -5rem; left: -1rem; pointer-events: none; line-height: 1;
}
.process-card-header {
  display: flex; align-items: baseline; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: 1.5rem;
}
.process-card-header h3 {
  font-size: clamp(3rem,7vw,6rem); font-weight: 500;
  letter-spacing: -0.02em; color: white;
}
.process-card-origin {
  font-size: 0.65rem; font-family: monospace;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); border: 1px solid rgba(212,175,55,0.3);
  padding: 0.25rem 0.75rem; border-radius: 999px;
}
.process-card-content > p {
  font-size: clamp(1rem,2vw,1.4rem); color: rgba(255,255,255,0.7);
  font-weight: 300; line-height: 1.6; max-width: 36rem;
}

/* ============================================================
   FEATURED VENUES
   ============================================================ */
.featured-section { padding: 6rem 0; background: #050505; }
.featured-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 6rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.featured-heading {
  font-size: clamp(2.5rem,6vw,5rem); letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  transition: color 0.7s, -webkit-text-stroke 0.7s;
}
.featured-heading:hover { color: white; -webkit-text-stroke: 0px; }
.featured-city { font-family: monospace; font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 0.15em; text-transform: uppercase; }

.featured-row {
  display: flex; flex-direction: column;
  gap: 3rem; align-items: center;
  margin-bottom: 5rem; padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.featured-row:last-child { border-bottom: none; }
@media(min-width:768px) {
  .featured-row { flex-direction: row; gap: 5rem; margin-bottom: 8rem; padding-bottom: 0; border-bottom: none; }
  .featured-row--reverse { flex-direction: row-reverse; }
}

.featured-image-wrap { width: 100%; position: relative; flex-shrink: 0; }
@media(min-width:768px) { .featured-image-wrap { width: 50%; } }

.featured-image-inner {
  overflow: hidden; position: relative;
  aspect-ratio: 4/5; background: #111;
}
.featured-image-inner img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1); transform: scale(1.02);
  transition: filter 1s, transform 0.8s; display: block;
}
.featured-image-wrap:hover .featured-image-inner img,
.featured-image-wrap.touch-hover .featured-image-inner img {
  filter: grayscale(0); transform: scale(1.07);
}
.featured-image-inner::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.25); transition: background 0.6s; pointer-events: none;
}
.featured-image-wrap:hover .featured-image-inner::after { background: transparent; }

.featured-num {
  position: absolute; bottom: -1.5rem; right: -2rem;
  background: black; border: 1px solid rgba(255,255,255,0.2);
  padding: 1.5rem; font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 700; color: var(--accent);
  z-index: 10; backdrop-filter: blur(8px);
}
@media(min-width:768px) { .featured-num { right: -3rem; } }

.featured-text { width: 100%; flex-shrink: 0; }
@media(min-width:768px) { .featured-text { width: calc(50% - 2.5rem); } }

.featured-venue-name {
  font-size: clamp(3rem,6vw,5.5rem); font-weight: 500;
  letter-spacing: -0.02em; margin: 1rem 0 2rem; color: white;
}
.featured-venue-desc { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.8; max-width: 28rem; margin-bottom: 2.5rem; }
.featured-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.featured-cta-link {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: white; transition: color 0.3s;
}
.featured-cta-link:hover { color: var(--accent); }
.featured-cta-line {
  display: block; width: 3rem; height: 1px;
  background: rgba(255,255,255,0.3); transition: background 0.3s, width 0.3s;
}
.featured-cta-link:hover .featured-cta-line { background: var(--accent); width: 4rem; }
.featured-view-link { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.featured-view-link:hover { color: white; }

/* ============================================================
   SOCIAL CLUB
   ============================================================ */
.social-section { padding: 8rem 0; background: #080808; position: relative; overflow: hidden; }
.social-bg { position: absolute; inset: 0; opacity: 0.15; z-index: 0; }
.social-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); mix-blend-mode: screen; }
.social-inner { position: relative; z-index: 1; }

.social-header {
  display: flex; flex-direction: column; gap: 3rem;
  align-items: flex-start; justify-content: space-between; margin-bottom: 6rem;
}
@media(min-width:768px) { .social-header { flex-direction: row; align-items: flex-end; } }

.social-heading {
  font-size: clamp(4rem,13vw,12vw); line-height: 0.8;
  font-weight: 700; color: white; mix-blend-mode: difference;
}
.social-heading-outline { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.2); }
.social-intro-text { max-width: 20rem; }
.social-intro-text p { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }

.btn-gold {
  display: inline-block; background: var(--accent); color: black;
  padding: 1rem 2rem; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.2em; font-weight: 700; transition: background 0.3s;
}
.btn-gold:hover { background: white; }

.social-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: rgba(255,255,255,0.05);
}
@media(min-width:768px) {
  .social-grid {
    grid-template-columns: 4fr 3fr 5fr;
    grid-template-rows: 1fr 1fr;
    height: 800px;
  }
}

.social-block { background: #080808; padding: 2.5rem; }
.social-block--text { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; }
.social-block--text h3 { font-size: 2rem; letter-spacing: 0.1em; margin: 1rem 0; }
.social-block--text p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; }
.social-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin-top: auto; }

.social-block--image { position: relative; overflow: hidden; padding: 0; cursor: pointer; }
@media(min-width:768px) { .social-block--image { grid-row: 1 / 3; } }
.social-block--image img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; filter: grayscale(1); transition: filter 0.7s; }
.social-block--image:hover img { filter: grayscale(0); }
.social-hover-label {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  opacity: 0; background: rgba(0,0,0,0.4); transition: opacity 0.5s;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
  border: 1px solid white; margin: 2rem;
}
.social-block--image:hover .social-hover-label { opacity: 1; }

.social-block--event {
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.2);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 0.75rem;
}
.social-event-day { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; color: var(--accent); line-height: 1; }
.social-event-name { font-family: var(--font-heading); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.15em; color: white; }
.social-block--event p { color: rgba(255,255,255,0.6); font-size: 0.85rem; max-width: 18rem; line-height: 1.6; }
.social-event-link {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s; margin-top: 0.5rem;
}
.social-event-link:hover { color: var(--accent); border-color: var(--accent); }

.social-block--wide {
  display: flex; align-items: center; justify-content: space-between;
  background: #111; border: 1px solid rgba(255,255,255,0.05); padding: 2rem 2.5rem;
}
@media(min-width:768px) { .social-block--wide { grid-column: 1 / 3; } }
.social-next-label { display: block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); margin-bottom: 0.5rem; }
.social-block--wide h3 { font-size: clamp(1.2rem,2.5vw,1.8rem); letter-spacing: 0.1em; }
.social-time { font-family: var(--font-heading); font-size: clamp(2rem,5vw,4rem); color: rgba(255,255,255,0.08); font-weight: 700; }

/* ============================================================
   GELATO SECTION
   ============================================================ */
.gelato-section {
  min-height: 100vh; background: #080808; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 6rem 0;
}
.gelato-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.4; }
.gelato-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.gelato-section:hover .gelato-bg img { transform: scale(1.1); }
.gelato-gradient { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, black 0%, transparent 40%, black 100%); }
.gelato-content { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; }
.gelato-badge {
  font-family: monospace; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.5em; color: var(--accent);
  border: 1px solid rgba(212,175,55,0.2); padding: 0.5rem 1.5rem;
  border-radius: 999px; backdrop-filter: blur(8px); margin-bottom: 3rem;
}
.gelato-title {
  font-size: clamp(4rem,12vw,9rem); font-weight: 900;
  background: linear-gradient(to bottom, white, rgba(255,255,255,0));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -0.02em; line-height: 0.85; margin-bottom: 2.5rem;
}
.gelato-desc { color: rgba(255,255,255,0.8); font-size: clamp(1rem,2vw,1.4rem); font-weight: 300; max-width: 40rem; line-height: 1.7; margin-bottom: 4rem; }
.gelato-flavors { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-bottom: 6rem; width: 100%; max-width: 36rem; }
@media(min-width:640px) { .gelato-flavors { grid-template-columns: repeat(4,1fr); } }
.gelato-flavor { display: flex; flex-direction: column; align-items: center; gap: 1rem; cursor: pointer; }
.gelato-dot { width: 12px; height: 12px; background: rgba(255,255,255,0.2); border-radius: 50%; transition: background 0.3s, transform 0.3s; }
.gelato-flavor:hover .gelato-dot { background: var(--accent); transform: scale(1.5); }
.gelato-flavor span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.gelato-flavor:hover span { color: white; }

/* ============================================================
   RESERVATION / BOOKING CTA
   ============================================================ */
.reservation-section {
  padding: 8rem 1.5rem; display: flex; align-items: center;
  justify-content: center; border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--bg);
}
.reservation-inner { text-align: center; }
.reservation-inner a.book-link {
  display: block; font-family: var(--font-heading);
  font-size: clamp(3rem,10vw,8rem); text-transform: uppercase;
  letter-spacing: -0.02em; margin: 2rem 0 3rem; color: white;
  transition: all 0.5s;
}
.reservation-inner a.book-link:hover { color: transparent; -webkit-text-stroke: 1px var(--accent); }
.reservation-links { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; align-items: center; }
@media(min-width:768px) { .reservation-links { flex-direction: row; gap: 3rem; } }
.reservation-links a { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.reservation-links a:hover { color: white; }

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */
.page-hero {
  position: relative; padding: 12rem 1.5rem 6rem;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center;
}
.page-hero h1 { font-size: clamp(4rem,12vw,9rem); letter-spacing: -0.02em; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-category {
  display: flex; flex-direction: column; gap: 4rem;
  align-items: center; padding: 8rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.menu-category:last-child { border-bottom: none; }
@media(min-width:768px) {
  .menu-category { flex-direction: row; gap: 4rem; }
  .menu-category.reverse { flex-direction: row-reverse; }
}
.menu-category-image { width: 100%; height: 400px; overflow: hidden; position: relative; }
@media(min-width:768px) { .menu-category-image { width: 50%; height: 600px; } }
.menu-category-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter 1s; }
.menu-category:hover .menu-category-image img { filter: grayscale(0); }
.menu-category-content { width: 100%; }
@media(min-width:768px) { .menu-category-content { width: 50%; padding: 0 3rem; } }
.menu-category-content h2 { font-size: clamp(3rem,6vw,5.5rem); margin-bottom: 3rem; color: rgba(255,255,255,0.9); letter-spacing: -0.02em; }
.menu-item { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px dashed rgba(255,255,255,0.05); }
.menu-item:last-child { border-bottom: none; }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.75rem; }
.menu-item-name { font-family: var(--font-heading); font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.05em; }
.menu-item-price { color: var(--accent); font-family: monospace; font-size: 1rem; margin-left: 1rem; }
.menu-item-desc { color: rgba(255,255,255,0.5); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   CONTACT & FORMS
   ============================================================ */
.contact-grid { display: flex; flex-direction: column; gap: 4rem; max-width: 1100px; margin: 0 auto; padding: 6rem 1.5rem; }
@media(min-width:768px) { .contact-grid { flex-direction: row; gap: 6rem; } }
.contact-form-col, .contact-info-col { width: 100%; }
@media(min-width:768px) { .contact-form-col, .contact-info-col { width: 50%; } }
.contact-form-col h2 { font-size: 2.5rem; margin-bottom: 2.5rem; }
.form-field { margin-bottom: 2rem; }
.form-field label { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1rem;
  color: white; font-family: var(--font-sans); font-size: 1rem; outline: none; transition: border-color 0.3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-bottom-color: var(--accent); }
.form-field textarea { height: 8rem; resize: none; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-field select { color-scheme: dark; }
.form-field select option { background: #080808; }

.btn-primary {
  display: inline-block; background: white; color: black;
  padding: 1rem 3rem; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.2em; font-weight: 700; border: none; cursor: pointer; transition: background 0.3s;
}
.btn-primary:hover { background: var(--accent); }
.btn-outline {
  display: inline-block; border: 1px solid rgba(255,255,255,0.2); color: white;
  padding: 1rem 2rem; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.2em; font-weight: 700; transition: background 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); }

.location-block { margin-bottom: 4rem; }
.location-block h3 { font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem; }
.location-block p { color: rgba(255,255,255,0.7); margin-bottom: 0.3rem; font-weight: 300; }
.location-block .phone { color: rgba(255,255,255,0.5); font-family: monospace; font-size: 0.85rem; margin-bottom: 1rem; }
.view-link { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; transition: color 0.3s; }
.view-link:hover { color: var(--accent); }

/* ============================================================
   EVENTS / HERO WITH BG IMAGE
   ============================================================ */
.events-hero { position: relative; height: 85vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.events-hero-bg { position: absolute; inset: 0; z-index: 0; }
.events-hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: 1; }
.events-hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
.events-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 1rem; margin-top: 6rem; }
.events-hero-content h1 { font-size: clamp(4rem,12vw,10vw); line-height: 0.85; mix-blend-mode: overlay; margin: 1.5rem 0; }
.events-hero-content p { color: rgba(255,255,255,0.8); font-size: clamp(1rem,2vw,1.5rem); font-weight: 300; text-transform: uppercase; letter-spacing: 0.25em; max-width: 40rem; margin: 3rem auto 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: black; padding: 5rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; flex-direction: column; align-items: center; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; letter-spacing: 0.2em; margin-bottom: 2rem; }
.footer-dots { display: flex; gap: 0.5rem; margin-bottom: 2rem; }
.footer-dots span { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.footer-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; list-style: none; }
.footer-social a { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-social a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
}
@media(min-width:768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p, .footer-bottom a { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ============================================================
   UTILITIES & ANIMATIONS
   ============================================================ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* Fade up on load (hero content) */
.fade-up { opacity: 0; animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) forwards; }
.fade-up.delay-1 { animation-delay: 0.3s; }
.fade-up.delay-2 { animation-delay: 0.6s; }
.fade-up.delay-3 { animation-delay: 0.9s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll triggered fade */
.fade-up-scroll {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.fade-up-scroll.is-visible { opacity: 1; transform: translateY(0); }
.fade-up-scroll.touch-hover { opacity: 1; transform: translateY(0); }

/* WordPress required */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
