/* ===================================
   MI LINDO TACOS — Style System
   Burgundy + Blush | Warm & Friendly
   =================================== */

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

:root {
  --burgundy: #800020;
  --burgundy-dark: #5C0017;
  --burgundy-light: #A0314B;
  --blush: #FFDAB9;
  --blush-light: #FFF0E6;
  --blush-dark: #E8B896;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE4;
  --text-dark: #2D1F1F;
  --text-mid: #5C4040;
  --text-light: #8A6F6F;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(128, 0, 32, 0.08);
  --shadow-md: 0 4px 20px rgba(128, 0, 32, 0.12);
  --shadow-lg: 0 8px 40px rgba(128, 0, 32, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--burgundy); color: var(--white); padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); z-index: 9999;
  font-weight: 700; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* --- SECTION TITLES --- */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--burgundy);
  background: var(--blush-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* --- HEADER --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(128, 0, 32, 0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.25rem; color: var(--burgundy);
}
.logo-light .logo-text { color: var(--blush); }
.logo-light .logo-icon circle { fill: var(--blush); }
.logo-light .logo-icon path { fill: var(--burgundy); }

.main-nav ul { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  color: var(--text-mid); transition: all var(--transition);
}
.main-nav a:hover { color: var(--burgundy); background: var(--blush-light); }
.btn-nav {
  background: var(--burgundy) !important; color: var(--white) !important;
  margin-left: 0.5rem;
}
.btn-nav:hover { background: var(--burgundy-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none; width: 44px; height: 44px; position: relative;
  align-items: center; justify-content: center; border-radius: var(--radius-sm);
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 22px; height: 2px; background: var(--burgundy);
  border-radius: 2px; transition: all var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* --- HERO --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(128, 0, 32, 0.82) 0%,
    rgba(92, 0, 23, 0.70) 50%,
    rgba(45, 31, 31, 0.60) 100%
  );
}
.hero-content {
  position: relative; z-index: 1; padding: 4rem 1.5rem;
  max-width: 720px;
}
.hero-tag {
  display: inline-block;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--blush); margin-bottom: 1.25rem;
  background: rgba(255, 218, 185, 0.15); border: 1px solid rgba(255, 218, 185, 0.3);
  padding: 0.5rem 1.25rem; border-radius: 50px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1; color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic; color: var(--blush);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255, 255, 255, 0.85);
  line-height: 1.7; margin-bottom: 2rem; max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 50px; font-weight: 700;
  font-size: 1rem; transition: all var(--transition);
}
.btn-primary {
  background: var(--blush); color: var(--burgundy);
  box-shadow: 0 4px 15px rgba(255, 218, 185, 0.4);
}
.btn-primary:hover {
  background: var(--white); transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 218, 185, 0.5);
}
.btn-secondary {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover {
  border-color: var(--white); background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* --- HERO BADGES --- */
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600; color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem; border-radius: 50px;
}
.badge svg { opacity: 0.9; }

/* --- HERO SCROLL --- */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.15em; animation: float 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- FEATURES STRIP --- */
.features-strip {
  padding: 5rem 0;
  background: var(--white);
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem;
}
.feature-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.75rem; border-radius: var(--radius-md);
  background: var(--cream); border: 1px solid rgba(128, 0, 32, 0.06);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(128, 0, 32, 0.12);
}
.feature-icon {
  flex-shrink: 0; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush-light); border-radius: var(--radius-sm);
}
.feature-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.35rem;
}
.feature-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* --- MENU SECTION --- */
.menu-section {
  padding: 6rem 0;
  background: var(--cream);
}
.menu-tabs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem;
  margin: 3rem 0 2rem;
}
.tab-btn {
  padding: 0.7rem 1.5rem; border-radius: 50px; font-weight: 700;
  font-size: 0.95rem; color: var(--text-mid);
  background: var(--white); border: 2px solid transparent;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--burgundy); border-color: var(--blush); }
.tab-btn.active {
  background: var(--burgundy); color: var(--white);
  border-color: var(--burgundy);
}
.menu-panel { display: none; animation: fadeUp 0.4s ease; }
.menu-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem; max-width: 900px; margin: 0 auto;
}
.menu-item {
  padding: 1.5rem; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid rgba(128, 0, 32, 0.06);
  transition: all var(--transition);
}
.menu-item:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
  border-color: rgba(128, 0, 32, 0.12);
}
.menu-item.highlight-item {
  border-color: var(--blush-dark);
  background: linear-gradient(135deg, var(--blush-light), var(--white));
}
.menu-item-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.4rem;
}
.menu-item h4 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--text-dark);
}
.menu-item-tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--burgundy);
  background: var(--blush-light); padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.menu-item-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.menu-note {
  text-align: center; font-size: 0.85rem; color: var(--text-light);
  margin-top: 2rem; font-style: italic;
}

/* --- ABOUT --- */
.about-section {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -2rem; right: -2rem;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--white);
  max-width: 55%;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute; top: -1.5rem; left: -1.5rem;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--blush); opacity: 0.5; z-index: -1;
}
.about-content .section-tag { margin-bottom: 0.75rem; }
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content p {
  color: var(--text-mid); margin-bottom: 1rem; font-size: 1.05rem;
}
.about-stats {
  display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(128, 0, 32, 0.1);
}
.stat-number {
  display: block; font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--burgundy); line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-light); font-weight: 600; }

/* --- GALLERY --- */
.gallery-section { padding: 6rem 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 5/4; transition: all var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* --- TESTIMONIALS --- */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,218,185,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,218,185,0.08) 0%, transparent 50%);
}
.testimonials-section .section-tag { background: rgba(255,218,185,0.2); color: var(--blush); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem; position: relative; z-index: 1;
}
.testimonial-card {
  padding: 2rem; border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px); transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: var(--blush); opacity: 0.4; margin-bottom: -0.5rem;
}
.testimonial-text {
  font-size: 1.05rem; color: rgba(255, 255, 255, 0.9); line-height: 1.7;
  margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-name { display: block; font-weight: 700; color: var(--white); font-size: 0.95rem; }
.author-location { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* --- LOCATION --- */
.location-section { padding: 6rem 0; background: var(--white); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.info-block { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush-light); border-radius: var(--radius-sm);
}
.info-item h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.2rem;
}
.info-item p { font-size: 0.95rem; color: var(--text-light); }
.info-item a {
  color: var(--burgundy); font-weight: 600;
  transition: color var(--transition);
}
.info-item a:hover { color: var(--burgundy-light); }
.hours-block { margin-top: 2rem; padding: 1.5rem; background: var(--cream); border-radius: var(--radius-md); }
.hours-block h4 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 1rem;
}
.hours-table { width: 100%; }
.hours-table td {
  padding: 0.5rem 0; font-size: 0.95rem; color: var(--text-mid);
  border-bottom: 1px solid rgba(128, 0, 32, 0.06);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 600; color: var(--text-dark); }
.location-map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); min-height: 450px;
}

/* --- CONTACT --- */
.contact-section {
  padding: 6rem 0;
  background: var(--cream);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 0.8fr; gap: 3rem; align-items: stretch;
}
.contact-form {
  margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  border: 2px solid rgba(128, 0, 32, 0.12);
  background: var(--white); color: var(--text-dark);
  transition: all var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center; padding: 3rem 2rem;
  background: var(--white); border-radius: var(--radius-md);
  border: 2px solid rgba(76, 175, 80, 0.2);
}
.success-icon { margin-bottom: 1rem; }
.form-success h4 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.form-success p { color: var(--text-light); }
.contact-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 500px;
}
.contact-visual img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
}
.contact-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
  background: linear-gradient(to top, rgba(45, 31, 31, 0.8), transparent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.contact-overlay-text {
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--white); font-style: italic;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--text-dark); color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand p { margin-top: 1rem; font-size: 0.95rem; line-height: 1.7; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}
.social-link:hover { background: var(--blush); color: var(--burgundy); transform: translateY(-2px); }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--blush); margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.9rem; transition: color var(--transition);
}
.footer-links a:hover { color: var(--blush); }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a {
  color: rgba(255, 255, 255, 0.7); transition: color var(--transition);
}
.footer-contact a:hover { color: var(--blush); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- MOBILE NAV --- */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem; border-bottom: 1px solid rgba(128, 0, 32, 0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%); opacity: 0;
    transition: all var(--transition); pointer-events: none;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; gap: 0.25rem; }
  .main-nav a { display: block; padding: 0.85rem 1rem; width: 100%; text-align: center; }
  .btn-nav { margin-left: 0 !important; margin-top: 0.5rem; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-secondary { right: 1rem; bottom: -1rem; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 350px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-visual { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content { padding: 3rem 1.5rem; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-badges { gap: 0.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-secondary { max-width: 60%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 1rem; }
}

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