/* ============================================================
   OSTERIA N.3 — Premium Restaurant CSS
   Address: Praia, Cape Verde
   Contact: +238 918 610
   Theme: Dark Forest Green + Burnt Orange | Bold Modern Dining
   ============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --green-dark:    #0a1f0f;
  --green-deep:    #122b18;
  --green-mid:     #1a3d22;
  --green-accent:  #2d6a3f;
  --orange:        #e85d04;
  --orange-light:  #f48c06;
  --orange-glow:   rgba(232, 93, 4, 0.15);
  --cream:         #f5efe6;
  --cream-dark:    #e8ddd0;
  --white:         #ffffff;
  --text-light:    #c8d5cb;
  --text-muted:    #8a9e8e;
  --gold:          #c9a84c;
  --gold-light:    #e0c068;

  --font-display:  'Playfair Display', serif;
  --font-script:   'Dancing Script', cursive;
  --font-body:     'Raleway', sans-serif;

  --transition:    all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --shadow-sm:     0 4px 20px rgba(0,0,0,0.3);
  --shadow-md:     0 8px 40px rgba(0,0,0,0.45);
  --shadow-lg:     0 20px 80px rgba(0,0,0,0.6);
  --shadow-orange: 0 8px 30px rgba(232, 93, 4, 0.35);
  --radius:        4px;
  --radius-lg:     12px;
}

/* ---------- 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(--green-dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ---------- Selection ---------- */
::selection { background: var(--orange); color: var(--white); }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--green-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.loader-subtitle {
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.loader-bar {
  width: 150px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  width: 30%;
  animation: loaderProgress 1.5s ease-in-out infinite;
}

@keyframes loaderProgress {
  0% { width: 10%; }
  50% { width: 70%; }
  100% { width: 90%; }
}

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

/* ============================================================
   RESERVATION DETAILS
   ============================================================ */
.res-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.res-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.res-detail .icon {
  font-size: 1.5rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.res-detail h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.res-detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CTA BANNER BUTTONS
   ============================================================ */
.cta-banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 31, 15, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 68px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(232, 93, 4, 0.2);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--orange);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.75rem !important;
  letter-spacing: 2px !important;
  transition: var(--transition) !important;
  box-shadow: var(--shadow-orange);
}

.nav-cta:hover {
  background: var(--orange-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(232, 93, 4, 0.5) !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(10, 31, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--orange); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  border: 2px solid var(--orange);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 93, 4, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.4);
}

/* ============================================================
   ANIMATIONS - CRITICAL FOR VISIBILITY
   ============================================================ */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Reveal States */
.reveal, .reveal-left, .reveal-right, .stagger > * {
  opacity: 0;
}

.reveal.visible {
  animation: fadeUp 0.6s ease forwards;
}

.reveal-left.visible {
  animation: slideInLeft 0.6s ease forwards;
}

.reveal-right.visible {
  animation: slideInRight 0.6s ease forwards;
}

.stagger > * {
  animation: fadeUp 0.6s ease forwards;
}

.stagger > *:nth-child(1) { animation-delay: 0s; }
.stagger > *:nth-child(2) { animation-delay: 0.1s; }
.stagger > *:nth-child(3) { animation-delay: 0.2s; }
.stagger > *:nth-child(4) { animation-delay: 0.3s; }
.stagger > *:nth-child(5) { animation-delay: 0.4s; }
.stagger > *:nth-child(6) { animation-delay: 0.5s; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1.8rem; height: 1px;
  background: var(--orange);
  transform: translateY(-50%);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-title em {
  color: var(--orange);
  font-style: italic;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  margin: 1.5rem 0;
  border-radius: 2px;
}

.divider.center { margin: 1.5rem auto; }

/* ============================================================
   HERO — index.html
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 8s ease;
  top: -80px;
}

/* Page hero backgrounds */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero-bg.menu-bg {
  background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920&q=80');
}

.page-hero-bg.reservation-bg {
  background-image: url('https://images.unsplash.com/photo-1424847651672-bf20a4b0982b?w=1920&q=80');
}

.page-hero-bg.about-bg {
  background-image: url('https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?w=1920&q=80');
}

.page-hero-bg.contact-bg {
  background-image: url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?w=1920&q=80');
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,31,15,0.92) 0%,
    rgba(10,31,15,0.75) 45%,
    rgba(10,31,15,0.4) 100%
  );
}

/* Particle canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-glow);
  border: 1px solid rgba(232, 93, 4, 0.4);
  color: var(--orange-light);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s ease forwards;
}

.hero-title .highlight {
  color: var(--orange);
  font-style: italic;
}

.hero-title .line2 {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  color: var(--cream);
  font-weight: 400;
  margin-top: 0.3rem;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.9s 0.7s ease forwards;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.9s ease forwards;
}

.hero-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 1.1s ease forwards;
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-info-item .icon {
  font-size: 1.1rem;
  color: var(--orange);
}

.hero-info-item span {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s ease forwards;
}

.scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ============================================================
   FEATURES / ICONS STRIP
   ============================================================ */
.features-strip {
  background: var(--green-deep);
  border-top: 1px solid rgba(232, 93, 4, 0.2);
  border-bottom: 1px solid rgba(232, 93, 4, 0.2);
  padding: 3rem 8%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(232, 93, 4, 0.06);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px; height: 60px;
  background: var(--orange-glow);
  border: 1px solid rgba(232, 93, 4, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}

.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   ABOUT SECTION (Homepage Snippet)
   ============================================================ */
.about-section {
  padding: 7rem 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 80%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--green-dark);
  box-shadow: var(--shadow-md);
}

.about-badge {
  position: absolute;
  top: 30px; right: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-orange);
}

.about-badge .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.about-badge .label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-content { padding-top: 2rem; }

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat { text-align: center; }

.stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
}

.stat .label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   MENU PREVIEW — Homepage
   ============================================================ */
.menu-preview {
  padding: 7rem 8%;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.menu-preview::before {
  content: '"';
  position: absolute;
  top: -3rem; right: 5%;
  font-family: var(--font-display);
  font-size: 25rem;
  color: rgba(232, 93, 4, 0.04);
  line-height: 1;
  pointer-events: none;
}

.menu-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: var(--green-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  position: relative;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 93, 4, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.menu-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img { transform: scale(1.05); }

.menu-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.menu-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
}

.menu-card-btn {
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.4);
  color: var(--orange);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.menu-card-btn:hover {
  background: var(--orange);
  color: var(--white);
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 320px;
  overflow: hidden;
}

.gallery-strip-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.75);
}

.gallery-strip-item:hover img {
  transform: scale(1.12);
  filter: brightness(0.9);
}

.gallery-strip-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,15,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-strip-item:hover .overlay { opacity: 1; }

.gallery-strip-item .overlay span {
  font-size: 0.75rem;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   RESERVATION TEASER — Homepage
   ============================================================ */
.reservation-teaser {
  padding: 7rem 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--green-dark);
}

.reservation-teaser-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}

.reservation-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservation-teaser-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232, 93, 4, 0.15) 0%,
    transparent 60%
  );
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 7rem 8%;
  background: var(--green-mid);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--green-deep);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: left;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(232, 93, 4, 0.15);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 93, 4, 0.25);
}

.stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.stars span {
  font-size: 1rem;
  color: var(--orange);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info { flex: 1; }

.author-info .name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}

.author-info .role {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(
    135deg,
    rgba(232, 93, 4, 0.15) 0%,
    rgba(26, 61, 34, 0.6) 100%
  );
  padding: 6rem 8%;
  text-align: center;
  border-top: 1px solid rgba(232, 93, 4, 0.3);
  border-bottom: 1px solid rgba(232, 93, 4, 0.3);
}

.cta-banner-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--green-deep);
  padding: 5rem 8% 2rem;
  border-top: 1px solid rgba(232, 93, 4, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  display: block;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  display: block;
  margin-top: 0.3rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 35px;
  height: 35px;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.footer-contact-item .icon {
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-bottom span {
  color: var(--orange);
  font-weight: 600;
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: rgba(255,255,255,0.08);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

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

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .navbar {
    padding: 0 3%;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-section,
  .reservation-teaser {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
    height: 250px;
  }

  .cta-banner-buttons {
    flex-direction: column;
  }

  .cta-banner-buttons a {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 600px;
    margin-top: 70px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 200px;
  }

  .about-img-main {
    width: 100%;
  }

  .about-img-accent {
    width: 45%;
  }

  .menu-cards {
    grid-template-columns: 1fr;
  }

  .res-details {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
    margin-top: 60px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

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

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.4rem 1rem;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
    height: 150px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-img-accent {
    bottom: -30px;
    width: 50%;
    height: 200px;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 2rem;
  }

  .cta-banner {
    padding: 3rem 5%;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }
}
