/* Reset y configuración básica */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
}

/* Contenedor de la imagen de fondo */
.background-row {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

/* Imágenes de fondo: ajusta las rutas a tus imágenes */
.rotate-1 {
  background-image: url('../img/fondo-1.png');
}
.rotate-2 {
  background-image: url('../img/fondo-2.png');
}

/* Contenedor de los botones centrado horizontalmente en la parte inferior */
.button-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}


/* Botones circulares básicos */
.round-button {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid; /* El color se define según el estado (white o black) */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s;
}

/* Configuración para que los SVG se escalen correctamente y tomen el color actual */
.round-button svg {
  width: 1em;
  height: 1em;
  display: block;
}

/* Estado "white": bordes e iconos en blanco */
.button-container.white .round-button {
  border-color: #e5e5e5;
  color: #e5e5e5;
}

/* Estado "black": bordes e iconos en negro */
.button-container.black .round-button {
  border-color: #000;
  color: #000;
}

/* Efecto hover */
.round-button:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* Ajustes responsive */
@media (max-width: 768px) {
  .button-container {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
}
  .round-button {
    width: 40px;
    height: 40px;
  }
}
