/* ============================================
   ALMA PALMA — Premium Mediterranean Restaurant
   Inspired by enjoyginger.com aesthetic
   ============================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg: #E3E1DC;
  --text: #1D1D1B;
  --btn-bg: #1D1D1B;
  --btn-text: #E3E1DC;
  --btn-border: #E3E1DC;
  --sage: #99A077;
  --gold: #C4A882;
  --terracotta: #8B4C39;
  --white: #FAFAF8;
  --radius: 15px;
  --radius-pill: 999px;
  --max-width: 1800px;
  --padding: 40px;
  --font-body: 'Fira Code', monospace;
  --font-heading: 'Playfair Display', serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -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;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding);
}

/* ---- Pill Buttons ---- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 28px;
  background: var(--btn-bg);
  color: var(--btn-text);
  border: 4px double var(--btn-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-pill:hover {
  background: var(--btn-text);
  color: var(--btn-bg);
  border-color: var(--btn-bg);
}

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

.btn-pill--outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-pill--sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.btn-pill--sage:hover {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px var(--padding);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(227, 225, 220, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 12px var(--padding);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 6px 16px;
}

.logo-img {
  height: 38px;
  width: auto;
}

.footer-brand .logo {
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-brand .logo-img {
  height: 36px;
  filter: brightness(1.2);
}

.logo-alma {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--terracotta);
  letter-spacing: -0.02em;
}

.logo-palma {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.header-nav {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  opacity: 0.8;
}

.header-nav a:hover {
  opacity: 1;
  color: var(--terracotta);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 100px var(--padding) 80px;
}

.hero-bg {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 80px;
  border-radius: var(--radius);
  background: url('/images/hero.jpg') center/cover no-repeat;
  z-index: -1;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-content {
  max-width: 700px;
  padding: 60px;
  background: rgba(227, 225, 220, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero-content .btn-pill {
  margin-top: 10px;
}

/* ---- Sections ---- */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
}

.divider--double {
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  height: 6px;
  background: transparent;
}

/* ---- Photo Grid ---- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 var(--padding);
  max-width: var(--max-width);
  margin: 0 auto;
}

.photo-card {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.photo-card:hover {
  transform: scale(1.02);
}

.photo-card:nth-child(2) {
  margin-top: 40px;
}

.photo-card:nth-child(4) {
  margin-top: 40px;
}

/* ---- Side by Side ---- */
.side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding);
}

.side-left p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 2;
}

.side-right h2 {
  margin-bottom: 24px;
}

.side-right p {
  opacity: 0.85;
  line-height: 1.9;
}

/* ---- Loyalty / Gift Card Section ---- */
.loyalty-section {
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius);
  max-width: calc(var(--max-width) - 80px);
  margin: 0 auto;
  padding: 80px;
  text-align: center;
}

.loyalty-section h2 {
  color: var(--bg);
  margin-bottom: 20px;
}

.loyalty-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.8;
}

.loyalty-section .btn-pill {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.loyalty-section .btn-pill:hover {
  background: var(--gold);
  color: var(--text);
}

/* ---- Contact Section ---- */
.contact-section {
  text-align: center;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.contact-address {
  margin: 30px 0;
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.8;
}

.take-me-there {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text);
  color: var(--bg);
  padding: 16px 32px;
  border-radius: var(--radius);
  margin: 20px 0;
  transition: var(--transition);
  text-decoration: none;
}

.take-me-there:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.take-me-there svg {
  width: 20px;
  height: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--text);
  transition: var(--transition);
  opacity: 0.6;
}

.social-icons a:hover {
  opacity: 1;
  background: var(--text);
  color: var(--bg);
}

.social-icons a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ---- FAQ Section ---- */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--padding);
}

.faq-item {
  border-bottom: 1px solid rgba(29, 29, 27, 0.15);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--terracotta);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

.faq-answer p {
  opacity: 0.75;
  font-size: 0.82rem;
  line-height: 1.8;
}

/* ---- Bottom Nav Band ---- */
.bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  background: var(--text);
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bottom-nav a {
  padding: 14px 28px;
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  border-right: 1px solid rgba(227, 225, 220, 0.15);
  position: relative;
  overflow: hidden;
}

.bottom-nav a:last-child {
  border-right: none;
}

.bottom-nav a:hover {
  background: rgba(227, 225, 220, 0.1);
}

.bottom-nav a.shine {
  position: relative;
  overflow: hidden;
}

.bottom-nav a.shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--text);
  color: var(--bg);
  padding: 80px var(--padding) 40px;
  margin-top: 80px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .logo-img {
  height: 36px;
  filter: brightness(1.2);
}

.footer-brand .logo-alma {
  color: var(--gold);
}

.footer-brand .logo-palma {
  color: var(--bg);
}

.footer-brand p {
  margin-top: 16px;
  opacity: 0.6;
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer-col h4 {
  color: var(--bg);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.78rem;
  opacity: 0.6;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(227, 225, 220, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  opacity: 0.5;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

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

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ---- Menu Page ---- */
.menu-page {
  padding-top: 140px;
  min-height: 100vh;
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.menu-filters .btn-pill {
  font-size: 0.7rem;
  padding: 8px 20px;
}

.menu-filters .btn-pill.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.menu-category {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 var(--padding);
}

.menu-category-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--terracotta);
}

.menu-category-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 30px;
}

.menu-item {
  display: flex;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(29, 29, 27, 0.08);
}

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

.menu-item-name {
  font-weight: 500;
  font-size: 0.85rem;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(29, 29, 27, 0.3);
  margin: 0 12px;
  min-width: 40px;
  align-self: center;
  position: relative;
  top: -3px;
}

.menu-item-price {
  font-weight: 500;
  font-size: 0.85rem;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 4px;
  padding-left: 0;
}

/* ---- Booking Page ---- */
.booking-page {
  padding-top: 140px;
  min-height: 100vh;
}

.booking-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--padding);
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--text);
  transition: var(--transition);
}

.step-dot.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.step-dot.completed {
  background: var(--sage);
  border-color: var(--sage);
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(29, 29, 27, 0.15);
  border-radius: 10px;
  background: var(--white);
  font-size: 0.85rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(139, 76, 57, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.booking-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.booking-confirmation {
  text-align: center;
  padding: 40px 0;
}

.booking-confirmation svg {
  width: 60px;
  height: 60px;
  color: var(--sage);
  margin-bottom: 20px;
}

.booking-confirmation h3 {
  margin-bottom: 12px;
}

.quick-contact {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0;
  padding: 30px;
  border: 1px solid rgba(29, 29, 27, 0.1);
  border-radius: var(--radius);
}

.quick-contact-title {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 12px;
}

/* ---- Gift Card Field ---- */
.gift-card-field {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(29, 29, 27, 0.1);
}

.gift-card-field input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(29, 29, 27, 0.15);
  border-radius: 10px;
  background: var(--white);
  font-size: 0.82rem;
}

.gift-card-field .btn-pill {
  font-size: 0.7rem;
  padding: 10px 20px;
}

/* ---- Mobile Navigation Overlay ---- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--terracotta);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --padding: 16px;
  }

  body {
    font-size: 0.82rem;
  }

  .header-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .site-header {
    padding: 14px var(--padding);
  }

  .site-header.scrolled {
    padding: 10px var(--padding);
  }

  .logo-alma {
    font-size: 1.4rem;
  }

  .logo-palma {
    font-size: 0.8rem;
  }

  .logo-img {
    height: 32px;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
    padding: 80px 12px 50px;
    align-items: center;
  }

  .hero-slider {
    height: 65vh;
    margin: 6px;
    max-width: calc(100% - 12px);
    border-radius: 12px;
  }

  .slider-slide {
    padding: 30px 20px;
  }

  .slider-content h2 {
    font-size: 1.4rem;
  }

  .slider-content p {
    font-size: 0.75rem;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }

  .slider-dots { bottom: 16px; }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-card-image { height: 160px; }
  .event-card-body { padding: 18px; }
  .event-card-title { font-size: 1.1rem; }

  .hero-bg {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 12px;
  }

  .hero-content {
    padding: 24px 20px;
    border-radius: 12px;
    max-width: 100%;
  }

  .hero-content p {
    font-size: 0.8rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  /* Photo Grid */
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 var(--padding);
  }

  .photo-card {
    aspect-ratio: 1/1;
    border-radius: 10px;
  }

  .photo-card:nth-child(2),
  .photo-card:nth-child(4) {
    margin-top: 0;
  }

  /* Side by side */
  .side-by-side {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 var(--padding);
  }

  .side-left p {
    font-size: 0.82rem;
    line-height: 1.8;
  }

  .side-right h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 16px;
  }

  .side-right p {
    font-size: 0.82rem;
  }

  /* Loyalty */
  .loyalty-section {
    padding: 40px 24px;
    margin: 0 8px;
    border-radius: 12px;
  }

  .loyalty-section h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .loyalty-section p {
    font-size: 0.8rem;
  }

  /* Contact */
  .contact-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .contact-grid .btn-pill {
    width: 100%;
    justify-content: center;
  }

  .contact-address {
    font-size: 0.8rem;
  }

  .take-me-there {
    padding: 14px 24px;
    font-size: 0.8rem;
  }

  .social-icons {
    gap: 14px;
    margin-top: 30px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
  }

  /* FAQ */
  .faq-section {
    padding: 0 var(--padding);
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer p {
    font-size: 0.78rem;
  }

  /* Section headers */
  .section-header h2 {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }

  .divider {
    width: 50px;
    margin: 14px auto;
  }

  /* Bottom nav */
  .bottom-nav {
    bottom: 12px;
    left: 12px;
    right: 12px;
    transform: none;
    border-radius: 14px;
  }

  .bottom-nav a {
    padding: 14px 0;
    font-size: 0.65rem;
    flex: 1;
    text-align: center;
    letter-spacing: 0.06em;
  }

  /* Footer */
  .site-footer {
    padding: 50px var(--padding) 30px;
    margin-top: 60px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-col h4 {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin-top: 30px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  /* Forms */
  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px; /* Prevents iOS zoom */
  }

  .form-group label {
    font-size: 0.7rem;
  }

  /* Booking */
  .booking-page {
    padding-top: 100px;
  }

  .booking-container {
    padding: 0 var(--padding);
  }

  .quick-contact {
    padding: 20px 16px;
    margin: 24px 0;
    gap: 8px;
  }

  .quick-contact .btn-pill {
    flex: 1;
    justify-content: center;
    font-size: 0.65rem;
    padding: 10px 12px;
  }

  .gift-card-field {
    flex-direction: column;
    gap: 10px;
  }

  .gift-card-field input {
    font-size: 16px;
  }

  /* Menu page */
  .menu-page {
    padding-top: 100px;
  }

  .menu-filters {
    gap: 8px;
    margin-bottom: 40px;
    padding: 0 var(--padding);
  }

  .menu-filters .btn-pill {
    font-size: 0.62rem;
    padding: 7px 14px;
  }

  .menu-category {
    padding: 0 var(--padding);
    margin-bottom: 40px;
  }

  .menu-category-title {
    font-size: 1.4rem;
  }

  .menu-item {
    padding: 12px 0;
  }

  .menu-item-name {
    font-size: 0.8rem;
  }

  .menu-item-price {
    font-size: 0.8rem;
  }

  .menu-item-desc {
    font-size: 0.72rem;
  }

  /* Sections */
  section {
    padding: 50px 0;
  }

  /* Mobile nav */
  .mobile-nav a {
    font-size: 1.6rem;
  }

  .mobile-nav .btn-pill {
    font-size: 0.75rem;
  }

  /* Buttons */
  .btn-pill {
    padding: 10px 22px;
    font-size: 0.7rem;
  }
}

@media (max-width: 380px) {
  :root {
    --padding: 12px;
  }

  .hero-content {
    padding: 20px 16px;
  }

  .hero-content p {
    font-size: 0.75rem;
  }

  .photo-grid {
    gap: 6px;
  }

  .loyalty-section {
    padding: 30px 16px;
    margin: 0 4px;
  }

  .loyalty-section h2 {
    font-size: 1.3rem;
  }

  .bottom-nav a {
    padding: 12px 0;
    font-size: 0.58rem;
  }

  .faq-question {
    font-size: 0.85rem;
  }
}

/* ---- Hero Slider ---- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  margin: 8px;
  border-radius: var(--radius);
  max-width: calc(100% - 16px);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 60px;
}

.slider-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29,29,27,0.6) 0%, transparent 60%);
}

.slider-content {
  position: relative;
  z-index: 2;
  color: var(--bg);
  max-width: 500px;
}

.slider-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slider-content p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.4);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ---- Events / Sales ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.event-card {
  background: linear-gradient(135deg, #1D1D1B 0%, #2a2a28 100%);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}

.event-card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(29,29,27,0.9));
}

.event-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.event-card-body {
  padding: 28px;
  position: relative;
}

.event-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.event-card-date {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-card-desc {
  font-size: 0.8rem;
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.8);
}

.event-card-offer {
  background: linear-gradient(135deg, var(--terracotta), #a05a3a);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.82rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 16px;
}

/* Countdown Timer */
.event-countdown {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.countdown-unit {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  min-width: 56px;
  backdrop-filter: blur(4px);
}

.countdown-value {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.countdown-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.opacity-70 { opacity: 0.7; }

/* ---- Features Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.feature-icon {
  margin-bottom: 20px;
  color: var(--terracotta);
  opacity: 0.8;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.78rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- Dishes Preview ---- */
.dishes-preview {
  max-width: 600px;
  margin: 0 auto;
}

.dish-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(227,225,220,0.15);
}

.dish-highlight:last-child {
  border-bottom: none;
}

.dish-highlight-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--bg);
}

.dish-highlight-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .feature-card {
    padding: 24px 18px;
  }
  .feature-icon {
    font-size: 1.8rem;
  }
  .feature-card h3 {
    font-size: 0.95rem;
  }
  .dish-highlight-name {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
