/* ============================================
   SATORI RESTAURANT - PREMIUM DARK THEME
   (Fixed Mobile Scroll & Animations)
   ============================================ */

:root {
  /* Colors */
  --background: hsl(30, 10%, 6%);
  --background-alt: hsl(30, 8%, 9%);
  --background-card: hsl(30, 8%, 11%);
  --foreground: hsl(40, 20%, 94%);
  --foreground-muted: hsl(40, 10%, 70%);

  /* Brand */
  --primary: hsl(38, 70%, 50%);
  --primary-dark: hsl(38, 70%, 40%);
  --border: hsla(38, 30%, 80%, 0.1);

  /* Fonts & Spacing */
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Work Sans", sans-serif;

  /* Responsive Padding Logic */
  --section-padding: clamp(3.5rem, 8vw, 8rem);
  --container-max: 80rem;

  /* Transitions */
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* STOP SIDE SCROLL */
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.7;
  overflow-x: hidden; /* DOUBLE SAFETY */
  width: 100%;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-medium);
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
  width: 100%; /* Ensure container doesn't overflow */
}
.text-accent { color: var(--primary); }
.italic { font-style: italic; font-weight: 400; }

.divider {
  width: 150px;
  height: 1px;
  background: var(--primary);
  margin: 2rem auto;
  opacity: 0.7;
  position: relative;
  overflow: hidden;
}
.divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}
.divider.center { margin: 2rem auto; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-medium);
  width: 100%;
  max-width: 100vw; /* Hard stop for overflow */
}
.nav.scrolled {
  padding: 0.75rem 0;
  background-color: rgba(15, 12, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  transition: transform var(--transition-medium);
}
.nav-logo:hover {
  transform: scale(1.05);
  color: var(--primary);
}
.nav-links {
  display: none;
  gap: 3rem;
}
.nav-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--foreground-muted);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-medium);
}
.nav-link:hover { color: #fff; }
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: width 0.4s ease;
}
.nav-link:hover::after { width: 100%; }

/* Mobile Menu Toggle */
.nav-toggle {
  display: flex;
  padding: 0.5rem;
  z-index: 1001;
  transition: transform var(--transition-medium);
}
.nav-toggle:hover { transform: scale(1.1); }
.hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background 0.3s;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Mobile Menu Overlay */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}
.nav-links.mobile-open .nav-link {
  font-size: 1.5rem;
  opacity: 0;
  animation: slideInDown 0.5s ease forwards;
}
.nav-links.mobile-open .nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-links.mobile-open .nav-link:nth-child(2) { animation-delay: 0.2s; }
.nav-links.mobile-open .nav-link:nth-child(3) { animation-delay: 0.3s; }
.nav-links.mobile-open .nav-link:nth-child(4) { animation-delay: 0.4s; }
.nav-links.mobile-open .nav-link:nth-child(5) { animation-delay: 0.5s; }

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  animation: zoom 20s infinite alternate;
}
@keyframes zoom {
  to { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(15, 12, 10, 1)
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 60rem;
  padding: 0 1.5rem;
  width: 100%;
}
.hero-location {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hero-title {
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}
.hero-description {
  color: var(--foreground-muted);
  max-width: 34rem;
  margin: 0 auto 3rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
  animation: bounce 2s infinite;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@keyframes scroll {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 24px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn:hover::before { width: 300px; height: 300px; }

.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.5);
}
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--primary);
  background: transparent;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

/* Sections */
.section { padding: var(--section-padding) 0; }
.section-alt { background-color: var(--background-alt); }
.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}
.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
  text-align: center;
}
.section-description {
  color: var(--foreground-muted);
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.1rem;
  text-align: center;
}

/* About */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
.about-image { position: relative; }
.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.about-image-wrapper img {
  width: 100%;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.about-image:hover img { transform: scale(1.08); }
.about-image-accent {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--primary);
  opacity: 0.5;
  z-index: -1;
  transition: all 0.6s;
}
.about-image:hover .about-image-accent {
  top: 30px;
  right: 30px;
  opacity: 0.8;
}
.about-text { margin-bottom: 1.5rem; line-height: 1.8; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; transition: transform var(--transition-medium); }
.stat:hover { transform: translateY(-5px); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  display: block;
  transition: color var(--transition-medium);
}
.stat:hover .stat-number {
  color: #fff;
  text-shadow: 0 0 20px var(--primary);
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground-muted);
}

/* Menu */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.menu-tab {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground-muted);
  padding: 0.75rem 1rem;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}
.menu-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-tab:hover { color: #fff; }
.menu-tab.active { color: var(--primary); }
.menu-tab.active::after { width: 100%; }

.menu-layout-wrapper {
  display: grid;
  gap: 3rem;
}
.menu-image-frame {
  overflow: hidden;
  border-radius: 2px;
  height: 100%;
  min-height: 300px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.menu-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.6s ease;
}
.menu-image-frame:hover img { transform: scale(1.05); }

.menu-category { display: none; animation: fadeIn 0.5s ease; }
.menu-category.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-medium);
  cursor: pointer;
}
.menu-item:hover {
  padding-left: 1rem;
  border-color: var(--primary);
}
.menu-item-info { max-width: 80%; }
.menu-item-name {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}
.menu-item:hover .menu-item-name { color: var(--primary); }
.menu-item-desc {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  transition: color 0.3s;
}
.menu-item:hover .menu-item-desc { color: var(--foreground); }
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s;
}
.menu-item:hover .menu-item-price { transform: scale(1.1); }
.menu-note {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.15) rotate(2deg); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(218, 165, 32, 0.8),
    rgba(0, 0, 0, 0.8)
  );
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* Testimonials */
.testimonials-grid { display: grid; gap: 2rem; }
.testimonial-card {
  background: linear-gradient(
    145deg,
    var(--background-card),
    var(--background-alt)
  );
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(218, 165, 32, 0.1),
    transparent
  );
  transition: left 0.6s;
}
.testimonial-card:hover::before { left: 100%; }
.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(218, 165, 32, 0.2);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--primary);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: -1rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.6;
}
.testimonial-rating {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  transition: transform 0.3s;
}
.testimonial-card:hover .testimonial-avatar { transform: scale(1.1); }
.testimonial-info h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.testimonial-info span {
  font-size: 0.8rem;
  color: var(--foreground-muted);
}

/* Events */
.events-grid { display: grid; gap: 2rem; }
.event-card {
  background: var(--background-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.event-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.4s;
}
.event-card:hover .event-image::after { opacity: 1; }
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-card:hover .event-image img { transform: scale(1.15); }
.event-content { padding: 1.5rem; text-align: center; }
.event-content h3 { margin-bottom: 0.75rem; transition: color 0.3s; }
.event-card:hover .event-content h3 { color: var(--primary); }
.event-content p { color: var(--foreground-muted); margin-bottom: 1rem; }
.event-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.event-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s;
}
.event-link:hover::after { width: 100%; }

/* Reservation */
.reservation-section {
  position: relative;
  padding: 8rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reservation-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: slowZoom 30s infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.reservation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.reservation-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}
.reservation-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Instagram */
.instagram-section { background-color: var(--background); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  border-radius: 2px;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(30%);
}
.instagram-item:hover img {
  transform: scale(1.2) rotate(3deg);
  filter: grayscale(0%);
}
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(218, 165, 32, 0.8);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  transition: opacity 0.3s;
}
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-cta {
  background: var(--background-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}
.instagram-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.instagram-follow {
  color: var(--foreground-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  transition: color 0.3s;
}
.instagram-cta:hover .instagram-follow { color: #000; }

/* Contact */
.contact-modern-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.contact-details-card {
  background: var(--background-card);
  padding: 3rem 2rem;
}
.contact-header { margin-bottom: 3rem; }
.contact-header h3 { margin-bottom: 0.5rem; }
.contact-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  transition: transform 0.3s;
}
.contact-row:hover { transform: translateX(10px); }
.icon-box {
  color: var(--primary);
  margin-top: 5px;
  transition: transform 0.3s;
}
.contact-row:hover .icon-box { transform: scale(1.2); }
.contact-row h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground-muted);
  margin-bottom: 0.5rem;
}
.contact-row p { font-size: 1.1rem; color: #fff; }
.link-hover { transition: color 0.3s; }
.link-hover:hover { color: var(--primary); }
.contact-map-wrapper {
  min-height: 400px;
  filter: grayscale(100%);
  transition: filter 0.5s;
}
.contact-map-wrapper:hover { filter: grayscale(0%); }

/* Footer */
.footer {
  background: #050505;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.footer-logo:hover { color: var(--primary); }
.footer-desc { color: var(--foreground-muted); line-height: 1.8; }
.footer-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a,
.footer-links li {
  color: var(--foreground-muted);
  font-size: 0.95rem;
  transition: all 0.3s;
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social a:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: translateY(-5px) rotate(360deg);
}
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

/* ============================================
   RESPONSIVE & ANIMATION FIXES (Merged)
   ============================================ */

/* 1. Mobile & Tablet (Small Screens) */
@media (max-width: 767px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn { width: 100%; }
  
  .about-stats {
    gap: 0.5rem;
  }
  .stat-number { font-size: 1.8rem; }
  
  .menu-image-frame {
    height: 250px;
    min-height: auto;
    order: -1;
  }
  
  .contact-modern-grid {
    grid-template-columns: 1fr;
    border: none;
  }
  .contact-details-card { padding: 2rem 1.5rem; }
  
  .footer { text-align: center; }
  .footer-social { justify-content: center; }

  /* CRITICAL FIX: Prevent horizontal animations causing scroll on mobile */
  .reveal-left, .reveal-right {
    transform: translateY(30px) !important;
  }
}

/* 2. Tablet & Desktop (min-width: 768px) */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .menu-layout-wrapper {
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
  }
  .menu-image-frame { height: 400px; }
  
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.span-2 {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  
  .instagram-grid { grid-template-columns: repeat(6, 1fr); }
  
  .contact-modern-grid { grid-template-columns: 1.2fr 1fr; }
  
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* 3. Large Desktop */
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .events-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Scroll Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal { transform: translateY(50px); }

/* Animation Key: On desktop, these slide. On mobile, the media query above overrides this. */
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}