/* ============================================
   The Gamer's Hideout - Red & Neon Theme
   Clean fonts, Centered Layout, Subtle Animations
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #070708;
  --bg-card: #0d0d0f;
  --bg-elevated: #151518;
  --red: #ff3131;
  --neon-red: #ff003c;
  --gradient: linear-gradient(135deg, #ff3131 0%, #ff0055 100%);
  --neon-glow: rgba(255, 49, 85, 0.4);
  --text: #f0f0f0;
  --text-muted: #9ea0a8;
  --border: #222226;
  --success: #22c55e;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#gallery,
#about,
#contact,
#food,
#mocktails {
  scroll-margin-top: 120px;
}

.section-title {
  scroll-margin-top: 120px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255, 49, 85, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

/* ========== Typography ========== */
h1, h2, h3, .font-display {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; color: #fff; }

a {
  color: var(--red);
  text-decoration: none;
  transition: all var(--transition);
}

a:hover {
  color: #fff;
}

/* ========== Layout & Nav ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 7, 8, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  padding-top: 6px;
}

.logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0.42) contrast(1.2) saturate(0.9) drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
  transition: filter var(--transition);
}

/* Dark red tint overlay – no white, blends into header */
.logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(20, 0, 5, 0.5) 70%, rgba(7, 7, 8, 0.85) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.logo:hover img {
  filter: brightness(0.58) contrast(1.2) saturate(0.95) drop-shadow(0 0 12px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 20px rgba(255, 49, 85, 0.2));
}

/* Footer logo – same dark blend, no white */
.site-footer .logo img {
  height: 38px;
  max-width: 160px;
  filter: brightness(0.38) contrast(1.22) saturate(0.85) drop-shadow(0 0 8px rgba(0, 0, 0, 0.8));
}

.site-footer .logo::after {
  background: rgba(5, 5, 7, 0.7);
}

.site-footer .logo:hover img {
  filter: brightness(0.5) contrast(1.2) drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  text-shadow: 0 0 10px var(--neon-glow);
}

/* ========== Main content ========== */
main {
  min-height: 100vh;
  padding-top: 120px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  color: #fff;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient);
  box-shadow: 0 0 10px var(--neon-glow);
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 15px rgba(255, 0, 85, 0.4));
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 30px rgba(255, 49, 85, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(255, 49, 85, 0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #333;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 20px var(--neon-glow);
}

/* ========== Hero (Home) – Spectacular ========== */
.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-parallax {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 7, 8, 0.75) 0%, rgba(7, 7, 8, 0.5) 40%, rgba(7, 7, 8, 0.85) 70%, var(--bg-dark) 100%);
  z-index: 1;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  background-image: linear-gradient(rgba(255, 49, 85, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 49, 85, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 2.5rem;
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15em;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: heroWordIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  color: #fff;
}

.hero-word[data-word="1"] { animation-delay: 0.3s; }
.hero-word[data-word="2"] { animation-delay: 0.5s; }
.hero-word[data-word="3"] { animation-delay: 0.7s; }

.hero-word-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px var(--neon-glow));
  animation: heroWordIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, heroPulse 2.5s ease-in-out 1.2s infinite;
}

@keyframes heroWordIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroPulse {
  0%, 100% { filter: drop-shadow(0 0 25px var(--neon-glow)); }
  50% { filter: drop-shadow(0 0 35px rgba(255, 49, 85, 0.7)); }
}

.hero .tagline {
  font-size: 1.5rem;
  font-weight: 400;
  color: #9ea0a8;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  opacity: 0;
  animation: heroTaglineIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

@keyframes heroTaglineIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 5rem;
}

.btn-hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroBtnIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.btn-hero-cta:first-child { animation-delay: 1.1s; }
.btn-hero-cta:last-child { animation-delay: 1.25s; }

@keyframes heroBtnIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-buttons .btn-primary:hover {
  box-shadow: 0 0 50px rgba(255, 49, 85, 0.6), 0 10px 40px rgba(255, 49, 85, 0.4);
}

/* ========== Highlight cards – Glass & Neon ========== */
.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.highlights-home .highlight-card {
  background: rgba(13, 13, 15, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 49, 85, 0.2);
  min-width: 220px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.highlights-home .highlight-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 49, 85, 0.6), rgba(255, 0, 85, 0.3), rgba(255, 49, 85, 0.6));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.highlights-home .highlight-card:hover::before {
  opacity: 1;
  animation: borderShift 2s ease-in-out infinite;
}

@keyframes borderShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 200px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 0, 85, 0.6);
  box-shadow: 0 25px 60px rgba(255, 49, 85, 0.2), 0 0 40px rgba(255, 49, 85, 0.1);
}

.highlights-home .highlight-card:hover {
  box-shadow: 0 25px 60px rgba(255, 49, 85, 0.25), 0 0 50px rgba(255, 49, 85, 0.15);
}

.highlight-card svg {
  width: 52px;
  height: 52px;
  fill: url(#card-gradient);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlights-home .highlight-card svg {
  animation: iconFloat 3s ease-in-out infinite;
}

.highlights-home .highlight-card:nth-child(1) svg { animation-delay: 0s; }
.highlights-home .highlight-card:nth-child(2) svg { animation-delay: 0.3s; }
.highlights-home .highlight-card:nth-child(3) svg { animation-delay: 0.6s; }

.highlights-home .highlight-card:hover svg {
  animation: iconFloat 0.6s ease-in-out infinite, iconPop 0.4s ease;
  transform: scale(1.15);
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes iconPop {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.highlight-card span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.1em;
}

a.highlight-card { text-decoration: none; }

.highlight-card:nth-child(1) { animation: slideUp 0.8s ease-out 0.2s both; }
.highlight-card:nth-child(2) { animation: slideUp 0.8s ease-out 0.4s both; }
.highlight-card:nth-child(3) { animation: slideUp 0.8s ease-out 0.6s both; }

.highlights-home .highlight-card:nth-child(1) { animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.4s both; }
.highlights-home .highlight-card:nth-child(2) { animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.55s both; }
.highlights-home .highlight-card:nth-child(3) { animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.7s both; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== Booking & Forms ========== */
.booking-form-wrap {
  max-width: 550px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #9ea0a8;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 1rem;
  background: #000;
  border: 1px solid #222;
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition);
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(255, 49, 49, 0.15);
}

.date-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.date-row select {
  width: 100%;
}

.slot-availability {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.slot-availability-title {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: center;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
}

.slot-item {
  padding: 0.75rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--border);
}

.slot-item.available {
  background: rgba(34, 197, 94, 0.15);
  border-color: #22c55e;
  color: #22c55e;
}

.slot-item.booked {
  background: rgba(255, 49, 85, 0.15);
  border-color: var(--red);
  color: var(--red);
  opacity: 0.9;
}

.booking-confirm {
  display: none;
  max-width: 500px;
  margin: 2rem auto;
  padding: 3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--success);
  border-radius: var(--radius-lg);
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.booking-confirm.visible { display: block; }

.booking-confirm h3 { color: var(--success); margin-bottom: 1rem; }

.payment-placeholder {
  margin-top: 3rem;
  padding: 2rem;
  background: #000;
  border: 1px dashed #333;
  border-radius: var(--radius);
  text-align: center;
}

.payment-placeholder strong {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* ========== Page Titles ========== */
.menu-hero h1,
.booking-hero h1,
.gallery-hero h1,
.about-hero h1,
.contact-hero h1 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255, 0, 85, 0.3));
}

/* ========== Menu ========== */
.menu-category h3 {
  margin-bottom: 2rem;
  padding-left: 1.25rem;
  border-left: 4px solid #ff0055;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.menu-item:hover {
  border-color: var(--red);
  background: #111;
  transform: translateX(10px);
}

.menu-item-price {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* ========== Gallery ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(255, 0, 85, 0.5);
}

.gallery-item.revealed:hover {
  transform: translateY(0) scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ========== About & Contact ========== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #9ea0a8;
  line-height: 1.8;
  text-align: center;
}

.about-content strong {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: rgba(255, 0, 85, 0.4);
  transform: translateY(-5px);
}

.contact-card svg {
  width: 48px;
  height: 48px;
  fill: var(--red);
  margin-bottom: 1.5rem;
}

.contact-card a {
  font-weight: 800;
  font-size: 1.2rem;
}

.map-wrap {
  width: 100%;
  max-width: 1100px;
  height: 550px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1) invert(1) contrast(1.2);
}

.hours {
  padding: 2rem;
  text-align: center;
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 2rem auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.hours strong {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.1rem;
}

/* ========== Floating Button ========== */
.floating-book {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.floating-book .btn {
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
  box-shadow: 0 8px 28px rgba(255, 49, 85, 0.4);
}

/* ========== Footer ========== */
.site-footer {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  background: #050506;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  
  /* FORCE COMPACT HEADER */
  .site-header {
    height: auto !important;
    min-height: unset !important;
  }
  
  .site-header .nav-inner {
    flex-direction: column !important;
    padding: 0.5rem !important;
    gap: 0.25rem !important;
  }
  
  .site-header .logo {
    padding: 0 !important;
    margin-bottom: 0.25rem !important;
  }
  
  .site-header .logo img {
    height: 24px !important;
    max-width: 90px !important;
  }
  
  /* Horizontal scroll for nav links – Opera/Chrome/Safari compatible */
  .site-header .nav-links {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 0.25rem 0 !important;
    gap: 0.5rem !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .site-header .nav-links::-webkit-scrollbar {
    display: none;
  }
  
  .site-header .nav-links a {
    flex: 0 0 auto !important;
    font-size: 0.65rem !important;
    padding: 0.3rem 0.6rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  /* Play. Eat. Chill. starts AFTER the dropdown – never covered */
  main { padding-top: 180px !important; }
  .hero { min-height: calc(100vh - 180px) !important; padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .hero-content { padding-top: 1.5rem !important; margin-top: 0 !important; }
  
  /* Hero text very visible and clear */
  .hero-title { 
    font-size: 2.2rem !important; 
    line-height: 1.1 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 0 20px rgba(0,0,0,1), 0 2px 5px rgba(0,0,0,1) !important; 
  }
  .hero .hero-word { 
    transform: none !important;
    opacity: 1 !important;
    text-shadow: 0 0 20px rgba(0,0,0,1), 0 2px 5px rgba(0,0,0,1) !important; 
  }
  .hero-tagline {
    font-size: 0.95rem !important;
    color: #fff !important;
    text-shadow: 0 0 15px rgba(0,0,0,1), 0 1px 4px rgba(0,0,0,1) !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
    padding: 0 0.5rem !important;
  }
  
  .hero-buttons { margin-bottom: 2rem !important; gap: 1rem !important; }
  .btn-hero-cta { padding: 0.8rem 1.2rem !important; font-size: 0.75rem !important; }

  #gallery, #about, #contact, #food, #mocktails { scroll-margin-top: 180px !important; }
  .section-title { scroll-margin-top: 180px !important; }
  .hero-parallax { background-attachment: scroll !important; }
  .map-wrap { height: 350px !important; }
  .contact-info { grid-template-columns: 1fr !important; }
  .highlights-home .highlight-card { min-width: 140px !important; padding: 1.5rem 1rem !important; }
}

/* Scroll-reveal targets */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
