:root {
  --primary: #c8102e;
  --primary-dark: #a00d24;
  --secondary: #ffd700;
  --secondary-dark: #e6c200;
  --dark: #1a1a1a;
  --text: #333;
  --text-light: #555;
  --bg: #fafafa;
  --white: #fff;
  --radius: 1rem;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --font: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.75rem 0;
}

header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.brand { display: flex; align-items: center; }

.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: opacity 0.2s;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover { opacity: 0.85; border-bottom-color: var(--secondary); }

.lang-switcher { display: flex; gap: 0.5rem; }

.lang-switcher a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.lang-switcher a:hover { background: rgba(255,255,255,0.15); }

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding: 2rem 1rem;
  gap: 1rem;
  overflow: hidden;
}

.hero-side-img { display: none; }

@media (min-width: 768px) {
  .hero-side-img {
    display: block;
    max-width: 28%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
  }
}

.hero-center { flex: 1; text-align: center; }

.hero-logo { max-width: 90%; height: auto; }

.intro-section {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
}

.intro-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.intro-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200,16,46,0.3);
}

.primary-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.4);
}

.local-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
}

.local-content h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 2rem;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.local-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.local-card:hover { transform: translateY(-3px); }

.local-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.local-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.whatsapp-btn {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.menu-section {
  padding: 4rem 0;
  background: var(--white);
}

.menu-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.menu-section h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin: 2.5rem 0 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(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.menu-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  background: #e0e0e0;
}

.menu-item h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.menu-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.price {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.contact-section {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
  color: var(--white);
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.contact-section .address,
.contact-section .phone,
.contact-section .info {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.contact-section a { color: var(--secondary); }

.hours-section {
  padding: 4rem 0;
  text-align: center;
  background: var(--bg);
}

.hours-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hours-section p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

footer a { color: var(--secondary); text-decoration: underline; }

@media (max-width: 600px) {
  .intro-content h1 { font-size: 1.8rem; }
  .menu-section h2 { font-size: 1.5rem; }
  .hero-logo { max-width: 100%; }
  .nav { gap: 1rem; }
  .nav a { font-size: 0.85rem; }
}

@media (max-width: 400px) {
  .menu-grid { grid-template-columns: 1fr; }
}
