@import url('https://fonts.bunny.net/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Josefin+Sans:wght@300;400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ========================================
   LA TRATTORIA - CSS VARIABLES
   Rustic-Elegant Italian Theme
   ======================================== */
:root {
  /* === BACKGROUNDS === */
  --bg-primary:       #141A11;
  --bg-secondary:     #1C2318;
  --bg-card:          #222A1E;
  --bg-elevated:      #2A3324;

  /* === CREAM / TEXT === */
  --cream:            #E8D5B5;
  --cream-light:      #F2E6D0;
  --cream-muted:      #BBA88A;

  /* === OLIVE GREEN === */
  --olive:            #6B8F5E;
  --olive-light:      #8AAF7A;
  --olive-dark:       #4A6B3E;
  --olive-muted:      #3D5235;

  /* === WARM AMBER === */
  --amber:            #D4943A;
  --amber-light:      #E8A849;
  --amber-glow:       rgba(212, 148, 58, 0.15);

  /* === GOLD === */
  --gold:             #C9B06B;
  --gold-light:       #DCC88A;

  /* === SEMANTIC === */
  --text-primary:     var(--cream);
  --text-secondary:   var(--cream-muted);
  --text-heading:     var(--cream-light);
  --accent-primary:   var(--amber);
  --accent-secondary: var(--olive);
  --border-subtle:    rgba(107, 143, 94, 0.2);
  --shadow-warm:      rgba(212, 148, 58, 0.08);

  /* === FONTS === */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-nav: 'Josefin Sans', sans-serif;
  --font-body: 'Lora', Georgia, serif;

  /* === SHADOWS === */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 60px var(--amber-glow), 0 0 120px var(--amber-glow);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

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

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

input, textarea, select {
  font-family: var(--font-body);
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* ========================================
   LAYOUT
   ======================================== */
.container-custom {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) {
  .container-custom {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container-custom {
    padding: 0 48px;
  }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  font-style: italic;
}

.font-display {
  font-family: var(--font-display);
}

.font-heading {
  font-family: var(--font-heading);
}

.font-nav {
  font-family: var(--font-nav);
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--amber);
  color: var(--bg-primary);
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  gap: 10px;
}

.btn-primary:hover {
  background: var(--amber-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--cream-muted);
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  gap: 10px;
}

.btn-secondary:hover {
  background: rgba(232, 213, 181, 0.1);
  border-color: var(--cream);
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--bg-card);
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all 0.4s ease;
}

.card:hover {
  border-color: var(--olive-muted);
  box-shadow: 0 20px 60px var(--shadow-warm);
  transform: translateY(-4px);
}

/* ========================================
   FORM ELEMENTS
   ======================================== */
.input-field {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-primary);
  border: 1px solid var(--olive-dark);
  border-radius: 4px;
  color: var(--cream);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-field::placeholder {
  color: var(--cream-muted);
  opacity: 0.6;
}

.input-field:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

.label-field {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s ease;
}

#main-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

#main-header.scrolled {
  background: rgba(20, 26, 17, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-logo-text {
  display: none;
}

@media (min-width: 640px) {
  .nav-logo-text {
    display: block;
  }
}

.nav-logo-text .name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream-light);
}

.nav-logo-text .subtitle {
  font-family: var(--font-nav);
  font-size: 0.65rem;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 40px;
}

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

.nav-link {
  position: relative;
  font-family: var(--font-nav);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--cream);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--olive);
  transition: width 0.3s ease;
}

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

.nav-link.nav-active {
  color: var(--cream);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cart-btn {
  position: relative;
  padding: 10px;
  border-radius: 4px;
  color: var(--cream);
  transition: all 0.2s ease;
}

.nav-cart-btn:hover {
  background: rgba(232, 213, 181, 0.1);
}

.nav-cart-btn svg {
  width: 22px;
  height: 22px;
}

/* ========================================
   CART BADGE
   ======================================== */
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--amber);
  border-radius: 9px;
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
}

.hidden {
  display: none !important;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-toggle {
  display: block;
  padding: 10px;
  border-radius: 4px;
  color: var(--cream);
}

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

.mobile-menu-toggle:hover {
  background: rgba(232, 213, 181, 0.1);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

#mobile-menu {
  padding: 24px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
}

#mobile-menu a {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-muted);
  transition: all 0.2s ease;
}

#mobile-menu a:hover {
  background: rgba(107, 143, 94, 0.1);
  color: var(--cream);
}

/* ========================================
   HERO SECTION
   ======================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: sepia(0.15) saturate(1.1);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 26, 17, 0.5) 0%,
    rgba(20, 26, 17, 0.7) 50%,
    rgba(20, 26, 17, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 24px;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin: 0 auto 32px;
  animation: fadeInScale 1s ease-out;
}

@media (min-width: 768px) {
  .hero-logo {
    width: 240px;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream-light);
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-subtitle {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 48px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-muted);
  animation: bounce 2s infinite;
}

.hero-scroll span {
  font-family: var(--font-nav);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

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

/* ========================================
   SECTION DIVIDER
   ======================================== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 0;
}

.section-divider::before,
.section-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--olive-muted), transparent);
}

.section-divider svg {
  width: 24px;
  height: 24px;
  color: var(--olive);
}

/* ========================================
   POPULAR / MENU SECTION
   ======================================== */
#popular, .menu-section-wrapper {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--olive);
  border: 1px solid var(--olive-muted);
  border-radius: 2px;
  margin-bottom: 20px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ========================================
   MENU GRID
   ======================================== */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   GALLERY GRID
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ========================================
   MENU CARD
   ======================================== */
.menu-card {
  position: relative;
  overflow: hidden;
}

.menu-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.menu-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: sepia(0.1) saturate(1.1);
}

.menu-card:hover .menu-image-wrapper img {
  transform: scale(1.08);
}

.menu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 26, 17, 0.9), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-card:hover .menu-overlay {
  opacity: 1;
}

.popular-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--amber);
  padding: 6px 14px;
  font-family: var(--font-nav);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-primary);
  z-index: 5;
}

.menu-card-content {
  padding: 24px;
}

.menu-card-category {
  font-family: var(--font-nav);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--olive);
  margin-bottom: 8px;
}

.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.menu-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream-light);
  transition: color 0.3s ease;
}

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

.menu-card-price {
  font-family: var(--font-nav);
  font-weight: 500;
  color: var(--amber);
  white-space: nowrap;
}

.menu-card-desc {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--cream-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream-muted);
}

/* ========================================
   SKELETON LOADING
   ======================================== */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

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

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--olive);
}

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

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream-light);
  margin-bottom: 12px;
}

.feature-desc {
  font-family: var(--font-body);
  color: var(--cream-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
   360° TOUR SECTION
   ======================================== */
.tour-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.tour-container {
  margin-top: 48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
}

.tour-container iframe {
  display: block;
  min-height: 400px;
}

@media (min-width: 768px) {
  .tour-container iframe {
    min-height: 500px;
  }
}

@media (min-width: 1024px) {
  .tour-container iframe {
    min-height: 560px;
  }
}

.tour-footer {
  margin-top: 32px;
  text-align: center;
}

.tour-google-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream-muted);
  font-family: var(--font-nav);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tour-google-link:hover {
  color: var(--amber);
  border-color: var(--amber);
  background: rgba(212, 148, 58, 0.1);
}

/* ========================================
   BIRTHDAY / CELEBRATION SECTION
   ======================================== */
.birthday-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.birthday-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .birthday-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.birthday-content .section-title {
  text-align: left;
  margin-top: 16px;
}

.birthday-text {
  font-family: var(--font-body);
  color: var(--cream-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.birthday-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.birthday-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 12px 20px;
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--font-nav);
  font-size: 0.9rem;
}

.birthday-feature svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
}

.birthday-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.birthday-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.birthday-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--amber);
  color: var(--bg-primary);
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212, 148, 58, 0.4);
}

.birthday-badge-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 4px;
}

.birthday-badge-text {
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* ========================================
   RESERVATION CTA SECTION
   ======================================== */
.reservation-cta {
  position: relative;
  padding: 120px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.reservation-cta .bg-image {
  position: absolute;
  inset: 0;
}

.reservation-cta .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: sepia(0.15) saturate(1.1);
}

.reservation-cta .bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg-secondary) 0%,
    rgba(28, 35, 24, 0.9) 50%,
    var(--bg-secondary) 100%
  );
}

.reservation-cta-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  filter: sepia(0.1) saturate(1.1);
}

.about-badge {
  display: none;
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--amber);
  border-radius: 4px;
  padding: 28px;
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow);
}

@media (min-width: 1024px) {
  .about-badge {
    display: block;
  }
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
}

.about-badge-text {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content .section-badge {
  margin-bottom: 16px;
}

.about-content p {
  font-family: var(--font-body);
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content p:last-of-type {
  color: var(--cream-muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-stat {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 4px;
}

.about-stat-label {
  font-family: var(--font-nav);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-muted);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  padding: 40px 32px;
  text-align: center;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--olive);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream-light);
  margin-bottom: 16px;
}

.contact-card p {
  font-family: var(--font-body);
  color: var(--cream-muted);
  line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--olive-muted);
}

.footer-main {
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--cream-muted);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-muted);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--cream-light);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream-light);
  margin-bottom: 24px;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column ul li a {
  font-family: var(--font-body);
  color: var(--cream-muted);
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: var(--cream);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  color: var(--cream-muted);
  line-height: 1.6;
}

.footer-contact li svg {
  width: 18px;
  height: 18px;
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--olive-muted);
  padding: 28px 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-family: var(--font-body);
  color: var(--cream-muted);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-family: var(--font-body);
  color: var(--cream-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--cream);
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */
.toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  padding: 16px 24px;
  border-radius: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  animation: toast-in 0.4s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 400px;
}

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

.toast-error {
  border-color: #c44;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   CART DRAWER
   ======================================== */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 26, 17, 0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-subtle);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 28px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-header h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream-light);
}

.cart-drawer-close {
  padding: 8px;
  border-radius: 4px;
  color: var(--cream-muted);
  transition: all 0.2s ease;
}

.cart-drawer-close:hover {
  background: rgba(232, 213, 181, 0.1);
  color: var(--cream);
}

.cart-drawer-close svg {
  width: 22px;
  height: 22px;
}

#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--cream-muted);
}

.cart-empty svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  opacity: 0.4;
}

.cart-empty p {
  font-family: var(--font-body);
  font-style: italic;
}

#cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-subtotal span:first-child {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-muted);
}

.cart-subtotal span:last-child {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream-light);
}

#cart-footer .btn-primary {
  width: 100%;
}

/* ========================================
   QUANTITY CONTROLS
   ======================================== */
.quantity-control {
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-muted);
  font-family: var(--font-nav);
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: var(--olive);
  color: var(--cream-light);
}

.quantity-value {
  width: 44px;
  text-align: center;
  font-family: var(--font-nav);
  font-weight: 500;
  color: var(--cream);
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 26, 17, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s ease;
  padding: 40px;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

/* ========================================
   RESERVATION FORM
   ======================================== */
.reservation-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 40px;
}

.reservation-form h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream-light);
  margin-bottom: 32px;
  text-align: center;
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.form-divider {
  padding-top: 32px;
  margin-top: 8px;
  border-top: 1px solid var(--border-subtle);
}

.form-divider h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream-light);
  margin-bottom: 24px;
  text-align: center;
}

/* ========================================
   TIME SLOTS
   ======================================== */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (min-width: 640px) {
  .time-slots-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.time-slot {
  padding: 12px 8px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  color: var(--cream);
}

.time-slot:hover:not(.time-slot-disabled) {
  border-color: var(--amber);
  background: var(--amber-glow);
}

.time-slot-selected {
  background: var(--amber-glow) !important;
  border-color: var(--amber) !important;
  color: var(--amber) !important;
}

.time-slot-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.time-slot-spots {
  display: block;
  font-size: 0.65rem;
  color: var(--cream-muted);
  margin-top: 4px;
}

/* ========================================
   STATUS BADGES
   ======================================== */
.status-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 2px;
  font-family: var(--font-nav);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-pending {
  background: rgba(201, 176, 107, 0.2);
  color: var(--gold);
}

.status-confirmed {
  background: rgba(107, 143, 94, 0.2);
  color: var(--olive-light);
}

.status-completed {
  background: rgba(107, 143, 94, 0.3);
  color: var(--olive-light);
}

.status-cancelled {
  background: rgba(180, 80, 80, 0.2);
  color: #c88;
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--olive-muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--olive-dark);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }

.rounded { border-radius: 4px; }

.overflow-hidden { overflow: hidden; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.transition { transition: all 0.3s ease; }

.cursor-pointer { cursor: pointer; }

.border-t { border-top: 1px solid var(--border-subtle); }
.border-b { border-bottom: 1px solid var(--border-subtle); }

.text-amber { color: var(--amber); }
.text-olive { color: var(--olive); }
.text-gold { color: var(--gold); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }

.grid { display: grid; }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:flex { display: flex; }
}

/* Gold shimmer effect */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

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

/* ========================================
   MOBILE BOTTOM BAR
   ======================================== */
.mobile-bottom-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 8px;
  gap: 8px;
}

@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-bottom-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 6px;
  font-family: var(--font-nav);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.mobile-bottom-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-bottom-btn-book {
  background: var(--amber);
  color: var(--bg-primary);
}

.mobile-bottom-btn-book:hover {
  background: var(--amber-light);
}

.mobile-bottom-btn-call {
  background: var(--olive);
  color: var(--cream-light);
}

.mobile-bottom-btn-call:hover {
  background: var(--olive-light);
}

/* Add padding to body for mobile bottom bar */
@media (max-width: 767px) {
  body {
    padding-bottom: 76px;
  }
}

/* ========================================
   GIFT CARD SECTION
   ======================================== */
.gift-card-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.gift-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .gift-card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.gift-card-content .section-title {
  text-align: left;
  margin-top: 16px;
}

.gift-card-text {
  font-family: var(--font-body);
  color: var(--cream-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.gift-card-options {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.gift-card-option {
  flex: 1;
  background: var(--bg-card);
  border: 2px solid var(--amber);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.gift-card-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 148, 58, 0.2);
}

.gift-card-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 4px;
}

.gift-card-label {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-muted);
}

.gift-card-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: 6px;
  border-left: 3px solid var(--olive);
}

.gift-card-note svg {
  width: 20px;
  height: 20px;
  color: var(--olive);
  flex-shrink: 0;
}

.gift-card-note span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream-muted);
}

.gift-card-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gift-card-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 148, 58, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gift-card-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 148, 58, 0.2);
}

/* ========================================
   DAILY MENU POPUP
   ======================================== */
.daily-menu-popup {
  position: fixed;
  inset: 0;
  background: rgba(20, 26, 17, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.daily-menu-popup.hidden {
  display: none;
}

.daily-menu-popup-content {
  background: var(--bg-card);
  border: 1px solid var(--amber);
  border-radius: 12px;
  max-width: 450px;
  width: 100%;
  padding: 32px;
  position: relative;
  animation: popupSlideIn 0.4s ease;
}

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

.daily-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px;
  border-radius: 4px;
  color: var(--cream-muted);
  transition: all 0.2s ease;
}

.daily-menu-close:hover {
  background: rgba(232, 213, 181, 0.1);
  color: var(--cream);
}

.daily-menu-close svg {
  width: 24px;
  height: 24px;
}

.daily-menu-header {
  text-align: center;
  margin-bottom: 24px;
}

.daily-menu-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--amber);
  color: var(--bg-primary);
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 4px;
  margin-bottom: 12px;
}

.daily-menu-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream-muted);
}

.daily-menu-body {
  margin-bottom: 24px;
}

.daily-menu-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.daily-menu-item:last-of-type {
  border-bottom: none;
}

.daily-menu-course {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--olive);
  margin-bottom: 6px;
}

.daily-menu-dish {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--cream-light);
  line-height: 1.5;
}

.daily-menu-price {
  text-align: center;
  padding-top: 16px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--amber);
}

.daily-menu-footer {
  text-align: center;
}

.daily-menu-footer .btn-primary {
  width: 100%;
}
