/* 
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/fondo2.png') no-repeat center center fixed;
  background-size: cover;
  position: static;
  overflow-x: hidden; /* Previene scroll lateral molesto */
}

/* 
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 en inicio 
*/
.animacion-inicio {
  animation: deslizar 1s ease forwards;
}

/* 
Definición de la animación deslizar
*/
@keyframes deslizar {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 
HEADER: Encabezado principal (logo + horarios)
*/
.inicio-header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
}

/* 
Imagen del logo 
(ATENCIÓN: corregí tu selector porque tenías mal ".LOGOT.img", que no aplicaba)
*/
.logo-img {
  width: 30%;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* 
Texto de horarios
*/
.sub {
  font-size: 1.5rem;
  margin: 0.3rem;
}

/* 
MAIN: Contenedor de botones
*/
.inicio-main {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
}

/* 
Contenedor de los botones
*/
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 90%;
  max-width: 500px;
}

/* 
Botones
*/
.menu-box {
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 2rem;
  padding: 1rem;
  text-align: center;
  border-radius: 40px;
  border: 5px solid hwb(0 0% 100% / 0.878);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
}

.menu-box:hover {
  background-color: hwb(0 5% 4%);
  color: rgb(255, 255, 255);
  transform: scale(1.05);
}
