/* Estilos globales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%; /* Asegura que el contenido ocupe toda la altura disponible */
  width: 100%; /* Asegura que el contenido ocupe todo el ancho disponible */
  margin: 0;
  padding: 0;
  overflow: auto; /* Permite hacer scroll tanto vertical como horizontal */
}

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(135deg, #00b0ff, #8c6dfd);
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Cambié a flex-start para permitir scroll hacia arriba */
  color: white;
  min-height: 100vh; /* Asegura que el body tenga al menos el alto de la pantalla */
  overflow-x: hidden; /* Desactiva el scroll horizontal */
  padding-top: 20px; /* Para dejar espacio en la parte superior */
}

/* Leyenda de carga */
.loading {
  font-size: 1.5em;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 10px;
  display: block;
  z-index: 10; /* Para asegurarnos de que se muestra encima del contenido */
}

/* Contenedor del clima */
.container {
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Sombra más ligera */
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 350px; /* Establecer un max-width adecuado */
  min-width: 280px; /* Evitar que se reduzca demasiado */
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden; /* Asegura que el contenido no se desborde */
}

.container.loaded {
  opacity: 1;
}

.container h1 {
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #00b0ff;
}

.city {
  font-size: 1.6em;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.temp {
  font-size: 3.5em;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffeb3b;
}

.description {
  font-size: 1.2em;
  color: #e1e1e1;
  font-weight: 500;
  text-transform: capitalize;
}

/* Icono */
.icon img {
  width: 50px;
  height: 50px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

/* Efecto de hover */
.container:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

/* Transiciones suaves para los cambios de texto */
.city,
.temp,
.description {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}

.container.loaded .city,
.container.loaded .temp,
.container.loaded .description {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries para adaptabilidad */
@media screen and (max-width: 600px) {
  .container {
    width: 90%; /* El contenedor ocupa el 90% del ancho de la pantalla */
    padding: 20px;
  }

  .city {
    font-size: 1.3em;
  }

  .temp {
    font-size: 3em;
  }

  .description {
    font-size: 1em;
  }
}

