/* Bold Canyon Burritos - Static Styles */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --background: hsl(40, 33%, 97%);
  --foreground: hsl(20, 10%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(20, 10%, 15%);
  --primary: hsl(24, 95%, 53%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(40, 40%, 94%);
  --muted: hsl(40, 20%, 93%);
  --muted-foreground: hsl(20, 10%, 45%);
  --accent: hsl(142, 50%, 42%);
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(30, 20%, 88%);
  --radius: 0.75rem;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); }

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.3s ease;
  padding: 1rem 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--primary); cursor: pointer; }
.navbar.scrolled .navbar-brand { color: var(--primary); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.navbar.scrolled .nav-links a { color: var(--foreground); }
.nav-links a:hover { color: var(--primary); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: white; font-size: 1.5rem; }
.navbar.scrolled .mobile-toggle { color: var(--foreground); }
.mobile-menu { display: none; flex-direction: column; align-items: center; gap: 1rem; padding: 1.5rem 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--foreground); }
.mobile-menu a:hover { color: var(--primary); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(30,20,15,0.5); }
.hero-content { position: relative; z-index: 2; padding: 0 1rem; max-width: 700px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; color: white; margin-bottom: 1rem; line-height: 1.1; }
.hero p { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: white; border: none;
  padding: 0.875rem 2rem; border-radius: 50px; font-size: 1rem;
  font-weight: 600; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(234,88,12,0.35);
  font-family: var(--font-body);
}
.btn-primary:hover { background: hsl(24, 95%, 46%); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(234,88,12,0.4); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--primary); border: 1.5px solid var(--primary);
  padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; cursor: pointer; transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-outline:hover { background: var(--primary); color: white; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 1rem; }
.section-alt { background: var(--card); }
.section-heading { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; text-align: center; margin-bottom: 0.75rem; color: var(--foreground); }
.section-sub { font-size: 1rem; color: var(--muted-foreground); text-align: center; max-width: 600px; margin: 0 auto 3rem; }

/* ===== ABOUT FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 800px; margin: 0 auto; }
.feature-card { text-align: center; padding: 1.5rem; border-radius: 1rem; background: var(--background); }
.feature-icon { width: 56px; height: 56px; border-radius: 50%; background: hsl(24, 95%, 53%, 0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; color: var(--primary); font-size: 1.5rem; }
.feature-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.25rem; }
.feature-card p { font-size: 0.85rem; color: var(--muted-foreground); }

/* ===== MENU CARDS ===== */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.menu-card { background: var(--card); border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: box-shadow 0.3s, transform 0.3s; }
.menu-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-4px); }
.menu-card-img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .menu-card-img { transform: scale(1.05); }
.menu-card-img-wrap { overflow: hidden; position: relative; }
.spicy-badge { position: absolute; top: 0.75rem; right: 0.75rem; background: var(--destructive); color: white; font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.5rem; border-radius: 50px; display: flex; align-items: center; gap: 0.25rem; }
.menu-card-body { padding: 1.5rem; text-align: left; }
.menu-card-body h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.menu-card-body .desc { font-size: 0.85rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.menu-card-body .cal { font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 1rem; }

/* ===== GALLERY ===== */
.gallery-grid { columns: 2; gap: 1rem; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .gallery-grid { columns: 3; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; } }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; }
.gallery-item img { width: 100%; border-radius: 0.75rem; object-fit: cover; transition: brightness 0.3s; }
.gallery-item img:hover { filter: brightness(1.1); }
.gallery-item.tall img { height: 288px; }
.gallery-item.short img { height: 192px; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.review-card { background: var(--card); border-radius: 1rem; padding: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); text-align: left; }
.stars { display: flex; gap: 2px; margin-bottom: 0.75rem; color: var(--primary); }
.review-card .quote { font-size: 0.875rem; color: var(--muted-foreground); font-style: italic; margin-bottom: 1rem; }
.review-card .name { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }

/* ===== FAQ ===== */
.faq-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--background); border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; }
.faq-question { width: 100%; padding: 1rem 1.25rem; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--foreground); text-align: left; display: flex; justify-content: space-between; align-items: center; }
.faq-question .icon { font-size: 1.2rem; transition: transform 0.3s; color: var(--muted-foreground); }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer-inner { padding: 0 1.25rem 1rem; font-size: 0.85rem; color: var(--muted-foreground); }
.faq-item.open .faq-answer { max-height: 200px; }

/* ===== RESERVATIONS ===== */
.reservations-center { text-align: center; }

/* ===== MODAL ===== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal { background: var(--card); border-radius: 1rem; padding: 2rem; max-width: 420px; width: 90%; position: relative; }
.modal h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 1.25rem; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--muted-foreground); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
.form-group { margin-bottom: 0.75rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--foreground); }
.form-group input { width: 100%; padding: 0.625rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.875rem; background: var(--background); color: var(--foreground); outline: none; transition: border-color 0.2s; }
.form-group input:focus { border-color: var(--primary); }
.btn-submit { width: 100%; margin-top: 0.5rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; max-width: 1000px; margin: 0 auto; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; border-radius: 50%; background: hsl(24, 95%, 53%, 0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); }
.contact-item h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.125rem; font-family: var(--font-body); }
.contact-item p, .contact-item a { font-size: 0.85rem; color: var(--muted-foreground); }
.contact-item a { color: var(--primary); }
.contact-item a:hover { text-decoration: underline; }
.contact-map { border-radius: 1rem; overflow: hidden; min-height: 280px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.contact-map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--foreground); color: var(--background); padding: 3.5rem 1rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2.5rem; max-width: 1000px; margin: 0 auto 2.5rem; }
.footer h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; opacity: 0.8; }
.footer p { font-size: 0.85rem; opacity: 0.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.375rem; }
.footer-links a { font-size: 0.85rem; opacity: 0.6; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.social-icons { display: flex; gap: 0.75rem; }
.social-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s; color: inherit; }
.social-icon:hover { background: rgba(255,255,255,0.2); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; max-width: 1000px; margin: 0 auto; }
.footer-bottom p { font-size: 0.75rem; opacity: 0.5; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.5s ease; }
.fade-in.visible { opacity: 1; }
