/* ============================================================
   SHAMWICH — Premium Modern CSS
   Color Palette: Gold (#ca9c5e) on Deep Dark (#111111)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Dancing+Script:wght@400;500;600;700&display=swap");

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --gold: #ca9c5e;
  --gold-light: #e0b87a;
  --gold-pale: rgba(202, 156, 94, 0.15);
  --gold-glow: rgba(202, 156, 94, 0.35);
  --bg: #0d0d0d;
  --bg-1: #141414;
  --bg-2: #1a1a1a;
  --bg-3: #222222;
  --white: #ffffff;
  --soft: #a0a0a0;
  --softer: #666666;
  --border: rgba(202, 156, 94, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --glass: rgba(20, 20, 20, 0.72);
  --red: #e74c3c;
  --green: #27ae60;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-gold: 0 8px 40px rgba(202, 156, 94, 0.25);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.6);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Local Fonts ─────────────────────────────────────────── */
@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Dancing Script";
  src: url("../fonts/DancingScript-Bold.ttf") format("truetype");
  font-weight: 700;
}

/* ── Typography Helpers ──────────────────────────────────── */
.script {
  font-family: "Dancing Script", cursive;
}

/* ── Reusable Components ─────────────────────────────────── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.5rem;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition:
    color var(--transition),
    box-shadow var(--transition);
}
.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 0;
}
.btn-outline:hover::before {
  transform: scaleX(1);
}
.btn-outline:hover {
  color: var(--bg);
  box-shadow: var(--shadow-gold);
}
.btn-outline > * {
  position: relative;
  z-index: 1;
}
.btn-outline span {
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: "— ";
  color: var(--gold);
}

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    padding var(--transition);
}

#navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 1px 0 var(--border),
    0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  gap: 2rem;
}

#navbar.scrolled .nav-container {
  padding: 0.8rem 2.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  flex-shrink: 0;
}
.logo img {
  height: 56px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.logo img:hover {
  border-color: var(--gold);
  transform: scale(1.06);
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.8rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-shrink: 0;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Hamburger */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--white);
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url("../images/pexels-photocekici-37229056.jpg") center/cover no-repeat;
}

/* Multi-layer overlay for depth */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(202, 156, 94, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.85) 100%
    );
  z-index: 1;
}

/* Golden bottom border accent */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 3;
}

.hero-parallax {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.hero-content {
  max-width: 820px;
  padding: 2rem;
  transition:
    transform 0.1s ease-out,
    opacity 0.3s ease-out;
  will-change: transform, opacity;
}

.hero-subtitle {
  font-size: 0.75rem;
  letter-spacing: 5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-subtitle::before,
.hero-subtitle::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* Food decoration images */
.hero-decoration {
  position: absolute;
  height: auto;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.1s ease-out;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}
.hero-decoration.tomato {
  max-width: 300px;
  left: -1%;
  bottom: -12%;
}
.hero-decoration.onion {
  max-width: 280px;
  right: 0%;
  bottom: -20%;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about {
  padding: 8rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

/* The about section uses a plain <img> in the HTML */
.about > img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* Decorative gold frame offset */
.about > img::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 8px);
  opacity: 0.3;
  pointer-events: none;
}

.about-content {
  padding: 1rem 0;
}

.about-content > p:first-child {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.about-content > p:first-child::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: "Dancing Script", cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.about-content p:not(:first-child) {
  font-size: 1rem;
  color: var(--soft);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* Stats strip under about text */
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.about-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.about-stat-label {
  font-size: 0.75rem;
  color: var(--soft);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.3rem;
  display: block;
}

/* ── FASTRIOM / APP SECTION ──────────────────────────────── */
.menu-section {
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.menu-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(202, 156, 94, 0.06) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.menu-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.menu-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.menu-content img:first-child {
  width: 120px;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.menu-content h2 {
  font-family: "Dancing Script", cursive;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.menu-content p {
  font-size: 1rem;
  color: var(--soft);
  line-height: 1.7;
  max-width: 380px;
}

/* QR code card */
.qr-code {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.qr-code:hover {
  box-shadow: var(--shadow-gold);
}

.qr-code::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), transparent);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.qr-code img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: qrPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes qrPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(0.97);
  }
}

.qr-code-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.qr-code span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
}
.qr-code-sub {
  font-size: 0.82rem;
  color: var(--soft);
}

.menu-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
  transition: transform var(--transition);
}
.menu-image:hover img {
  transform: translateY(-8px) rotate(1deg);
}

/* ── FOOD MENU ───────────────────────────────────────────── */
.food-menu {
  padding: 7rem 2rem 6rem;
  position: relative;
  background: var(--bg-1);
}

/* Top-edge rule */
.food-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.menu-taco-image {
  position: absolute;
  top: -15%;
  left: -4%;
  width: 420px;
  opacity: 0.9;
  z-index: 0;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.food-menu-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.section-p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.food-menu .section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 0;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

/* Divider between columns */
.menu-container::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.menu-column {
  display: flex;
  flex-direction: column;
}

.column-title {
  font-family: "Dancing Script", cursive;
  font-size: 1.9rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.column-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.menu-item {
  padding: 1.1rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  position: relative;
}
.menu-item:hover {
  background: var(--gold-pale);
}
.menu-item + .menu-item {
  border-top: 1px solid var(--border-subtle);
}

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

.item-header h3 {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Dotted leader between name and price */
.item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(202, 156, 94, 0.25);
  margin: 0 0.5rem 4px;
  min-width: 20px;
}

.price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item p {
  color: var(--softer);
  margin: 0;
  line-height: 1.5;
  font-size: 0.87rem;
}

/* ── SPECIAL OFFER / PARALLAX BANNER ─────────────────────── */
.special-offer {
  position: relative;
  height: 65vh;
  min-height: 420px;
  background: url("../images/pexels-valeriia-yevchinets-689609988-33443641 (1).jpg") no-repeat center center / cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 8%;
  overflow: hidden;
}

.special-offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: 1;
}

/* Left gold accent line */
.special-offer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  z-index: 2;
}

.special-decoration {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}
.special-decoration.tomato {
  bottom: -40%;
  left: 3%;
  max-width: 380px;
}

.special-offer-content {
  position: relative;
  z-index: 3;
  max-width: 480px;
  text-align: right;
}

.special-offer h2 {
  font-family: "Dancing Script", cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.special-offer h2 span {
  color: var(--gold);
}

.special-offer p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-section {
  padding: 7rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.gallery-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 800;
  position: relative;
  display: inline-block;
}
.gallery-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--gold);
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.gallery-row {
  display: flex;
  gap: 1.2rem;
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.gallery-item:hover::after {
  border-color: var(--gold);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.wide {
  flex: 2;
  aspect-ratio: 16/9;
}
.gallery-item.tall {
  flex: 1;
  aspect-ratio: 3/4;
}
.gallery-item:not(.wide):not(.tall) {
  flex: 1;
  aspect-ratio: 1/1;
}

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact {
  padding: 7rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 5rem;
}

.contact h2 {
  font-family: "Dancing Script", cursive;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: padding-left var(--transition);
}
.contact-item:hover {
  padding-left: 0.5rem;
}
.contact-item:last-child {
  border-bottom: none;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--transition),
    border-color var(--transition);
}
.contact-item:hover .contact-item-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.contact-item i {
  color: var(--gold);
  font-size: 1rem;
  transition: color var(--transition);
}
.contact-item:hover i {
  color: var(--bg);
}

.contact-item h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 0.3rem;
}
.contact-item p {
  font-size: 0.95rem;
  color: var(--white);
}

/* Form */
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form .form-group {
  position: relative;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--softer);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  margin-top: 0.3rem;
}
.contact-form button[type="submit"]:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.contact-form button[type="submit"]:disabled {
  background: var(--bg-3);
  color: var(--softer);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Feedback messages */
.error-message {
  color: var(--red);
  font-size: 0.82rem;
  margin-top: 0.4rem;
  padding: 0.4rem 0.6rem;
  background: rgba(231, 76, 60, 0.08);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--red);
  display: block;
}
.form-success-message {
  display: none;
}
.form-success-message.success {
  display: block;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #2ecc71;
  text-align: center;
  font-size: 0.9rem;
  animation: fadeIn 0.3s ease;
}
.form-success-message.error {
  display: block;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
  text-align: center;
  font-size: 0.9rem;
}

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

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle background glow */
.site-footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse at bottom,
    rgba(202, 156, 94, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img {
  max-width: 110px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(202, 156, 94, 0.2));
  transition: transform var(--transition);
}
.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-links {
  display: flex;
  justify-content: center;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
}
.footer-links ul li a {
  color: var(--soft);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition:
    color var(--transition),
    letter-spacing var(--transition);
  display: inline-block;
}
.footer-links ul li a:hover {
  color: var(--gold);
  letter-spacing: 2.5px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: center;
}
.footer-bottom p {
  color: var(--softer);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-align: center;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scan {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .gallery-row {
    flex-direction: column;
  }
  .gallery-item.wide,
  .gallery-item.tall,
  .gallery-item:not(.wide):not(.tall) {
    aspect-ratio: 16/9;
    flex: 1;
  }
}

@media (max-width: 992px) {
  /* Nav */
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(-100%);
    transition: transform var(--transition);
    z-index: 1000;
    height: 100vh;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }
  .menu-toggle {
    display: block;
  }
  .social-links {
    display: none;
  }

  /* Sections */
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2rem;
  }
  .about > img {
    aspect-ratio: 4/3;
  }
  .about-content {
    text-align: center;
  }
  .about-content > p:first-child {
    justify-content: center;
  }
  .about-content > p:first-child::before {
    display: none;
  }
  .about-stats {
    justify-content: center;
  }

  .menu-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .menu-content {
    align-items: center;
    text-align: center;
  }
  .menu-content p {
    max-width: 100%;
  }
  .qr-code {
    justify-content: center;
  }

  .menu-container {
    grid-template-columns: 1fr;
  }
  .menu-container::after {
    display: none;
  }
  .menu-taco-image {
    width: 280px;
    top: -8%;
    left: -3%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-right {
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }
  .logo img {
    height: 46px;
    width: auto;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .hero-decoration {
    display: none;
  }

  .about {
    padding: 4rem 1.5rem;
  }
  .section-title {
    font-size: 2rem;
  }

  .menu-section {
    padding: 5rem 1.5rem;
  }
  .menu-taco-image {
    display: none;
  }
  .food-menu {
    padding: 5rem 1.5rem;
  }

  .special-offer {
    background-attachment: scroll;
    padding: 0 5%;
  }
  .special-decoration.tomato {
    display: none;
  }

  .gallery-section {
    padding: 5rem 1.5rem;
  }

  .contact {
    padding: 5rem 1.5rem;
  }
  .contact-form {
    padding: 1.8rem;
  }

  .site-footer {
    padding: 4rem 1.5rem 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 2rem;
  }
  .contact-form {
    padding: 1.2rem;
  }
}
