:root {
  --primary: #f57c00;
  --dark: #1c1c1c;
  --light: #ffffff;
  --gray: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  background-color: #fffdd0;
  color: var(--dark);
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.3);
}
.icono {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
}
footer .icono {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.logo-movimiento {
  box-shadow: 0 0 30px #0008;
  width: 50%;
  height: 50%;
  max-width: 300px;
  max-height: 300px;
  border-radius: 70%;
  animation: girar 12s linear infinite;
  transform-origin: center center;
}
@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  color: inherit;
}
.imagen-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav a {
  position: relative;
  margin-left: 1rem;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 6px 4px;
  transition: color 0.3s ease;
}
/*estado activo*/
.nav a.active {
  color: #e07a3f;
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #e07a3f;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #e07a3f;
  transition: width 0.3s ease;
}
.nav a:hover {
  color: #e07a3f;
}
.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.5rem;
}

.hero-buttons {
  margin-top: 1.5rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 0.3rem;
}

.primary {
  background: var(--primary);
  color: #fff;
}

.secondary {
  border: 2px solid #fff;
  color: #fff;
}

/* ABOUT */
.about {
  padding: 3rem 1.5rem;
  background: var(--gray);
  text-align: center;
  background-color: #fffdd0;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  background: #fffdd0;
}

.feature-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #e2d9d0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.etiquetas {
  width: 60px;
  height: 60px;
}

/* LOCATION */
.location {
  padding: 3rem 1.5rem;
  text-align: center;
  background-color: #fffdd0;
}

.location iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* FOOTER */
.footer {
  background-color: #1c1c1c;
  color: #f1f1f1;
  margin-top: 60px;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer h3,
.footer h4 {
  margin-bottom: 12px;
  color: #ffffff;
}
.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
}
.footer-links a {
  display: block;
  text-decoration: none;
  color: #cccccc;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #e07a3f;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 15px 20px;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: #aaaaaa;
}
/* FOOTER RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links a {
    margin-bottom: 6px;
  }
}

/* HERO MENÚ */
.menu-hero {
  padding: 4rem 1.5rem;
  text-align: center;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
.menu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.menu-hero-content {
  position: relative;
  z-index: 2;
}

.menu-hero h1 {
  font-size: 2rem;
  color: #fff;
}
.menu-hero p {
  color: #fff;
}

/* MENÚ */
.menu-section {
  padding: 3rem 1.5rem;
  background-color: #fffdd0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  background-color: #fffdd0;
}

.menu-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-card h3 {
  margin: 0.8rem;
}

.menu-card p {
  margin: 0 0.8rem 1rem;
  color: #555;
}

.price {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* DESTACADO */
.featured {
  padding: 3rem 1.5rem;
  background: var(--gray);
  background-color: #fffdd0;
}

.featured-card {
  display: flex;
  gap: 1.5rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  align-items: center;
}

.featured-card img {
  width: 140px;
  border-radius: 12px;
}

.tag {
  background: #ffe0c2;
  color: var(--primary);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
}
/* HERO EVENTOS */
.event-hero {
  height: 70vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../assets/images/asados.webp") center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.badge {
  background: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.event-hero h1 {
  font-size: 2.3rem;
}

/* INFO EVENTO */
.event-info {
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
  background-color: #fffdd0;
}

.event-details {
  max-width: 600px;
  text-align: center;
}

.schedule {
  margin: 1rem 0;
  font-size: 1.1rem;
}

/* PARRILLA */
.grill {
  padding: 3rem 1.5rem;
  background: var(--gray);
  background-color: #fffdd0;
}

/* AMBIENTE */
.ambience {
  padding: 3rem 1.5rem;
  background-color: #fffdd0;
}

.ambience-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* CTA */
.cta {
  padding: 3rem 1.5rem;
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.cta h2 {
  margin-bottom: 1rem;
}
/* HERO CONTACTO */
.contact-hero {
  padding: 4rem 1.5rem;
  text-align: center;
  background: var(--gray);
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../assets/images/imagen-contacto.webp") center/cover;
}
.contact-hero h1 {
  color: #fff;
}
.contact-hero p {
  color: #fff;
}

/* CONTACTO */
.contact {
  padding: 3rem 1.5rem;
  background-color: #fffdd0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.contact-info {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-info p {
  margin: 1rem 0;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;
  max-width: 100%;
  text-align: center;

  white-space: normal; /* permite salto de línea */
  word-break: break-word;

  border-radius: 8px;
}
@media (max-width: 480px) {
  .btn.primary {
    width: 50%;
    padding: 14px;
    font-size: 0.95rem;
  }
}

/* MAPA */
.map {
  padding: 3rem 1.5rem;
  text-align: center;
  background-color: #fffdd0;
}

.map iframe {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  margin-top: 1rem;
}
/* ===== ANIMACIONES SCROLL ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  opacity: 1;
}
.hero-content,
.menu-hero,
.event-hero,
.contact-hero {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
