/* ===========================
   Roza Rehovot — Restaurant Website
   =========================== */

/* --- CSS Variables --- */
:root {
  /* — Backgrounds — */
  --bg-primary: #293621;
  --bg-secondary: #1E2A17;
  --bg-card: #243019;
  --bg-darkest: #151E10;

  /* — Gold accent — */
  --gold: #C29355;
  --gold-light: #D4A96A;
  --gold-glow: rgba(194, 147, 85, 0.3);
  --gold-dark: #A67B3D;

  /* — CTA — */
  --cta: #C29355;
  --cta-hover: #D4A96A;
  --red-cta: #C29355;
  --red-hover: #D4A96A;

  /* — Text — */
  --text-primary: #F4F6F8;
  --text-secondary: #C5C9CE;
  --text-muted: #7A8570;

  /* — Dividers & borders — */
  --divider: rgba(194, 147, 85, 0.25);
  --border-elegant: rgba(194, 147, 85, 0.4);

  --font-body: 'Heebo', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  direction: rtl;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.section-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

/* Section title underline animation */
.section-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 1s ease;
}

.section-title.visible::after {
  width: 100%;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* Elegant gold border frame — inspired by logo */
.elegant-frame {
  position: relative;
}

.elegant-frame::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--border-elegant);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ===========================
   PAGE LOADER (10)
   =========================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  clip-path: circle(150% at 50% 50%);
}

.page-loader.loaded {
  clip-path: circle(0% at 50% 50%);
  pointer-events: none;
}

.page-loader__logo {
  opacity: 0;
  animation: loaderLogoIn 0.6s ease 0.2s forwards;
}

.page-loader__logo img {
  height: 120px;
  width: auto;
}

@keyframes loaderLogoIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* ===========================
   SCROLL PROGRESS BAR (14)
   =========================== */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  z-index: 1100;
  background: transparent;
  pointer-events: none;
}

.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to left, var(--gold), var(--gold-dark));
  transition: width 0.05s linear;
  will-change: width;
}

/* ===========================
   CURSOR GLOW (3) — Desktop only
   =========================== */
.cursor-glow {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 147, 85, 0.4), transparent 70%);
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: transform 0.15s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}

.cursor-glow.active {
  opacity: 1;
}

.cursor-glow.hover {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(194, 147, 85, 0.6), transparent 70%);
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  filter: blur(0);
}

/* About: slide-in with rotation */
.animate-on-scroll.fade-in-right {
  transform: translateX(50px) rotate(1deg);
}

.animate-on-scroll.fade-in-right.visible {
  transform: translateX(0) rotate(0deg);
}

.animate-on-scroll.fade-in-left {
  transform: translateX(-50px) rotate(-2deg);
}

.animate-on-scroll.fade-in-left.visible {
  transform: translateX(0) rotate(0deg);
}

/* Events: focus-in effect */
.animate-on-scroll.focus-in {
  filter: blur(10px);
  transform: scale(0.95);
}

.animate-on-scroll.focus-in.visible {
  filter: blur(0);
  transform: scale(1);
}

/* Gallery: scale-up reveal */
.animate-on-scroll.clip-reveal {
  transform: scale(0.85);
  opacity: 0;
}

.animate-on-scroll.clip-reveal.visible {
  transform: scale(1);
  opacity: 1;
}

/* Contact: staggered slide-up */
.contact__field,
.contact__submit {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease;
}

.contact__form.visible .contact__field,
.contact__form.visible .contact__submit {
  opacity: 1;
  transform: translateY(0);
}

.contact__form.visible .contact__field:nth-child(1) { transition-delay: 0.1s; }
.contact__form.visible .contact__field:nth-child(2) { transition-delay: 0.2s; }
.contact__form.visible .contact__field:nth-child(3) { transition-delay: 0.3s; }
.contact__form.visible .contact__submit { transition-delay: 0.4s; }

/* Stagger delays for gallery */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.4s; }
.stagger-9 { transition-delay: 0.45s; }
.stagger-10 { transition-delay: 0.5s; }
.stagger-11 { transition-delay: 0.55s; }
.stagger-12 { transition-delay: 0.6s; }

/* ===========================
   SECTION DIVIDERS (4)
   =========================== */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.section-divider__line {
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 1.2s ease;
  box-shadow: 0 0 0 rgba(194, 147, 85, 0);
}

.section-divider__line.visible {
  width: 80px;
  animation: dividerGlow 2s ease infinite;
}

@keyframes dividerGlow {
  0%, 100% { box-shadow: 0 0 8px var(--gold-glow); }
  50% { box-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(194, 147, 85, 0.15); }
}

/* --- Keyframes --- */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
  from { width: 0; }
  to { width: 80px; }
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(41, 54, 33, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(41, 54, 33, 0); }
  100% { box-shadow: 0 0 0 0 rgba(41, 54, 33, 0); }
}

@keyframes waHeartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.12); }
  30% { transform: scale(1); }
  45% { transform: scale(1.08); }
  60% { transform: scale(1); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(10px) translateX(-50%); }
}

/* Ken Burns (1) */
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-1%, -1%); }
}

/* ROZA shimmer (7) */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Floating particles (6) */
@keyframes floatUp1 {
  0% { transform: translateY(100vh) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 0.2; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-20vh) translateX(30px) scale(0.5); opacity: 0; }
}

@keyframes floatUp2 {
  0% { transform: translateY(100vh) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 0.25; }
  90% { opacity: 0.1; }
  100% { transform: translateY(-20vh) translateX(-20px) scale(0.7); opacity: 0; }
}

@keyframes floatUp3 {
  0% { transform: translateY(100vh) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-20vh) translateX(15px) scale(0.6); opacity: 0; }
}

/* Mouse wheel scroll (8) */
@keyframes mouseWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* Ripple (9) */
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ===========================
   FLOATING PARTICLES (6)
   =========================== */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(2px);
  will-change: transform, opacity;
}

.particle:nth-child(1) {
  width: 8px; height: 8px;
  right: 15%; bottom: -10%;
  animation: floatUp1 22s linear infinite;
}

.particle:nth-child(2) {
  width: 12px; height: 12px;
  right: 45%; bottom: -10%;
  animation: floatUp2 28s linear infinite 3s;
}

.particle:nth-child(3) {
  width: 10px; height: 10px;
  right: 70%; bottom: -10%;
  animation: floatUp3 25s linear infinite 7s;
}

.particle:nth-child(4) {
  width: 15px; height: 15px;
  right: 30%; bottom: -10%;
  animation: floatUp1 30s linear infinite 12s;
}

.particle:nth-child(5) {
  width: 9px; height: 9px;
  right: 85%; bottom: -10%;
  animation: floatUp2 20s linear infinite 5s;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: rgba(41, 54, 33, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 100px;
  width: auto;
}

.header.scrolled .header__logo img {
  height: 80px;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 2rem;
}

.header__nav-link {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-primary);
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--gold);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__cta {
  display: none;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
  position: relative;
  overflow: hidden;
}

.header__cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
  box-shadow: 0 0 20px var(--gold-glow);
}

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

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1001;
}

.hamburger__line {
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(30, 42, 23, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__link {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.mobile-menu__link:hover {
  color: var(--gold);
}

.mobile-menu__cta {
  padding: 0.7rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1rem;
  border-radius: 4px;
  margin-top: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-menu__cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  will-change: transform, opacity;
}

.hero__slide.active {
  opacity: 1;
  animation: kenBurns 8s ease forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(41, 54, 33, 0.2), rgba(21, 30, 16, 0.55));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  will-change: transform;
}

/* ROZA shimmer text (7) */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-light) 25%,
    #fff 50%,
    var(--gold-light) 75%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroFadeIn 1.2s ease forwards, shimmer 4s linear 2s infinite;
  opacity: 0;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-primary);
  margin-top: 0.8rem;
  animation: heroFadeIn 1.2s ease 0.3s forwards;
  opacity: 0;
}

/* Typed text line (15) */
.hero__typed-wrapper {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold-light);
  min-height: 2em;
  animation: heroFadeIn 1.2s ease 0.6s forwards;
  opacity: 0;
}

.hero__typed-text {
  border-left: 2px solid var(--gold);
  padding-left: 4px;
  animation: cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { border-color: var(--gold); }
  50% { border-color: transparent; }
}

.hero__line {
  width: 0;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto 0;
  animation: lineGrow 1s ease 0.8s forwards;
}

/* Scroll indicator — mouse icon (8) */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-secondary);
  animation: scrollBounce 2.5s ease infinite;
  transition: opacity 0.3s ease;
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold-light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: mouseWheel 1.5s ease infinite;
}

/* ===========================
   ABOUT
   =========================== */
.about {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.about__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about__image {
  order: -1;
}

.about__image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 30px var(--gold-glow);
  will-change: transform;
}

.about__text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.9;
}

/* ===========================
   EVENTS
   =========================== */
.events {
  padding: 6rem 0;
  position: relative;
  background: url('https://lh3.googleusercontent.com/d/12xV5pbtHrS4L718m6qNZMJp0DHqMebv4=w1920') center/cover no-repeat fixed;
}

.events__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 23, 0.8);
}

.events__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.events__text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* ===========================
   BUTTONS — Micro-interactions (9)
   =========================== */
.btn-cta {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background: var(--cta);
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--gold-glow);
}

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

/* Ripple element */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
  padding: 6rem 0;
  background: var(--bg-secondary);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(194, 147, 85, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(194, 147, 85, 0.02) 0%, transparent 50%);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 1rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Gallery hover overlay — gradient from bottom (5) */
.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 30, 16, 0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay svg {
  width: 30px;
  height: 30px;
  stroke: var(--text-primary);
  fill: none;
  stroke-width: 2;
  margin-bottom: 0.5rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery__item:hover .gallery__item-overlay svg {
  transform: translateY(0);
}

.gallery__item-overlay-text {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 400;
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.4s ease 0.05s, opacity 0.4s ease 0.05s;
}

.gallery__item:hover .gallery__item-overlay-text {
  transform: translateY(0);
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(21, 30, 16, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox__img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: var(--text-primary);
  font-size: 2rem;
  padding: 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox__close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-primary);
  font-size: 2.5rem;
  padding: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox__nav:hover {
  color: var(--gold);
}

.lightbox__nav--prev {
  right: 1.5rem;
}

.lightbox__nav--prev:hover {
  transform: translateY(-50%) translateX(3px);
}

.lightbox__nav--next {
  left: 1.5rem;
}

.lightbox__nav--next:hover {
  transform: translateY(-50%) translateX(-3px);
}

/* ===========================
   HOURS & LOCATION
   =========================== */
.hours-location {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.hours-location__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Counter stats (16) */
.hours__counters {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.counter-item {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.counter-item__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.counter-item__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

.hours__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hours__table {
  width: 100%;
  border-collapse: collapse;
}

.hours__table tr {
  border-bottom: 1px solid rgba(194, 147, 85, 0.12);
}

.hours__table td {
  padding: 0.75rem 0;
  font-size: 1rem;
}

.hours__table td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.hours__table td:last-child {
  color: var(--text-secondary);
  text-align: left;
}

.location__map {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  border: none;
  filter: grayscale(0.5) brightness(0.85) sepia(0.15) hue-rotate(60deg);
  margin-bottom: 1.5rem;
}

.location__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--gold);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px var(--gold-glow);
}

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

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--gold-glow);
}

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

.btn-gold svg,
.btn-gold-outline svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: 6rem 0;
  background: var(--bg-secondary);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(194, 147, 85, 0.04) 0%, transparent 60%);
}

.contact__form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__field {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 0.2rem;
  outline: none;
  width: 100%;
}

.contact__field:focus {
  border-color: var(--gold-light);
}

.contact__field::placeholder {
  color: var(--text-muted);
}

textarea.contact__field {
  resize: vertical;
  min-height: 120px;
}

.contact__submit {
  align-self: flex-start;
  padding: 0.8rem 2.5rem;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact__submit:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px var(--gold-glow);
}

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

.contact__success {
  display: none;
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.contact__success.show {
  display: block;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-darkest);
  padding: 60px 0 30px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer__logo img {
  height: 90px;
  width: auto;
}

.footer__address {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  color: var(--text-secondary);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__social a:hover {
  color: var(--gold);
  transform: scale(1.2);
}

.footer__social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  margin-bottom: 1.5rem;
}

.footer__nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
  color: var(--gold);
}

/* ===========================
   WHATSAPP FLOATING BUTTON — Heartbeat (9)
   =========================== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #293621;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(41, 54, 33, 0.4);
  animation: waPulse 2s infinite, waHeartbeat 3s ease-in-out infinite;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.whatsapp-btn.visible {
  opacity: 1;
  visibility: visible;
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-btn__tooltip {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-btn__tooltip {
  opacity: 1;
  visibility: visible;
}

/* ===========================
   LEGAL PAGES (Privacy / Accessibility)
   =========================== */
.legal-page {
  padding: 8rem 0 4rem;
  background: var(--bg-primary);
}

.legal-page__content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page__content h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.legal-page__content h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.legal-page__content p,
.legal-page__content li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.legal-page__content ul {
  padding-right: 1.5rem;
  list-style: disc;
}

.legal-page__content .gold-line {
  margin-bottom: 2.5rem;
}

/* ===========================
   RESPONSIVE — Tablet (768px+)
   =========================== */
@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    flex-direction: row;
    align-items: center;
  }

  .about__text {
    flex: 0 0 55%;
  }

  .about__image {
    flex: 0 0 45%;
    order: 0;
  }

  .hours-location__grid {
    flex-direction: row;
  }

  .hours-location__grid > * {
    flex: 1;
  }

  .location__map {
    height: 350px;
  }
}

/* ===========================
   RESPONSIVE — Desktop (1024px+)
   =========================== */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .header__nav {
    display: block;
  }

  .header__cta {
    display: inline-block;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 2.8rem;
  }
}

/* ===========================
   FOCUS STATES (Accessibility)
   =========================== */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  right: 0;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-weight: 700;
  transition: top 0.3s ease;
}

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

/* ===========================
   HERO MENU BUTTON
   =========================== */
.hero__menu-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2.5rem;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  animation: heroFadeIn 1.2s ease 1s forwards;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.hero__menu-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 25px var(--gold-glow);
}

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

/* ===========================
   MENU POPUP
   =========================== */
.menu-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(21, 30, 16, 0.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.menu-popup__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--divider);
  flex-shrink: 0;
}

.menu-popup__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.menu-popup__close {
  color: var(--text-primary);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  line-height: 1;
}

.menu-popup__close:hover {
  color: var(--gold);
}

/* Category Nav Tabs */
.menu-popup__nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--divider);
  flex-shrink: 0;
  padding: 0 0.5rem;
}

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

.menu-popup__tab {
  flex-shrink: 0;
  padding: 0.7rem 1rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.menu-popup__tab:hover {
  color: var(--gold-light);
}

.menu-popup__tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Menu Content */
.menu-popup__content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

/* Category */
.menu-cat {
  margin-bottom: 2.5rem;
}

.menu-cat__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 1rem;
}

.menu-cat__note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  font-style: italic;
}

/* Menu Item */
.menu-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(194, 147, 85, 0.08);
}

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

.menu-item__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-item__name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.menu-item__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.menu-item__price::after {
  content: ' ₪';
  font-weight: 400;
  font-size: 0.8rem;
}

.menu-item__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.5;
}

.menu-item--highlight {
  background: rgba(194, 147, 85, 0.1);
  border-radius: 6px;
  padding: 0.7rem 0.6rem;
  margin-top: 0.5rem;
  border: 1px solid var(--divider);
}

.menu-item--highlight .menu-item__name {
  color: var(--gold);
  font-weight: 700;
}

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

  html {
    scroll-behavior: auto;
  }

  .hero__slide.active {
    animation: none;
  }

  .cursor-glow,
  .particles,
  .page-loader {
    display: none !important;
  }
}
