/* El Este Taqueria - Optimized CSS - No Animations */

:root {
    --primary: #C41E3A;
    --primary-dark: #9B1B30;
    --secondary: #E8A317;
    --accent: #228B22;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --gray: #666;
    --gray-light: #999;
    --light: #f5f5f5;
    --white: #fff;
    --cream: #FDF5E6;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--dark); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); text-align: center; margin-bottom: 0.5rem; }
.title-decoration { width: 80px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); margin: 0 auto 2rem; border-radius: 2px; }
.section-intro { text-align: center; color: var(--gray); font-size: 1.125rem; max-width: 600px; margin: 0 auto 3rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 2rem; font-size: 1rem; font-weight: 600; border-radius: 8px; border: 2px solid transparent; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--primary); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; padding: 1rem 0; }
.navbar.scrolled { background: var(--dark); box-shadow: 0 2px 10px rgba(0,0,0,0.2); padding: 0.5rem 0; }
.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; color: var(--white); font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; }
.nav-logo img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-link { color: var(--white); font-weight: 500; padding: 0.5rem; }
.nav-link:hover { color: var(--secondary); }
.nav-cta { background: var(--primary); padding: 0.75rem 1.5rem; border-radius: 8px; }
.nav-cta:hover { background: var(--primary-dark); color: var(--white); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { width: 25px; height: 3px; background: var(--white); border-radius: 2px; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: url('images/el-este-taqueria.jpeg') center/cover no-repeat; color: var(--white); text-align: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.4), rgba(0,0,0,0.7)); }
.hero-content { position: relative; z-index: 1; padding: 1.5rem; max-width: 800px; }
.hero-title { font-size: clamp(3rem, 10vw, 5rem); margin-bottom: 0.5rem; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.hero-subtitle { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 300; margin-bottom: 1rem; color: var(--secondary); text-transform: uppercase; letter-spacing: 4px; }
.hero-tagline { font-size: 1.25rem; margin-bottom: 1.5rem; opacity: 0.9; }
.hero-rating { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.hero-rating .stars { color: var(--secondary); font-size: 1.5rem; letter-spacing: 2px; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Story */
.story { padding: 5rem 0; background: var(--cream); }
.story-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.story-text .section-title { text-align: left; }
.story-text .title-decoration { margin-left: 0; }
.story-intro { font-size: 1.5rem; font-weight: 600; color: var(--primary); margin-bottom: 1rem; }
.story-text p { color: var(--gray); margin-bottom: 1rem; }
.story-features { display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.feature { display: flex; align-items: center; gap: 0.5rem; background: var(--white); padding: 0.75rem 1.25rem; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.feature-icon { font-size: 1.5rem; }
.story-image img { border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); width: 100%; height: 500px; object-fit: cover; }

/* Menu */
.menu { padding: 5rem 0; background: var(--white); }
.menu-section { margin-bottom: 3rem; }
.menu-section-title { font-size: 1.75rem; color: var(--primary); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--secondary); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.menu-item { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.menu-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.menu-item img { width: 100%; height: 180px; object-fit: cover; }
.menu-item-content { padding: 1rem; }
.menu-item-content h4 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--dark); }
.menu-item-content p { font-size: 0.9rem; color: var(--gray); margin-bottom: 0.75rem; line-height: 1.4; }
.menu-item-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 0.5rem; border-top: 1px solid var(--light); }
.menu-item-footer .price { font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.menu-item-footer .tag { font-size: 0.75rem; background: var(--accent); color: var(--white); padding: 0.25rem 0.5rem; border-radius: 4px; font-weight: 600; }
.daily-specials { background: var(--light); padding: 2rem; border-radius: 12px; margin-top: 2rem; }
.specials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.special-day { padding: 0.75rem 1rem; background: var(--white); border-radius: 8px; border-left: 4px solid var(--primary); }
.menu-cta { text-align: center; margin-top: 2rem; padding: 2rem; background: var(--light); border-radius: 12px; }
.menu-cta p { color: var(--gray); margin-bottom: 1rem; }

/* Locations */
.locations { padding: 5rem 0; background: linear-gradient(135deg, var(--dark), var(--dark-light)); color: var(--white); }
.locations .section-title { color: var(--white); }
.locations .section-intro { color: var(--gray-light); }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.location-card { background: var(--white); border-radius: 12px; overflow: hidden; color: var(--dark); }
.location-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.location-header h3 { font-size: 1.75rem; }
.location-badge { background: rgba(255,255,255,0.2); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.875rem; font-weight: 600; }
.location-content { padding: 1.5rem; }
.location-info { margin-bottom: 1.5rem; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1rem; }
.info-icon { font-size: 1.5rem; width: 40px; text-align: center; }
.info-item strong { display: block; color: var(--dark); margin-bottom: 0.25rem; }
.info-item p { color: var(--gray); margin: 0; }
.info-item a { color: var(--primary); }
.info-item a:hover { text-decoration: underline; }
.location-hours { background: var(--light); padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; }
.location-hours h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.location-hours ul li { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--white); font-size: 0.9rem; }
.location-hours ul li:last-child { border-bottom: none; }

/* Contact */
.contact { padding: 5rem 0; background: var(--cream); }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3, .contact-social h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info p { color: var(--gray); margin-bottom: 1.5rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.contact-method { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--white); border-radius: 8px; }
.contact-method:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.contact-icon { font-size: 1.5rem; }
.order-options h4 { font-size: 1.125rem; margin-bottom: 1rem; }
.order-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact-social p { color: var(--gray); margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; margin-bottom: 2rem; }
.social-link { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; background: var(--dark); color: var(--white); border-radius: 50%; }
.social-link:hover { background: var(--primary); }
.reviews-summary { background: var(--white); padding: 1.5rem; border-radius: 8px; }
.reviews-summary h4 { margin-bottom: 1rem; font-size: 1rem; }
.reviews-summary blockquote { font-style: italic; color: var(--gray); margin-bottom: 1rem; padding-left: 1rem; border-left: 3px solid var(--secondary); }
.reviews-summary cite { display: block; font-style: normal; font-weight: 600; color: var(--dark); margin-top: 0.5rem; }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding: 3rem 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: 2fr 3fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--dark-light); }
.footer-brand img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; }
.footer-brand h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.footer-brand p { color: var(--secondary); font-size: 0.9rem; }
.footer-tagline { color: var(--gray-light) !important; margin-top: 1rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-col h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--secondary); }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--gray-light); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { text-align: center; padding-top: 1.5rem; color: var(--gray); font-size: 0.9rem; }
.footer-bottom p { margin-bottom: 0.25rem; }

/* Responsive */
@media (max-width: 992px) {
    .story-content { grid-template-columns: 1fr; }
    .story-text { order: 2; }
    .story-text .section-title, .story-text .title-decoration { text-align: center; margin-left: auto; margin-right: auto; }
    .story-image { order: 1; }
    .story-image img { height: 400px; }
    .contact-content { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-links { justify-items: center; }
}

@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh; background: var(--dark); flex-direction: column; padding: 6rem 1.5rem 1.5rem; box-shadow: -4px 0 20px rgba(0,0,0,0.3); }
    .nav-menu.active { right: 0; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .menu-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }
    .story-features { justify-content: center; }
}

@media (max-width: 480px) {
    .btn { width: 100%; }
    .order-buttons { flex-direction: column; }
}

/* Focus states for accessibility */
a:focus, button:focus { outline: 2px solid var(--secondary); outline-offset: 2px; }

/* Print */
@media print {
    .navbar, .hero-scroll, .btn, .social-links, .nav-toggle { display: none; }
    .hero { min-height: auto; padding: 2rem; }
    .hero-overlay { background: none; }
    .hero-content { color: var(--dark); }
}
