/* ========================================
   Montanaro Pizzeria — Authentic Brand Styles
   Colours derived from original logo:
   - Ribbon red: #C41E1E
   - Brick terracotta: #CD853F / #A0522D
   - Dark warm brown: #2C1810
   - Cream white: #FAF6F1
   - Gold accent: #D4A843
   ======================================== */

:root {
  --color-primary: #8B2E1D;
  --color-primary-dark: #5C1E12;
  --color-primary-light: #A63A26;
  --color-accent: #C41E1E;
  --color-accent-hover: #9E1818;
  --color-gold: #D4A843;
  --color-gold-hover: #B8922E;
  --color-bg: #FAF6F1;
  --color-bg-alt: #F0E8DE;
  --color-surface: #FFFFFF;
  --color-text: #2C1810;
  --color-text-light: #6B4E3D;
  --color-text-muted: #9C8B7B;
  --color-border: rgba(44,24,16,0.08);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(44,24,16,0.06);
  --shadow-md: 0 8px 30px rgba(44,24,16,0.10);
  --shadow-lg: 0 20px 60px rgba(44,24,16,0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul { list-style: none; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(92, 30, 18, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition-normal);
}
.navbar.scrolled {
  background: rgba(92, 30, 18, 0.98);
  box-shadow: var(--shadow-md);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 12px; color: #fff; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.5px; }
.logo img { height: 44px; width: auto; border-radius: 6px; }
.logo-text { display: none; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 8px;
  display: flex; align-items: center; gap: 6px;
  transition: all var(--transition-fast);
}
.nav-cta:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; position: relative; z-index: 1001; }
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ========================================
   HERO SECTION — Uses REAL restaurant exterior
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/pizza-oven.webp') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92, 30, 18, 0.94) 0%,
    rgba(140, 46, 29, 0.88) 40%,
    rgba(92, 30, 18, 0.92) 100%
  );
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding-top: 90px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--color-gold);
  padding: 8px 20px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero-title .highlight { color: var(--color-gold); font-style: italic; }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.78);
  max-width: 560px; margin: 0 auto 36px;
  font-weight: 300; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 32px; border-radius: 100px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition-fast); white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent); color: #fff; border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-hover); border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 30, 0.35);
}
.btn-secondary {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.3);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-light { background: #fff; color: var(--color-primary); }
.btn-light:hover { background: var(--color-bg); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-large { padding: 16px 40px; font-size: 1.05rem; }
.hero-info { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.info-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
}
.info-item i { color: var(--color-gold); font-size: 1.1rem; }
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.scroll-indicator a { color: rgba(255,255,255,0.5); font-size: 1.4rem; }
.scroll-indicator a:hover { color: #fff; }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section { padding: 100px 0; }
.alt-bg { background: var(--color-bg-alt); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block; color: var(--color-accent);
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700; color: var(--color-primary); margin-bottom: 16px;
}
.section-line { width: 48px; height: 3px; background: var(--color-accent); margin: 0 auto; border-radius: 2px; }
.section-subtitle { color: var(--color-text-light); font-size: 1.05rem; margin-top: 16px; }

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem; color: var(--color-primary);
  line-height: 1.5; margin-bottom: 24px;
  position: relative; padding-left: 20px;
  border-left: 3px solid var(--color-accent);
}
.about-quote em { color: var(--color-accent); font-style: italic; }
.about-desc { color: var(--color-text-light); font-size: 1.05rem; line-height: 1.8; margin-bottom: 40px; }
.about-features { display: flex; flex-direction: column; gap: 24px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--color-primary); color: var(--color-gold);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow-sm);
}
.feature-text h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-primary); margin-bottom: 4px; }
.feature-text p { color: var(--color-text-light); font-size: 0.92rem; line-height: 1.6; }
.about-image .image-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 520px; object-fit: cover; transition: transform var(--transition-slow); }
.about-image .image-frame:hover img { transform: scale(1.03); }
.image-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--color-surface); padding: 14px 22px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  text-align: center;
}
.badge-number { display: block; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--color-accent); line-height: 1; }
.badge-text { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ========================================
   HIGHLIGHTS / DISHES — use REAL photos
   ======================================== */
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.highlight-card {
  background: var(--color-surface); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.highlight-img { position: relative; overflow: hidden; }
.highlight-img img { width: 100%; height: 220px; object-fit: cover; transition: transform var(--transition-slow); }
.highlight-card:hover .highlight-img img { transform: scale(1.08); }
.highlight-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--color-primary); color: #fff;
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.highlight-content { padding: 24px; }
.highlight-content h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-primary); margin-bottom: 8px; }
.highlight-content p { color: var(--color-text-light); font-size: 0.9rem; line-height: 1.6; }

/* ========================================
   MENU / SPEISEKARTE
   ======================================== */
.menu-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 24px; border-radius: 100px; border: 1px solid var(--color-border);
  background: var(--color-surface); color: var(--color-text-light);
  font-size: 0.9rem; font-weight: 500; cursor: pointer;
  transition: all var(--transition-fast); font-family: var(--font-body);
}
.tab-btn:hover { border-color: var(--color-primary-light); color: var(--color-primary); }
.tab-btn.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.menu-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.menu-page {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; box-shadow: var(--shadow-sm); background: var(--color-surface);
  border: 1px solid var(--color-border); transition: all var(--transition-normal);
}
.menu-page:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-md); }
.menu-page img { width: 100%; height: 320px; object-fit: cover; object-position: top; }
.menu-page::after {
  content: '\f002'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(92, 30, 18, 0.6); color: #fff; font-size: 1.6rem;
  opacity: 0; transition: opacity var(--transition-fast);
}
.menu-page:hover::after { opacity: 1; }
.menu-page.hidden { display: none; }
.menu-download { text-align: center; margin-top: 48px; }
.menu-download p { color: var(--color-text-light); margin-bottom: 16px; }

/* ========================================
   REVIEWS
   ======================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: var(--color-surface); padding: 36px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border); transition: all var(--transition-normal);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { color: var(--color-gold); font-size: 0.9rem; margin-bottom: 18px; letter-spacing: 2px; }
.review-text { color: var(--color-text-light); font-size: 0.95rem; line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--color-primary); color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.85rem;
}
.author-name { display: block; font-weight: 600; color: var(--color-primary); font-size: 0.95rem; }
.author-date { display: block; font-size: 0.8rem; color: var(--color-text-muted); }
.reviews-cta { text-align: center; margin-top: 48px; }

/* ========================================
   CONTACT
   ======================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.info-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px; background: var(--color-surface);
  border-radius: var(--radius-md); margin-bottom: 16px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}
.info-card:hover { box-shadow: var(--shadow-md); }
.info-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(139, 46, 29, 0.08); color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.info-details h4 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-primary); margin-bottom: 6px; }
.info-details p, .info-details a { color: var(--color-text-light); font-size: 0.92rem; line-height: 1.6; }
.info-details a:hover { color: var(--color-accent); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--color-accent) !important; font-weight: 500; font-size: 0.9rem; margin-top: 6px;
}
.link-arrow i { font-size: 0.75rem; transition: transform var(--transition-fast); }
.link-arrow:hover i { transform: translateX(3px); }
.info-note { display: block; font-size: 0.82rem; color: var(--color-text-muted); margin-top: 4px; }
.hours-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--color-border); font-size: 0.92rem; color: var(--color-text-light); }
.hours-row:last-child { border-bottom: none; }
.hours-row.highlight { color: var(--color-primary); font-weight: 600; }
.contact-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 100%; min-height: 520px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 520px; border: 0; border-radius: var(--radius-lg); }
.map-link {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--color-surface); padding: 10px 18px;
  border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500;
  color: var(--color-primary); box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.map-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: var(--color-primary); padding: 80px 0; text-align: center; color: #fff;
}
.cta-content h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 500px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-primary-dark); color: rgba(255,255,255,0.7); padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo { margin-bottom: 16px; font-size: 1.5rem; }
.footer-brand .logo img { height: 50px; }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: all var(--transition-fast);
}
.footer-social a:hover { background: var(--color-accent); color: #fff; transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 { color: #fff; font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all var(--transition-fast); }
.footer-links a:hover { color: var(--color-gold); padding-left: 4px; }
.footer-contact p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 10px; color: rgba(255,255,255,0.6); }
.footer-contact i { color: var(--color-gold); width: 20px; margin-right: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(92, 30, 18, 0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,0.1); color: #fff;
  border: none; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--color-accent); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; background: var(--color-primary);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-accent); transform: translateY(-3px); }

/* ========================================
   ANIMATIONS (Scroll reveal)
   ======================================== */
.fade-in, .fade-in-up, .fade-in-left, .fade-in-right {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fade-in-left { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }
.fade-in-up { transform: translateY(40px); }
.visible .fade-in, .visible .fade-in-up, .visible .fade-in-left, .visible .fade-in-right,
.fade-in.visible, .fade-in-up.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1; transform: translate(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.hero .fade-in-up, .hero .delay-1, .hero .delay-2, .hero .delay-3, .hero .delay-4 {
  animation: heroFadeInUp 1s cubic-bezier(0.4,0,0.2,1) forwards;
  opacity: 0;
}
.hero .fade-in-up { animation-delay: 0.2s; }
.hero .delay-1 { animation-delay: 0.4s; }
.hero .delay-2 { animation-delay: 0.6s; }
.hero .delay-3 { animation-delay: 0.8s; }
.hero .delay-4 { animation-delay: 1.0s; }
@keyframes heroFadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 78%; max-width: 320px; height: 100vh;
    background: var(--color-primary);
    flex-direction: column; align-items: flex-start;
    padding: 100px 32px 32px; gap: 8px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-menu.open { right: 0; }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 1.05rem; }
  .nav-cta { margin-left: 0; margin-top: 10px; width: 100%; justify-content: center; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-logo-img { width: 160px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 380px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .menu-gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 350px; }
  .contact-map iframe { min-height: 350px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 70px 0; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 24px; }
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
}

@media (max-width: 480px) {
  .hero-info { flex-direction: column; gap: 12px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .menu-gallery { grid-template-columns: 1fr; }
  .tab-btn { padding: 8px 16px; font-size: 0.82rem; }
  .menu-page img { height: 420px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@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; }
}
