/* ============================================
   BURRITO DELIVERY EXPERIENCE GUIDE
   Main Stylesheet
   Colors: Warm Red #C0392B, Orange #E67E22, 
           Dark Brown #3E1C00, Cream #FFF8F0
============================================ */

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

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: #FFF8F0;
  color: #2C1A0E;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #C0392B; text-decoration: none; transition: color 0.25s; }
a:hover { color: #E67E22; }
ul, ol { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.25;
  color: #3E1C00;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p  { font-size: 1.05rem; margin-bottom: 1.1rem; color: #3d2b1f; }
strong { color: #3E1C00; }

/* ---------- LAYOUT ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-alt { background: #FFF0E0; }
.section-dark { background: #3E1C00; color: #FFF8F0; }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p { color: #FFF8F0; }

/* ---------- GRID ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 36px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }

/* ---------- NAVIGATION ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #3E1C00;
  box-shadow: 0 3px 20px rgba(0,0,0,0.4);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
  max-width: 1180px;
  margin: 0 auto;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-brand .logo-icon { font-size: 2rem; }
.navbar-brand .logo-text {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFD580;
  line-height: 1.1;
}
.navbar-brand .logo-text span { color: #E67E22; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: #FFE8C8;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { background: #C0392B; color: #fff; }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.75rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  min-width: 210px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 2000;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  color: #3E1C00;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid #f5e6d8;
  background: #fff;
}
.dropdown-menu a:hover { background: #FFF0E0; color: #C0392B; }

.nav-cta {
  background: #C0392B !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 9px 20px !important;
  letter-spacing: 0.4px;
}
.nav-cta:hover { background: #E67E22 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span { width: 26px; height: 3px; background: #FFE8C8; border-radius: 3px; transition: all 0.3s; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #3E1C00 0%, #6B2E0A 40%, #C0392B 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1626700051175-6818013e1d4f?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding: 60px 24px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.hero-eyebrow {
  display: inline-block;
  background: #E67E22;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hero-content h1 { color: #FFD580; text-shadow: 0 2px 12px rgba(0,0,0,0.5); margin-bottom: 22px; }
.hero-content p   { color: #FFE8C8; font-size: 1.2rem; max-width: 600px; margin: 0 auto 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  border: none;
}
.btn-primary   { background: #C0392B; color: #fff; }
.btn-primary:hover { background: #E67E22; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192,57,43,0.4); }
.btn-secondary { background: transparent; color: #FFD580; border: 2px solid #FFD580; }
.btn-secondary:hover { background: #FFD580; color: #3E1C00; transform: translateY(-2px); }
.btn-orange    { background: #E67E22; color: #fff; }
.btn-orange:hover { background: #CF6D17; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230,126,34,0.4); }
.btn-outline   { background: transparent; color: #C0392B; border: 2px solid #C0392B; }
.btn-outline:hover { background: #C0392B; color: #fff; }
.btn-white     { background: #fff; color: #3E1C00; }
.btn-white:hover { background: #FFD580; color: #3E1C00; }

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header .eyebrow {
  display: inline-block;
  color: #C0392B;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.08rem; color: #6B4226; }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, #C0392B, #E67E22);
  border-radius: 4px;
  margin: 14px auto 0;
}

/* ---------- CARDS ---------- */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(62,28,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(62,28,0,0.15); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #E67E22;
  background: #FFF0E0;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card-body p  { font-size: 0.92rem; color: #6B4226; margin-bottom: 16px; }
.card-link { font-size: 0.9rem; font-weight: 700; color: #C0392B; }
.card-link:hover { color: #E67E22; }
.card-link::after { content: ' →'; }

/* ---------- FEATURE ICONS ---------- */
.feature-icon-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(62,28,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-icon-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(62,28,0,0.13); }
.fi-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #C0392B, #E67E22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
}
.feature-icon-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-icon-card p  { font-size: 0.92rem; color: #6B4226; margin: 0; }

/* ---------- INGREDIENT BADGE ---------- */
.ingredient-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.ingredient-badge {
  background: #FFF0E0;
  border: 1px solid #E8C8A0;
  color: #6B2E0A;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ---------- STEPS ---------- */
.step-item { display: flex; gap: 22px; align-items: flex-start; margin-bottom: 36px; }
.step-number {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #C0392B, #E67E22);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(192,57,43,0.35);
}
.step-content h4 { font-size: 1.1rem; margin-bottom: 6px; }
.step-content p  { font-size: 0.96rem; color: #6B4226; margin: 0; }

/* ---------- HERO MINI (inner pages) ---------- */
.hero-mini {
  background: linear-gradient(135deg, #3E1C00, #6B2E0A);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-mini::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1599974579688-8dbdd335c77f?w=1200&q=70') center/cover no-repeat;
  opacity: 0.12;
}
.hero-mini .container { position: relative; z-index: 1; }
.hero-mini .eyebrow {
  display: inline-block;
  background: #E67E22;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.hero-mini h1 { color: #FFD580; margin-bottom: 16px; }
.hero-mini p  { color: #FFE8C8; font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  background: #FFF0E0;
  padding: 12px 0;
  border-bottom: 1px solid #E8C8A0;
}
.breadcrumb-list { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.breadcrumb-list a { color: #C0392B; font-weight: 600; }
.breadcrumb-list span { color: #A07850; }

/* ---------- CALLOUT BANNER ---------- */
.callout-banner {
  background: linear-gradient(135deg, #C0392B, #E67E22);
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
  color: #fff;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}
.callout-banner::before {
  content: '🌯';
  position: absolute;
  font-size: 12rem;
  opacity: 0.08;
  right: -20px;
  top: -30px;
}
.callout-banner h2, .callout-banner p { color: #fff; }
.callout-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.callout-banner p  { font-size: 1.08rem; margin-bottom: 28px; opacity: 0.92; }
.callout-banner .btn-white { font-size: 1rem; padding: 14px 36px; }

/* ---------- QUOTE / HIGHLIGHT ---------- */
.highlight-box {
  background: linear-gradient(135deg, #FFF0E0, #FFE0C0);
  border-left: 5px solid #E67E22;
  border-radius: 0 12px 12px 0;
  padding: 26px 30px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.08rem;
  color: #6B2E0A;
}
.highlight-box strong { color: #C0392B; font-style: normal; }

/* ---------- TABLE ---------- */
.table-wrap { overflow-x: auto; border-radius: 12px; box-shadow: 0 4px 20px rgba(62,28,0,0.08); }
table { width: 100%; border-collapse: collapse; background: #fff; }
thead { background: #3E1C00; color: #FFD580; }
thead th { padding: 16px 20px; font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase; }
tbody td { padding: 14px 20px; border-bottom: 1px solid #f5ece4; font-size: 0.95rem; color: #3d2b1f; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: #FFF8F0; }

/* ---------- BLOG CARDS ---------- */
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(62,28,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(62,28,0,0.15); }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 26px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-category { font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #E67E22; background: #FFF0E0; padding: 3px 10px; border-radius: 20px; }
.blog-date { font-size: 0.8rem; color: #A07850; }
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card-body p  { font-size: 0.9rem; color: #6B4226; margin-bottom: 18px; }
.read-more { font-size: 0.9rem; font-weight: 700; color: #C0392B; }
.read-more::after { content: ' →'; }
.read-more:hover { color: #E67E22; }

/* ---------- SIDEBAR ---------- */
.sidebar { display: flex; flex-direction: column; gap: 32px; }
.sidebar-widget { background: #fff; border-radius: 16px; padding: 26px; box-shadow: 0 4px 18px rgba(62,28,0,0.07); }
.sidebar-widget h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: #3E1C00; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #E8C8A0; }
.sidebar-widget ul li { border-bottom: 1px solid #f5ece4; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { display: block; padding: 9px 0; font-size: 0.9rem; font-weight: 600; color: #6B2E0A; }
.sidebar-widget ul li a:hover { color: #C0392B; padding-left: 6px; }
.category-badge-list { display: flex; flex-wrap: wrap; gap: 8px; }
.category-badge {
  background: #FFF0E0;
  color: #6B2E0A;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid #E8C8A0;
  transition: background 0.2s, color 0.2s;
}
.category-badge:hover { background: #C0392B; color: #fff; border-color: #C0392B; }

/* ---------- FAQ ---------- */
.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(62,28,0,0.06);
}
.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: #3E1C00;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF8F0;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: #FFF0E0; }
.faq-question .faq-icon { font-size: 1.3rem; color: #E67E22; transition: transform 0.3s; }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.97rem;
  color: #6B4226;
  background: #fff;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 18px 24px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ---------- CONTACT FORM ---------- */
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 700; color: #3E1C00; margin-bottom: 6px; letter-spacing: 0.3px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #E8C8A0;
  border-radius: 10px;
  font-size: 0.97rem;
  color: #3E1C00;
  background: #FFF8F0;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #E67E22;
  box-shadow: 0 0 0 4px rgba(230,126,34,0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ---------- FOOTER ---------- */
.footer {
  background: #1E0D00;
  color: #C8A882;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid #3E1C00;
}
.footer-brand .logo-text { font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700; color: #FFD580; }
.footer-brand .logo-text span { color: #E67E22; }
.footer-brand p { font-size: 0.92rem; margin: 14px 0 20px; color: #A07850; line-height: 1.7; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: #A07850; margin-bottom: 8px; }
.footer-contact-item .icon { color: #E67E22; font-size: 1rem; }
.footer h5 { color: #FFD580; font-size: 0.9rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #A07850; font-size: 0.9rem; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: #E67E22; padding-left: 4px; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #6B4226;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: #A07850; margin-left: 16px; }
.footer-bottom a:hover { color: #E67E22; }
.footer-legal { display: flex; gap: 4px; flex-wrap: wrap; }

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

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px; height: 46px;
  background: #C0392B;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(192,57,43,0.4);
  transition: background 0.2s, transform 0.2s;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: #E67E22; transform: translateY(-3px); }

/* ---------- TAGS / CHIPS ---------- */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag { font-size: 0.8rem; font-weight: 600; color: #6B2E0A; background: #FFF0E0; border: 1px solid #E8C8A0; padding: 4px 12px; border-radius: 20px; }

/* ---------- RATING STARS ---------- */
.stars { color: #E67E22; font-size: 1.1rem; letter-spacing: 2px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: #3E1C00;
    padding: 20px 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    gap: 4px;
  }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 40px 16px; }
  .callout-banner { padding: 36px 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}