/* =========================================
   HELLO SHABU — Main Stylesheet
   ========================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&family=Oswald:wght@400;500;600&family=Dancing+Script:wght@700&display=swap');

/* --- CSS Variables --- */
:root {
  --clr-black: #0a0a0a;
  --clr-dark: #111111;
  --clr-red: #c0392b;
  --clr-red-hover: #a93226;
  --clr-gold: #d4a843;
  --clr-white: #ffffff;
  --clr-offwhite: #f5f5f0;
  --clr-gray: #888888;
  --clr-lightgray: #cccccc;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --font-accent: 'Oswald', sans-serif;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--clr-black);
  color: var(--clr-white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* =========================================
   HEADER / NAV
   ========================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--clr-white);
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--clr-gold);
  font-weight: 400;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-lightgray);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--clr-gold);
}

/* Social icons */
.nav-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-social a {
  font-size: 1.15rem;
  color: var(--clr-lightgray);
  transition: color var(--transition), transform var(--transition);
}

.nav-social a:hover {
  color: var(--clr-gold);
  transform: translateY(-2px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  transition: var(--transition);
}

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_full.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(0, 0, 0, 0.78) 40%,
      rgba(0, 0, 0, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  max-width: 560px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 3px;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--clr-red);
  color: var(--clr-white);
}

.btn-primary:hover {
  background: var(--clr-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

/* Round sticker logo on hero right */
.hero-sticker {
  flex-shrink: 0;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

.hero-sticker img {
  width: clamp(160px, 18vw, 240px);
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  animation: float 4s ease-in-out infinite;
}

/* =========================================
   INFO BAR
   ========================================= */
#info-bar {
  background: var(--clr-dark);
  border-top: 1px solid rgba(212, 168, 67, 0.3);
  border-bottom: 1px solid rgba(212, 168, 67, 0.3);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--clr-lightgray);
}

.info-item i {
  color: var(--clr-gold);
  font-size: 1rem;
}

.info-item a {
  color: var(--clr-lightgray);
  transition: color var(--transition);
}

.info-item a:hover {
  color: var(--clr-gold);
}

/* =========================================
   SECTION COMMONS
   ========================================= */
.section {
  padding: 90px 40px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.section-line {
  width: 50px;
  height: 3px;
  background: var(--clr-gold);
  margin-bottom: 28px;
}

/* =========================================
   GOOGLE REVIEWS
   ========================================= */
#reviews-teaser {
  background: #111;
  padding: 48px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-inner {
  max-width: 700px;
  margin: 0 auto;
}

.reviews-stars {
  font-size: 1.6rem;
  color: #fbbc04;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.reviews-text {
  font-size: 0.95rem;
  color: var(--clr-gray);
  margin-bottom: 22px;
  font-family: var(--font-body);
}

/* Google logo lockup: big G + "Google" wordmark + "Restaurant Reviews" */
.reviews-google-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.g-logo-icon {
  height: 80px;
  width: auto;
  flex-shrink: 0;
}

.g-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

/* "Google" wordmark → inverted white on dark bg */
.g-wordmark {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* "Restaurant Reviews" — large & bold like the original */
.g-reviews-title {
  font-family: 'Lato', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1.1;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
#about {
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/bg_about.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.7);
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(10, 5, 0, 0.75));
}

.about-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.8s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212, 168, 67, 0.3);
  border-radius: 4px;
  pointer-events: none;
}

.about-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.feature-tag {
  padding: 6px 16px;
  border: 1px solid rgba(212, 168, 67, 0.5);
  border-radius: 30px;
  font-size: 0.78rem;
  font-family: var(--font-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

/* =========================================
   GALLERY — 2-Row Infinite Marquee
   ========================================= */
#gallery {
  background: #0d0d0d;
}

/* Hide overflow on the whole section */
.marquee-row {
  overflow: hidden;
  width: 100%;
  /* Add a small gap between rows */
  margin-bottom: 6px;
}

.marquee-row:last-child {
  margin-bottom: 0;
}

/* The inner wrapper holds multiple .marquee-set copies side by side */
.marquee-inner {
  display: flex;
  width: max-content;
}

/* Row 1: scrolls left (negative translateX over time) */
#marquee-row-1 .marquee-inner {
  animation: marquee-left 40s linear infinite;
}

#marquee-row-1 .marquee-inner:hover {
  animation-play-state: paused;
}

/* Row 2: scrolls right (positive translateX over time) */
#marquee-row-2 .marquee-inner {
  animation: marquee-right 44s linear infinite;
}

#marquee-row-2 .marquee-inner:hover {
  animation-play-state: paused;
}

/* One set of images */
.marquee-set {
  display: flex;
  flex-shrink: 0;
  gap: 6px;
  padding-right: 6px;
  /* matches gap so loop seams perfectly */
}

/* Individual image card */
.marquee-item {
  flex-shrink: 0;
  width: 220px;
  height: 200px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  display: block;
}

.marquee-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.12);
}

/* Keyframes */
@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }

  /* moves one full set-width (1 of 3 copies) */
}

@keyframes marquee-right {
  0% {
    transform: translateX(-33.333%);
  }

  100% {
    transform: translateX(0);
  }
}

/* =========================================
   YELP REVIEWS CAROUSEL
   ========================================= */
#yelp-reviews {
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Re-use testimonial blurred background */
#yelp-reviews .testimonial-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/bg_review_medium.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.22);
  transform: scale(1.05);
}

#yelp-reviews .section-inner {
  position: relative;
  z-index: 2;
}

/* --- Yelp logo lockup --- */
.yelp-header {
  margin-bottom: 40px;
}

.yelp-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.yelp-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(255, 26, 26, 0.5));
}

.yelp-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.yelp-wordmark {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.yelp-reviews-title {
  font-family: 'Lato', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--clr-white);
  white-space: nowrap;
  line-height: 1.1;
}

/* --- Carousel container --- */
.yelp-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 280px;
}

/* Slides */
.yelp-slide {
  display: none;
  animation: yelpFadeIn 0.5s ease;
}

.yelp-slide.active {
  display: block;
}

@keyframes yelpFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stars */
.yelp-stars {
  margin-bottom: 18px;
}

.yelp-star {
  font-size: 1.6rem;
  color: #FF1A1A;
  letter-spacing: 3px;
}

/* Quote text */
.yelp-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
  quotes: none;
}

/* Reviewer */
.yelp-reviewer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.yelp-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FF1A1A;
  color: #fff;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yelp-reviewer-info {
  text-align: left;
}

.yelp-reviewer-name {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.05em;
}

.yelp-reviewer-date {
  font-size: 0.8rem;
  color: var(--clr-gray);
  margin-top: 2px;
}

/* Dots */
.yelp-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.yelp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.yelp-dot.active {
  background: #FF1A1A;
  transform: scale(1.25);
}

.yelp-dot:hover {
  background: rgba(255, 26, 26, 0.6);
}



.testimonial-stars {
  font-size: 1.1rem;
  color: #fbbc04;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

/* =========================================
   ABOUT US BANNER (3-column)
   ========================================= */

#about-banner {
  display: grid;
  grid-template-columns: 3fr 4fr 3fr;
  align-items: stretch;
  overflow: hidden;
}

/* ---------- Image columns ---------- */
.ab-col--left,
.ab-col--right {
  height: 480px;
}

.ab-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.ab-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ab-img:hover img {
  transform: scale(1.05);
}

/* ---------- Center column ---------- */
.ab-col--center {
  background: url('../images/bg_review_xs.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 36px;
  position: relative;
}

/* dark overlay to keep text readable */
.ab-col--center::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  pointer-events: none;
}

.ab-center-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 380px;
}

/* "Hello Shabu" — script / cursive */
.ab-script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

/* "A Little About Us" — bold sans */
.ab-heading {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
}

/* Description */
.ab-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 30px;
  text-align: center;
}

/* "Menu" button */
.ab-menu-btn {
  display: inline-block;
  padding: 14px 48px;
  background: #b91c1c;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-menu-btn:hover {
  background: #991b1b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 28, 28, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  #about-banner {
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto 280px;
  }

  .ab-col--left,
  .ab-col--right {
    flex-direction: row;
  }

  .ab-img--top {
    border-bottom: none;
    border-right: 2px solid rgba(0, 0, 0, 0.4);
  }
}

/* =========================================
   INSTAGRAM

   ========================================= */
#instagram {
  background: #0d0d0d;
}

/* Header row: icon + text + Follow button */
.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.insta-logo-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.insta-icon-svg {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 18px;
}

.insta-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.insta-handle {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
}

.insta-follow-text {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gray);
}

/* Grid: 4 columns × 3 rows */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  display: block;
  background: #1a1a1a;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.insta-overlay i {
  font-size: 2rem;
  color: var(--clr-white);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* Play button circle (video items) */
.insta-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.insta-play-btn svg {
  width: 22px;
  height: 22px;
  fill: #111;
  margin-left: 3px;
  /* optical center */
}

/* "Video" badge — always visible (top-right corner) */
.insta-video-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.65rem;
  font-family: var(--font-accent);
  letter-spacing: 0.08em;
  padding: 3px 7px 3px 5px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}



/* =========================================
   FOOTER
   ========================================= */
#site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(212, 168, 67, 0.25);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 40px 50px;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col address {
  font-size: 0.9rem;
  color: var(--clr-gray);
  line-height: 1.9;
  font-style: normal;
}

.footer-col a {
  color: var(--clr-gray);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--clr-gold);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--clr-gray);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-black);
  transform: translateY(-2px);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--clr-gray);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hours-list li span {
  color: var(--clr-lightgray);
}

.footer-email-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 24px;
  border: 1px solid rgba(212, 168, 67, 0.5);
  border-radius: 3px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  transition: all var(--transition);
}

.footer-email-btn:hover {
  background: var(--clr-gold);
  color: var(--clr-black);
}

.footer-bottom {
  text-align: center;
  padding: 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.page-hero {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/bg_about.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 40px;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-family: var(--font-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 7px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  color: var(--clr-white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  margin-bottom: 22px;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.contact-info-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 36px;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--clr-white);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
  color: var(--clr-gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-info-item i {
  color: var(--clr-gold);
  font-size: 1.05rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  #site-header {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }

  .hero-sticker {
    align-self: center;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-img-wrap {
    display: none;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 50px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  #info-bar {
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 60px 20px;
  }
}

@media (max-width: 540px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    width: 220px;
    height: 260px;
  }
}

/* =========================================
   MENU LIGHTBOX POPUP
   ========================================= */
.menu-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: lbFadeIn 0.25s ease;
}

.menu-lightbox.active {
  display: flex;
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.menu-lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 92vh;
  animation: lbScaleIn 0.28s cubic-bezier(0.34, 1.3, 0.64, 1);
}

@keyframes lbScaleIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.menu-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  object-fit: contain;
}

.menu-lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #b91c1c;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 1;
}

.menu-lightbox__close:hover {
  background: #991b1b;
  transform: scale(1.12);
}