/* ============================================================
   Real Kebap — Custom Styles
   Works alongside Tailwind CSS CDN.
   ============================================================ */

/* ----------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   ---------------------------------------------------------- */
:root {
  --color-bg:           #EAE0E0;
  --color-surface:      #F5F0F0;
  --color-menu-card:    #F5F0F0;
  --color-accent:       #CC1D00;
  --color-accent-hover: #B9180A;
  --color-accent-warm:  #E5562A;
  --color-text:         #0D0B08;
  --color-text-muted:   #6B5E5E;
  --color-star:         #CC1D00;
  --color-success:      #16a34a;
  --color-error:        #CC1D00;
  --color-footer-bg:    #0D0B08;
  --color-footer-text:  #CBA09F;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-height: 72px;
  --transition-speed: 0.3s;
}

/* ----------------------------------------------------------
   2. Base / Reset helpers
   ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture overlay — subtle paper-like feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------------
   3. Accessibility
   ---------------------------------------------------------- */

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top var(--transition-speed);
}

.skip-link:focus {
  top: 0;
}

/* Focus-visible outlines */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* Remove default outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Minimum touch targets */
a,
button,
[role="button"],
input,
select,
textarea {
  min-height: 44px;
  min-width: 44px;
}

/* Allow inline links to shrink */
p a,
li a,
span a {
  min-height: auto;
  min-width: auto;
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ----------------------------------------------------------
   4. Brand Logo
   ---------------------------------------------------------- */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.nav-logo {
  width: 48px;
  height: auto;
  transition: transform var(--transition-speed);
}

.brand-logo:hover .nav-logo,
.brand-logo:focus-visible .nav-logo {
  transform: scale(1.05);
}

/* ----------------------------------------------------------
   5. Sticky Navigation
   ---------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  background: transparent;
  transition: background-color var(--transition-speed),
              box-shadow var(--transition-speed);
}

.site-nav.scrolled {
  background-color: rgba(245, 240, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--color-accent);
}

/* Nav text contrast: white on hero, dark when scrolled */
.site-nav .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  position: relative;
  transition: color var(--transition-speed);
  white-space: nowrap;
}

.site-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-speed) ease;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link:focus-visible::after {
  width: 100%;
}

.site-nav.scrolled .nav-link {
  color: var(--color-text);
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible {
  color: rgba(255, 255, 255, 0.9);
}

.site-nav.scrolled .nav-link:hover,
.site-nav.scrolled .nav-link:focus-visible {
  color: var(--color-accent);
}


/* Desktop nav list */
.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

/* ----------------------------------------------------------
   6. Hamburger / Mobile Menu
   ---------------------------------------------------------- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition-speed),
              opacity var(--transition-speed),
              background-color var(--transition-speed);
}

.hamburger span + span {
  margin-top: 6px;
}

.site-nav.scrolled .hamburger span {
  background: var(--color-text);
}

/* Hamburger open state */
body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.menu-open .hamburger span {
  background: #fff;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1005;
  background: rgba(13, 11, 8, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed),
              visibility var(--transition-speed);
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background-color var(--transition-speed);
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link:focus-visible {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ----------------------------------------------------------
   7. Hero Section
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 2rem 1rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 11, 8, 0.55) 0%,
    rgba(13, 11, 8, 0.35) 40%,
    rgba(13, 11, 8, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: #fff;
  margin: 0 0 0.25rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0 0 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ----------------------------------------------------------
   8. Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--transition-speed),
              color var(--transition-speed),
              border-color var(--transition-speed),
              transform 0.15s;
  line-height: 1.2;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background-color: #fff;
  color: var(--color-text);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ----------------------------------------------------------
   9. Section Styling
   ---------------------------------------------------------- */
.section {
  padding: 2.5rem 1rem;
}

@media (min-width: 640px) {
  .section {
    padding: 4rem 1.5rem;
  }
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 2rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border: none;
  border-radius: 2px;
  margin: 0 0 2rem;
}

/* ----------------------------------------------------------
   10. Gallery — Masonry
   ---------------------------------------------------------- */
.gallery-grid {
  column-count: 1;
  column-gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    column-count: 3;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--color-surface);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform var(--transition-speed),
              opacity var(--transition-speed);
}

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

/* First item large — spans full width on mobile, taller on desktop */
.gallery-item--featured {
  column-span: none; /* CSS columns don't support column-span:all reliably */
}

/* ----------------------------------------------------------
   11. Gallery Lightbox
   ---------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-speed),
              visibility var(--transition-speed);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-speed);
  backdrop-filter: blur(4px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Image counter */
.lightbox-counter {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Caption below image */
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-align: center;
  max-width: 80vw;
}

/* ----------------------------------------------------------
   12. Menu Section
   ---------------------------------------------------------- */
.menu-section {
  background-color: var(--color-menu-card);
}

/* Category tabs */
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 2rem;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex-shrink: 0;
  padding: 8px 20px;
  border: none;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--transition-speed),
              color var(--transition-speed);
}

.menu-tab:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--color-text);
}

.menu-tab.is-active {
  background: var(--color-accent);
  color: #fff;
}

/* Category panels */
.menu-category {
  display: none;
}

.menu-category.is-visible {
  display: block;
}

/* Red divider between categories (when all shown) */
.menu-category + .menu-category::before {
  display: none;
}

/* Menu item card */
.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.04);
}

.menu-item-thumb-placeholder {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 1.5rem;
}

.menu-item-body {
  flex: 1;
  min-width: 0;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.menu-item-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
}

.menu-item-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-accent);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ----------------------------------------------------------
   13. Testimonials / Reviews Strip
   ---------------------------------------------------------- */
.testimonials-container {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonials-arrow {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: 1.5px solid var(--color-mauve);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.testimonials-arrow:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: #fff;
}

.testimonials-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.testimonials-arrow--left { margin-right: 0.25rem; }
.testimonials-arrow--right { margin-left: 0.25rem; }

/* Hide arrows on mobile — peek hint is enough */
@media (max-width: 639px) {
  .testimonials-arrow {
    display: none;
  }
}

.testimonials-strip {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 1rem 1rem;
  flex: 1;
  min-width: 0;
}

/* Center cards when they all fit on screen */
@media (min-width: 640px) {
  .testimonials-strip {
    justify-content: center;
  }

  .testimonials-strip.is-scrollable {
    justify-content: flex-start;
  }
}

@media (max-width: 639px) {
  .testimonials-strip {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .testimonial-card {
    width: 75vw;
    max-width: 75vw;
  }
}

.testimonials-strip::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--color-surface);
  border-radius: 16px;
  padding: 1.75rem;
  scroll-snap-align: start;
  box-shadow: 0 2px 12px rgba(13, 11, 8, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.15;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-star {
  color: var(--color-star);
  font-size: 1.1rem;
}

.testimonial-star--empty {
  color: #d1d5db;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0 0 1rem;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0;
}

/* ----------------------------------------------------------
   14. Contact / Map Section
   ---------------------------------------------------------- */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #e5e7eb;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  .map-container {
    height: 400px;
  }
}

/* ----------------------------------------------------------
   15. (Cookie Consent Banner — removed)
   ---------------------------------------------------------- */

/* ----------------------------------------------------------
   16. Mobile Sticky CTA Bar
   ---------------------------------------------------------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1400;
  background: var(--color-surface);
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  gap: 0.75rem;
}


@media (max-width: 639px) {
  .mobile-cta-bar {
    display: flex;
  }
}

.mobile-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background-color var(--transition-speed);
}

.mobile-cta-btn--call {
  background: var(--color-accent);
  color: #fff;
}

.mobile-cta-btn--call:hover {
  background: var(--color-accent-hover);
}

.mobile-cta-btn--route {
  background: rgba(0, 0, 0, 0.06);
  color: var(--color-text);
}

.mobile-cta-btn--route:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------------------------
   17. Skeleton Loading
   ---------------------------------------------------------- */
.skeleton {
  background: linear-gradient(
    90deg,
    #e5e7eb 25%,
    #f3f4f6 50%,
    #e5e7eb 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 12px;
}

.skeleton-gallery {
  width: 100%;
  min-height: 200px;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Image fade-in after load */
.gallery-item img {
  opacity: 0;
  transition: opacity 0.4s ease, transform var(--transition-speed);
}

.gallery-item img.is-loaded {
  opacity: 1;
}

/* ----------------------------------------------------------
   18. Footer
   ---------------------------------------------------------- */
.site-footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 3rem 1.5rem 2rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

.site-footer a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.site-footer a:hover {
  color: var(--color-accent-warm);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ----------------------------------------------------------
   19. Empty State
   ---------------------------------------------------------- */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--color-text-muted);
}

.empty-state-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.empty-state-text {
  font-size: 0.95rem;
}

/* ----------------------------------------------------------
   20. Scroll Indicator
   ---------------------------------------------------------- */
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.scroll-indicator {
  animation: scroll-bounce 1.5s ease-in-out 3;
}

/* ----------------------------------------------------------
   21. Utility classes
   ---------------------------------------------------------- */
.text-accent {
  color: var(--color-accent);
}

.bg-menu-card {
  background-color: var(--color-menu-card);
}

/* Smooth scrollbar for horizontal scrolling containers */
.scroll-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scroll-x::-webkit-scrollbar {
  display: none;
}

/* ----------------------------------------------------------
   21. Toast notifications
   ---------------------------------------------------------- */
.toast {
  position: fixed;
  top: calc(var(--nav-height) + 1rem);
  right: 1rem;
  z-index: 3000;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateX(120%);
  transition: transform 0.4s ease;
}

.toast.is-visible {
  transform: translateX(0);
}

.toast--success {
  background: var(--color-success);
}

.toast--error {
  background: var(--color-error);
}

/* ----------------------------------------------------------
   22. Opening hours table
   ---------------------------------------------------------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-text-muted);
}

/* ----------------------------------------------------------
   23. Print styles
   ---------------------------------------------------------- */
@media print {
  .site-nav,
  .mobile-cta-bar,
  .lightbox {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem;
  }

  .section {
    break-inside: avoid;
  }

  body {
    color: #000;
    background: #fff;
  }
}

/* ----------------------------------------------------------
   24. Hero Logo
   ---------------------------------------------------------- */
.hero-logo {
  width: clamp(160px, 30vw, 260px);
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.4));
  animation: hero-logo-entrance 0.8s ease-out both;
}

@keyframes hero-logo-entrance {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* ----------------------------------------------------------
   25. Scroll Reveal Animations
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
