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

:root {
  --red: #CC1A1A;
  --red-dark: #A01414;
  --red-light: #fdf0f0;
  --gold: #C9A84C;
  --gold-dark: #a88a38;
  --cream: #FDF8F0;
  --dark: #1A1A1A;
  --text-light: #555;
  --white: #ffffff;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
}

/* NAV */
nav {
  background: var(--dark);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.nav-logo img {
  height: 60px;
  padding: 0.4rem 0;
}
.nav-links { display: flex; gap: 0; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 1.2rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-phone {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--red); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #333; }

/* PAGE HEADER */
.page-header {
  background: var(--red);
  color: var(--white);
  padding: 3.5rem 5%;
  text-align: center;
}
.page-header h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.page-header p { font-size: 1.1rem; opacity: 0.85; }

/* SECTIONS */
section { padding: 4rem 5%; }
.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 0.8rem auto 2rem;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a0a 100%);
  color: var(--white);
  padding: 5rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '🌮';
  position: absolute;
  font-size: 16rem;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-logo { height: 130px; margin-bottom: 1.5rem; }
.hero h1 { font-size: 2.8rem; margin-bottom: 0.5rem; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.15rem; opacity: 0.85; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* CARDS */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.8rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  border-top: 4px solid var(--red);
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-3px); }
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.card h3 { color: var(--red); margin-bottom: 0.6rem; font-size: 1.1rem; }
.card p { color: var(--text-light); line-height: 1.6; font-size: 0.95rem; }

/* CTA BANNER */
.cta-banner {
  background: var(--red);
  color: var(--white);
  padding: 3rem 5%;
  text-align: center;
}
.cta-banner.gold { background: var(--gold); }
.cta-banner h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.cta-banner p { margin-bottom: 1.5rem; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; }

/* AI BOX */
.ai-box {
  background: var(--red-light);
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.ai-box h3 { color: var(--red); margin-bottom: 0.5rem; }
.ai-box .phone-number { font-size: 1.8rem; font-weight: 700; color: var(--red); margin: 0.5rem 0; }

/* MENU PAGE */
.menu-section {
  margin-bottom: 3rem;
}
.menu-section h2 {
  font-size: 1.5rem;
  color: var(--red);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid #f0e8e8;
  gap: 1rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info h4 { font-size: 1rem; color: var(--dark); margin-bottom: 0.2rem; }
.menu-item-info p { font-size: 0.85rem; color: var(--text-light); line-height: 1.4; }
.menu-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.menu-note {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  border-radius: 0 4px 4px 0;
}
.menu-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  vertical-align: middle;
  text-transform: uppercase;
}
.taco-styles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.taco-style-box {
  background: var(--cream);
  border-radius: 6px;
  padding: 1rem;
  border: 2px solid var(--gold);
}
.taco-style-box h4 { color: var(--red); margin-bottom: 0.4rem; font-size: 0.95rem; }
.taco-style-box p { font-size: 0.85rem; color: var(--text-light); }

/* CATERING FORM */
.catering-form {
  background: var(--cream);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: flex-start; }
.contact-item .icon { font-size: 1.5rem; }
.contact-item p { color: var(--text-light); line-height: 1.6; }
.contact-item a { color: var(--red); text-decoration: none; }
.map-embed { border-radius: 8px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.1); }

/* HOURS TABLE */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table tr { border-bottom: 1px solid #eee; }
.hours-table td { padding: 0.6rem 0; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--red); }

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 2.5rem 5%;
  text-align: center;
}
footer a { color: var(--gold); text-decoration: none; }
footer .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }
footer p { font-size: 0.85rem; margin-top: 0.5rem; }
footer .footer-logo { height: 60px; margin-bottom: 1rem; opacity: 0.9; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .nav-links { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .taco-styles { grid-template-columns: 1fr; }
  .hero-logo { height: 90px; }
}
