/* =============================================
   Fehér Ló Steak House & PUB – Siófok
   Egységes CSS stíluslap
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Lato:wght@300;400;700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #c9a84c;
  --gold-lt: #e2c97e;
  --dark:    #1a1a1a;
  --dark2:   #2c2c2c;
  --light:   #f5f0e8;
  --white:   #ffffff;
  --text:    #333333;
  --gray:    #666666;
  --radius:  6px;
  --shadow:  0 4px 20px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.section-title .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.section-title .divider::before,
.section-title .divider::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: var(--gold);
}
.section-title .divider-icon {
  color: var(--gold);
  font-size: 1.2rem;
}
.section-title p {
  margin-top: 14px;
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.5); }

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

.nav-logo img {
  width: 185px;
  height: 42px;
  object-fit: contain;
  filter: brightness(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
}
.nav-menu li a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.nav-menu li a.etlap-link {
  color: var(--gold);
  border: 1px solid var(--gold);
}
.nav-menu li a.etlap-link:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO / SLIDER
   ============================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: var(--white);
}
.hero-content .hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 18px;
}
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 36px;
  opacity: 0.92;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================
   FEATURES STRIP
   ============================================ */
#features {
  background: var(--dark);
  padding: 60px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.feature-item { color: var(--white); }
.feature-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.feature-item h3 {
  font-size: 1.05rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   FOOD GALLERY (HOME)
   ============================================ */
#food-gallery {
  padding: 100px 0;
  background: var(--light);
}

.food-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.food-category {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.food-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.food-category:hover img { transform: scale(1.06); }
.food-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
}
.food-category-overlay .cat-num {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.food-category-overlay h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.food-category-overlay p {
  font-size: 0.82rem;
  opacity: 0.8;
  font-family: 'Lato', sans-serif;
}

/* Steak info banner */
.steak-banner {
  background: var(--dark2);
  border-radius: 10px;
  padding: 40px;
  color: var(--white);
  display: flex;
  gap: 40px;
  align-items: center;
}
.steak-banner-icon {
  font-size: 4rem;
  flex-shrink: 0;
  color: var(--gold);
}
.steak-banner h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--gold-lt);
}
.steak-banner p { color: rgba(255,255,255,0.75); font-size: 0.98rem; }

/* ============================================
   ABOUT STRIP
   ============================================ */
#about-strip {
  padding: 100px 0;
  background: var(--white);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-strip-images {
  position: relative;
}
.about-main-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-main-img img { width: 100%; height: 380px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}
.about-badge strong { font-size: 1.4rem; font-family: 'Playfair Display', serif; }
.about-strip-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.about-strip-text .lead {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.about-strip-text p { margin-bottom: 16px; color: var(--text); }
.about-strip-text .btn { margin-top: 8px; }

/* ============================================
   VENUE GALLERY (HOME kep-0XX)
   ============================================ */
#venue-gallery {
  padding: 100px 0;
  background: var(--dark);
}
#venue-gallery .section-title h2 { color: var(--white); }
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.venue-grid .vg-item {
  overflow: hidden;
  border-radius: var(--radius);
}
.venue-grid .vg-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.venue-grid .vg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.venue-grid .vg-item img:hover { transform: scale(1.04); }
.venue-grid .vg-item.large img { height: 450px; }
.venue-grid .vg-item:not(.large) img { height: 215px; }

/* ============================================
   REVIEWS
   ============================================ */
#reviews {
  padding: 100px 0;
  background: var(--light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.review-text {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.8;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.review-author-info strong { display: block; color: var(--dark); }
.review-author-info span { font-size: 0.85rem; color: var(--gray); }
.review-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 4px; }

/* ============================================
   CTA BANNER
   ============================================ */
#cta-banner {
  padding: 80px 0;
  background: var(--gold);
  text-align: center;
}
#cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 12px;
}
#cta-banner p {
  color: rgba(26,26,26,0.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  text-decoration: none;
}
.cta-phone:hover { text-decoration: underline; }

/* ============================================
   KEPGALERIA PAGE
   ============================================ */
.page-hero {
  height: 340px;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
}
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 10px;
}
.page-hero-content .breadcrumb {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.page-hero-content .breadcrumb a { color: var(--gold-lt); }
.page-hero-content .breadcrumb a:hover { text-decoration: underline; }

.gallery-section {
  padding: 80px 0 100px;
  background: var(--white);
}
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid #ddd;
  background: none;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  font-family: 'Lato', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.gallery-item .g-overlay i { color: var(--white); font-size: 2rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: -40px; right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ============================================
   ROLUNK PAGE
   ============================================ */
.about-page {
  padding: 80px 0;
  background: var(--white);
}
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}
.about-page-text h2 { font-size: 2rem; margin-bottom: 20px; color: var(--dark); }
.about-page-text p { margin-bottom: 18px; color: var(--text); line-height: 1.9; }
.about-page-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-page-imgs img {
  border-radius: var(--radius);
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.about-page-imgs img:first-child {
  grid-column: span 2;
  height: 260px;
}

.event-section {
  background: var(--light);
  border-radius: 10px;
  padding: 60px 40px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.event-text h2 { font-size: 1.8rem; margin-bottom: 16px; }
.event-text p { color: var(--gray); margin-bottom: 20px; }

.reservation-section {
  background: var(--dark);
  border-radius: 10px;
  padding: 60px 40px;
  color: var(--white);
  text-align: center;
}
.reservation-section h2 { font-size: 2rem; margin-bottom: 14px; color: var(--gold-lt); }
.reservation-section p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 1.05rem; }
.reservation-phone {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  text-decoration: none;
  display: inline-block;
}
.reservation-phone:hover { text-decoration: underline; color: var(--gold-lt); }

/* ============================================
   KAPCSOLAT PAGE
   ============================================ */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 28px; color: var(--dark); }
.contact-detail {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--dark);
}
.contact-detail-text strong { display: block; margin-bottom: 4px; color: var(--dark); font-size: 1rem; }
.contact-detail-text span { color: var(--gray); font-size: 0.95rem; }

.hours-box {
  background: var(--light);
  border-radius: 10px;
  padding: 32px;
}
.hours-box h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--dark); }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0dbd0;
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.closed { color: #c0392b; }
.hours-row.closed span:last-child { font-weight: 700; }

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.partner-section {
  padding: 60px 0;
  background: var(--light);
  text-align: center;
}
.partner-section h3 { font-size: 1.3rem; margin-bottom: 28px; color: var(--dark); }
.partner-logos {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.partner-logos a {
  color: var(--gray);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.partner-logos a:hover { color: var(--gold); }
.partner-logos img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.partner-logos a:hover img { opacity: 1; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand img { height: 50px; margin-bottom: 18px; filter: brightness(0.9); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; }
.footer-col h4 {
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item a { color: inherit; text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.9rem; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark2);
  color: var(--white);
  padding: 18px 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform 0.4s;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { font-size: 0.9rem; opacity: 0.85; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns button {
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: 'Lato', sans-serif;
}
.cookie-accept { background: var(--gold); color: var(--dark); }
.cookie-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3) !important; }

/* ============================================
   BACK TO TOP
   ============================================ */
#back-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 800;
}
#back-top.visible { opacity: 1; visibility: visible; }
#back-top:hover { background: var(--gold-lt); transform: translateY(-3px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .food-categories { grid-template-columns: 1fr 1fr; }
  .venue-grid { grid-template-columns: 1fr 1fr; }
  .venue-grid .vg-item.large { grid-column: span 2; }
  .venue-grid .vg-item.large img { height: 350px; }
  .venue-grid .vg-item:not(.large) img { height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-page-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .event-section { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-menu li a { padding: 14px 24px; border-radius: 0; }
  .nav-toggle { display: flex; }

  .food-categories { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steak-banner { flex-direction: column; text-align: center; }
  .venue-grid { grid-template-columns: 1fr; }
  .venue-grid .vg-item.large { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-badge { right: 10px; bottom: -15px; }
  .about-page-imgs { grid-template-columns: 1fr; }
  .about-page-imgs img:first-child { grid-column: span 1; }
  #cookie-banner { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
}
