:root {
  --brand: #e63946;
  --brand2: #7e1a22;
  --accent: #ffbe0b;
  --accent2: #f1740e;
  --accent3: #faeee8;
  --dark: #1a1a1a;
  --light: #ffffff;
  --light2: #f7e96b;
  --light3: #fff9c6;
  --gray: #f6f6f6;
}

.cta-btn {
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.cta-btn:hover {
  background: var(--accent2);
}
.cta-btn2 {
  background: var(--brand);
  border-radius: 8px;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 0.75rem;
  cursor: pointer;
}
.cta-btn2:hover {
  background: var(--accent2);
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--light);
  color: var(--dark);
  scroll-behavior: smooth;
}

a {
  color: var(--brand);
}

main {
  background-color: var(--light2);
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 1rem;
}

.flex-space {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hidden {
  display: none;
}

.hero {
  background: url('../images/MexicanFood.jpeg') center/cover no-repeat;
  color: var(--light);
  text-align: center;
  padding: 6rem 1rem;
}

.hero-content h2 {
  font-size: 2.5rem;
  text-shadow: #1a1a1a 2px 2px 2px;
}
.hero-content p {
  font-size: 1.25rem;
  text-shadow: #1a1a1a 2px 1px 2px;

}

.btn-primary {
  background: var(--accent2);
  color: var(--light);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.section {
  padding: 4rem 1rem;
}

.alt-bg {
  background: var(--gray);
}

/* Menu */
.menu-items {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.menu-card {
  background: var(--light);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.menu-items {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.menu-card {
  background: var(--light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.menu-info {
  padding: 1rem;
  text-align: center;
}

.menu-info h4 {
  margin: 0.5rem 0 0.25rem;
}

.menu-info p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.menu-info span {
  font-weight: bold;
  color: var(--brand);
  font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.site-footer {
  background-color: var(--brand2);
  color: var(--light);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Accessible Buttons */
.lang-switcher {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.lang-switcher button {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.lang-switcher button:hover {
  background: #ffd54f;
}

.lang-options {
  display: none;
  flex-direction: column;
  margin-top: 0.5rem;
  gap: 0.25rem;
}

.lang-switcher:hover .lang-options {
  display: flex;
}
