/* ===== H2O CAFE N PUB - DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  /* Brand colors */
  --primary:       #EC5B13;
  --primary-light: #ff7a3d;
  --primary-glow:  rgba(236,91,19,0.3);

  /* Backgrounds */
  --bg-dark:       #221610;
  --bg-dark-card:  #2e1d12;
  --bg-dark-border:#3d2a1a;
  --bg-light:      #F8F6F6;
  --bg-light-card: #ffffff;
  --bg-light-border:#e5e0db;

  /* Text */
  --text-light:    #F1F5F9;
  --text-muted:    #94A3B8;
  --text-dark:     #1a0f08;

  /* Legacy aliases (used throughout existing CSS) */
  --black:         #221610;
  --dark:          #2e1d12;
  --dark-card:     #2e1d12;
  --dark-border:   #3d2a1a;
  --gold:          #EC5B13;
  --gold-light:    #ff7a3d;
  --neon-blue:     #EC5B13;
  --neon-red:      #ff3366;
  --neon-purple:   #EC5B13;
  --white:         #F1F5F9;
  --gray:          #94A3B8;
  --light-gray:    #F1F5F9;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  transition: opacity 0.6s, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Uiverse.io loader by mobinkakei — recolored to brand orange */
.uv-loader {
  --path: rgba(236,91,19,0.25);
  --dot: #EC5B13;
  --duration: 3s;
  width: 44px;
  height: 44px;
  position: relative;
  display: inline-block;
  margin: 0 14px;
}
.uv-loader:before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  position: absolute;
  display: block;
  background: var(--dot);
  top: 37px; left: 19px;
  transform: translate(-18px, -18px);
  animation: dotRect var(--duration) cubic-bezier(0.785,0.135,0.15,0.86) infinite;
}
.uv-loader svg { display: block; width: 100%; height: 100%; }
.uv-loader svg rect,
.uv-loader svg polygon,
.uv-loader svg circle {
  fill: none;
  stroke: var(--path);
  stroke-width: 10px;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.uv-loader svg polygon {
  stroke-dasharray: 145 76 145 76;
  stroke-dashoffset: 0;
  animation: pathTriangle var(--duration) cubic-bezier(0.785,0.135,0.15,0.86) infinite;
  stroke: #EC5B13;
}
.uv-loader svg rect {
  stroke-dasharray: 192 64 192 64;
  stroke-dashoffset: 0;
  animation: pathRect var(--duration) cubic-bezier(0.785,0.135,0.15,0.86) infinite;
  stroke: #EC5B13;
}
.uv-loader svg circle {
  stroke-dasharray: 150 50 150 50;
  stroke-dashoffset: 75;
  animation: pathCircle var(--duration) cubic-bezier(0.785,0.135,0.15,0.86) infinite;
  stroke: #EC5B13;
}
.uv-loader.triangle { width: 48px; }
.uv-loader.triangle:before {
  left: 21px;
  transform: translate(-10px, -18px);
  animation: dotTriangle var(--duration) cubic-bezier(0.785,0.135,0.15,0.86) infinite;
}
@keyframes pathTriangle {
  33%  { stroke-dashoffset: 74;  }
  66%  { stroke-dashoffset: 147; }
  100% { stroke-dashoffset: 221; }
}
@keyframes dotTriangle {
  33%  { transform: translate(0, 0);           }
  66%  { transform: translate(10px, -18px);    }
  100% { transform: translate(-10px, -18px);   }
}
@keyframes pathRect {
  25%  { stroke-dashoffset: 64;  }
  50%  { stroke-dashoffset: 128; }
  75%  { stroke-dashoffset: 192; }
  100% { stroke-dashoffset: 256; }
}
@keyframes dotRect {
  25%  { transform: translate(0, 0);           }
  50%  { transform: translate(18px, -18px);    }
  75%  { transform: translate(0, -36px);       }
  100% { transform: translate(-18px, -18px);   }
}
@keyframes pathCircle {
  25%  { stroke-dashoffset: 125; }
  50%  { stroke-dashoffset: 175; }
  75%  { stroke-dashoffset: 225; }
  100% { stroke-dashoffset: 275; }
}


/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 15px 0;
  background: rgba(34,22,16,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled { border-bottom-color: var(--gold); padding: 10px 0; }

.nav-container {
  max-width: 1300px; margin: 0 auto; padding: 0 30px;
  display: flex; align-items: center; justify-content: space-between;
}

/* === NEON SIGN LOGO === */
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 900;
  letter-spacing: 2px;
  color: #ff6a00;
  -webkit-text-fill-color: #ff6a00;
  text-shadow:
    0 0 4px rgba(255,106,0,0.5);
  animation: neon-flicker-orange 4s infinite alternate;
}
/* "Cafe" inside the span also orange-red neon */
.nav-logo span {
  color: #ff6a00;
  -webkit-text-fill-color: #ff6a00;
  text-shadow:
    0 0 4px rgba(255,106,0,0.5);
}
/* "N Pub" in bright yellow neon */
.nav-logo .logo-npub {
  color: #FFE000;
  -webkit-text-fill-color: #FFE000;
  font-style: normal;
  text-shadow:
    0 0 4px rgba(255,224,0,0.45);
  animation: neon-flicker-yellow 5s infinite alternate;
}
@keyframes neon-flicker-orange {
  0%,19%,21%,23%,75%,77%,100% {
    text-shadow:
      0 0 4px rgba(255,106,0,0.5);
  }
  20%,76% {
    text-shadow: none;
    color: #c04010;
    -webkit-text-fill-color: #c04010;
  }
}
@keyframes neon-flicker-yellow {
  0%,18%,20%,100% {
    text-shadow:
      0 0 4px rgba(255,224,0,0.45);
  }
  19% {
    text-shadow: none;
    color: #a08000;
    -webkit-text-fill-color: #a08000;
  }
}

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  color: var(--light-gray); position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--neon-blue);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--neon-blue); }

.nav-cta {
  padding: 10px 24px !important; border-radius: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--black) !important; font-weight: 600 !important;
  -webkit-text-fill-color: var(--black) !important;
  box-shadow: 0 0 20px rgba(212,168,67,0.3);
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(212,168,67,0.5); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 28px; height: 2px; background: var(--text-light); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; padding: 14px 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff; font-family: var(--font-heading);
  font-weight: 700; font-size: 0.95rem; border-radius: 50px;
  border: none; cursor: pointer;
  box-shadow: 0 0 25px var(--primary-glow);
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(236,91,19,0.15);
}

.btn-outline {
  display: inline-block; padding: 14px 36px;
  border: 2px solid var(--primary); color: var(--primary);
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.95rem; border-radius: 50px;
  cursor: pointer; background: transparent;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--primary); color: #ffffff;
  box-shadow: 0 0 30px var(--primary-glow);
  transform: translateY(-3px);
}

.btn-neon {
  display: inline-block; padding: 14px 36px;
  background: transparent; border: 2px solid var(--primary);
  color: var(--primary); font-family: var(--font-heading);
  font-weight: 700; font-size: 0.95rem; border-radius: 50px;
  cursor: pointer; transition: var(--transition);
  text-shadow: 0 0 10px var(--primary-glow);
  box-shadow: 0 0 15px var(--primary-glow), inset 0 0 15px rgba(236,91,19,0.08);
}
.btn-neon:hover {
  background: var(--primary); color: #ffffff;
  text-shadow: none;
  box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(236,91,19,0.15);
  transform: translateY(-3px);
}

/* ===== SECTION COMMON ===== */
.section { padding: 100px 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 30px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--neon-blue);
  margin-bottom: 15px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 800;
  line-height: 1.2; margin-bottom: 20px;
}
.section-title .gold { color: var(--gold); }
.section-title .neon { color: var(--neon-blue); }
.section-line {
  width: 60px; height: 3px; margin: 0 auto 20px;
  background: linear-gradient(90deg, var(--gold), var(--neon-blue));
  border-radius: 2px;
}
.section-desc {
  max-width: 600px; margin: 0 auto;
  color: var(--gray); font-size: 1.05rem;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero-bg.jpg') center top/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34,22,16,0.55) 0%, rgba(34,22,16,0.45) 50%, rgba(34,22,16,1) 100%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-particle {
  position: absolute; width: 3px; height: 3px;
  background: var(--gold); border-radius: 50%;
  animation: float-up linear infinite;
  opacity: 0;
}
@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-block; padding: 8px 24px;
  border: 1px solid var(--gold); border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 25px;
  animation: fadeInDown 1s ease;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem; font-weight: 900;
  line-height: 1.1; margin-bottom: 25px;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem; color: var(--light-gray);
  max-width: 650px; margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero-buttons {
  display: flex; gap: 20px;
  justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  display: block; width: 24px; height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); margin: -10px;
}
@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-15px); }
  60% { transform: translateX(-50%) translateY(-7px); }
}

/* ===== ABOUT PREVIEW ===== */
.about-preview { background: var(--dark); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-img-wrapper {
  position: relative; border-radius: 16px; overflow: hidden;
}
.about-img-wrapper img { width: 100%; border-radius: 16px; }
.about-img-wrapper::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--gold);
  border-radius: 16px; opacity: 0.3;
}
.about-text-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--neon-blue); margin-bottom: 12px;
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem; font-weight: 800;
  margin-bottom: 20px;
}
.about-text h2 .gold { color: var(--gold); }
.about-text p { color: var(--gray); margin-bottom: 30px; font-size: 1.05rem; }

/* ===== FEATURED MENU ===== */
.featured-menu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.menu-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 16px; overflow: hidden;
  transition: var(--transition); position: relative;
}
.menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(212,168,67,0.1);
}
.menu-card-img {
  width: 100%; height: 260px; object-fit: cover;
  transition: transform 0.5s;
}
.menu-card:hover .menu-card-img { transform: scale(1.08); }
.menu-card-img-wrapper { overflow: hidden; }

/* ===== EVENTS ===== */
.events-section { background: var(--dark); }
.events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.event-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 16px; overflow: hidden;
  transition: var(--transition);
}
.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-blue);
  box-shadow: 0 0 30px rgba(0,212,255,0.15);
}
.event-card-img { width: 100%; height: 250px; object-fit: cover; }
.event-card-body { padding: 25px; }
.event-card-tag {
  display: inline-block; padding: 4px 14px;
  background: rgba(0,212,255,0.15); color: var(--neon-blue);
  font-size: 0.75rem; font-weight: 600;
  border-radius: 20px; margin-bottom: 12px;
  font-family: var(--font-heading);
  text-transform: uppercase; letter-spacing: 1px;
}
.event-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 10px;
}
.event-card p { color: var(--gray); font-size: 0.95rem; }

/* ===== GALLERY PREVIEW ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.gallery-item {
  position: relative; border-radius: 12px;
  overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.95rem;
}
.gallery-item:hover {
  box-shadow: 0 0 25px rgba(0,212,255,0.3);
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--dark); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 16px; padding: 30px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}
.review-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 15px; }
.review-text { color: var(--gray); font-style: italic; margin-bottom: 20px; font-size: 0.95rem; }
.review-author { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative; padding: 100px 0;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(0,212,255,0.1));
  text-align: center; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(212,168,67,0.1), transparent 70%);
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 800;
  margin-bottom: 20px; position: relative;
}
.cta-section p {
  color: var(--gray); font-size: 1.1rem;
  margin-bottom: 35px; position: relative;
}

/* ===== FOOTER ===== */
.footer {
  background: #000000; border-top: 1px solid var(--dark-border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 800;
  color: var(--gold); margin-bottom: 15px;
}
.footer-brand p { color: var(--gray); font-size: 0.9rem; }

/* Footer social icons */
.footer-socials {
  display: flex; gap: 12px; margin-top: 20px;
}
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #94A3B8;
  transition: background 0.25s ease, color 0.25s ease,
              transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-social-link:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
}
.footer-social-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  box-shadow: 0 6px 20px rgba(24,119,242,0.45);
}
.footer-social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  box-shadow: 0 6px 20px rgba(220,39,67,0.45);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 20px; color: var(--white);
}
.footer-col a {
  display: block; color: var(--gray);
  font-size: 0.9rem; margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--neon-blue); padding-left: 5px; }
.footer-bottom {
  text-align: center; padding-top: 30px;
  border-top: 1px solid var(--dark-border);
  color: var(--gray); font-size: 0.85rem;
}

/* === PAGE HEADERS === */
.page-header {
  padding: 150px 0 80px;
  text-align: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,212,255,0.08), transparent 60%);
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 900;
  margin-bottom: 15px; position: relative;
}
.page-header p {
  color: var(--gray); font-size: 1.1rem;
  max-width: 600px; margin: 0 auto; position: relative;
}

/* === MENU PAGE === */
.menu-tabs {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 50px;
}
.menu-tab {
  padding: 10px 24px; border: 1px solid var(--dark-border);
  border-radius: 30px; background: var(--bg-dark-card);
  color: var(--gray); font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.menu-tab:hover, .menu-tab.active {
  border-color: var(--primary); color: var(--primary);
  background: rgba(236,91,19,0.12);
}

.menu-category { display: none; }
.menu-category.active { display: block; }
.menu-table {
  width: 100%; border-collapse: collapse;
  background: var(--dark-card);
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--dark-border);
}
.menu-table thead th {
  background: rgba(236,91,19,0.12);
  padding: 16px 24px; text-align: left;
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 700;
  color: var(--primary); text-transform: uppercase;
  letter-spacing: 1px;
}
.menu-table tbody td {
  padding: 14px 24px; border-bottom: 1px solid var(--dark-border);
  font-size: 0.95rem;
}
.menu-table tbody tr { transition: var(--transition); }
.menu-table tbody tr:hover { background: rgba(236,91,19,0.05); }
.menu-table tbody tr:last-child td { border-bottom: none; }
.menu-table .price { color: var(--primary); font-weight: 600; }

/* === EVENTS PAGE === */
.events-page-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* === GALLERY PAGE === */
.gallery-filter {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.gallery-filter-btn {
  padding: 8px 22px; border: 1px solid var(--dark-border);
  border-radius: 30px; background: var(--bg-dark-card);
  color: var(--gray); font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  border-color: var(--primary); color: var(--primary);
  background: rgba(236,91,19,0.1);
  box-shadow: 0 0 15px var(--primary-glow);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}
.gallery-page-item {
  position: relative; border-radius: 12px;
  overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-page-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-page-item:hover img { transform: scale(1.1); }
.gallery-page-item::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid transparent; border-radius: 12px;
  transition: border-color 0.4s;
}
.gallery-page-item:hover::after {
  border-color: var(--neon-blue);
  box-shadow: inset 0 0 20px rgba(0,212,255,0.2);
}

/* Gallery Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  font-size: 2rem; color: var(--white);
  cursor: pointer; z-index: 2;
}

/* === RESERVATION FORM === */
.reservation-form-wrapper {
  max-width: 700px; margin: 0 auto;
  background: var(--bg-dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px; padding: 50px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block; margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 600;
  color: var(--light-gray);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px;
  background: var(--bg-dark); border: 1px solid var(--dark-border);
  border-radius: 10px; color: var(--text-light);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit-btn {
  width: 100%; margin-top: 25px;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 25px; background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px; margin-bottom: 20px;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: var(--gold);
  transform: translateX(5px);
}
.contact-icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,168,67,0.1);
  border-radius: 12px; font-size: 1.3rem; flex-shrink: 0;
}
.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 5px;
}
.contact-info-card p { color: var(--gray); font-size: 0.9rem; }
.contact-map {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--dark-border);
  height: 100%; min-height: 400px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.5) invert(0.92) contrast(0.85); }

/* === ABOUT PAGE === */
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px; margin-top: 60px;
}
.about-feature-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 16px; padding: 30px;
  text-align: center; transition: var(--transition);
}
.about-feature-card:hover {
  border-color: var(--neon-blue);
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0,212,255,0.1);
}
.about-feature-icon { font-size: 2.5rem; margin-bottom: 15px; }
.about-feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 10px;
}
.about-feature-card p { color: var(--gray); font-size: 0.9rem; }

/* === ANIMATIONS === */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .featured-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--bg-dark); flex-direction: column;
    padding: 100px 40px 40px; gap: 20px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--dark-border);
  }
  .nav-links.open { right: 0; }
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .about-grid, .about-story-grid, .contact-grid { grid-template-columns: 1fr; }
  .featured-menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .reservation-form-wrapper { padding: 30px 20px; }
  .page-header h1 { font-size: 2.2rem; }
}

/* ===== MAGICUI POINTER — Local heart inside each card ===== */
/* Default browser cursor is fully preserved */

/* Outer: JS sets left/top to track mouse */
.mp-heart {
  position: absolute;
  width: 36px; height: 36px;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.15s ease;
}

/* Fade in only when mouse is inside the container */
.mp-heart.mp-visible {
  opacity: 1;
}

/* Inner: CSS handles the heartbeat animation (transform only here) */
.mp-heart-inner {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  animation: mp-beat 0.9s ease-in-out infinite;
}

.mp-heart-inner svg {
  width: 36px; height: 36px;
  fill: #EC5B13;
  filter:
    drop-shadow(0 0 5px rgba(236,91,19,0.95))
    drop-shadow(0 0 14px rgba(236,91,19,0.5));
}

/* Heartbeat — runs on inner only, left/top on outer is never touched */
@keyframes mp-beat {
  0%, 100% { transform: scale(1);    }
  15%       { transform: scale(1.35);}
  30%       { transform: scale(1);   }
  45%       { transform: scale(1.18);}
  65%       { transform: scale(1);   }
}





