/* 
Importa la fuente "Anton" desde Google Fonts 
*/
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* 
Aplica estilo general al cuerpo de la página
*/
body {
  font-family: 'Anton', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url('/img/fondo3.png') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
}

/* 
Capa encima del fondo
*/
body::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 0;
}

/* 
Animación de planeo suave
*/
.animacion-inicio {
  animation: deslizar 1s ease forwards;
}

@keyframes deslizar {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 
HEADER: Logo y horarios
*/
.inicio-header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
}

.logo-img {
  width: 10%;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.sub {
  font-size: 1.5rem;
  margin: 0.3rem;
}

/* 
MENÚ HORIZONTAL
*/
.menu-horizontal {
  position: relative;
  z-index: 1;
  margin: 2rem auto;
  padding: 1.5rem;
  width: 90%;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  gap: 2rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

/* 
Botones dentro del menú
*/
.menu-box {
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  text-align: center;
  border-radius: 30px;
  border: 3px solid #ff0000;
  transition: 0.3s ease;
}

.menu-box:hover {
  background-color: #ff0000;
  color: white;
  transform: scale(1.05);
}

/* 
MENSAJE DE NO OFERTAS
*/
.mensaje-oferta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  text-align: center;
}

.no-ofertas {
  background-color: #ffffff;
  border: 3px solid #f96565;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
  max-width: 600px;
}

.no-ofertas h2 {
  font-size: 2.5rem;
  color: #f96565;
  margin-bottom: 1rem;
}

.no-ofertas p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
