/* home.css */

.hero {
  /* background-image: url('../images/tacoBanner.jpg'); */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 5em 1em;
}

.hero-content h2 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.hero-content p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2em;
  margin: 3em auto;
  text-align: center;
}

.features .feature h3 {
  color: #c8102e;
  margin-bottom: 0.5em;
}

.specials {
  margin: 4em auto;
  text-align: center;
}

.specials h2 {
  font-size: 2em;
  margin-bottom: 1em;
  color: #111;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
}

.special-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.special-card:hover {
  transform: scale(1.03);
}

.special-card img {
  /* width: 100%; */
  height: 200px;
  object-fit: cover;
}

.special-card h3 {
  color: #c8102e;
  margin: 1em 0 0.5em;
}

.special-card p {
  padding: 0 1em 1.5em;
  font-size: 0.95em;
}

.cta-banner {
  background-color: #810d21;
  color: white;
  padding: 3em 1em;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.cta-banner p {
  margin-bottom: 1.5em;
  font-size: 1.1em;
}

.lang-toggle {
  text-align: right;
  font-size: 0.9em;
  padding: 0.5em 1em;
  background: #eee;
}
