@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/*Estilos Generales*/

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 20px;
}

body, html {
    
    margin: 0;
    min-height: 100vh;
    scroll-behavior: smooth;
}

/*Header*/

.header {
    background: rgba(11, 48, 76, 0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 ;
    width: 100%;
}

/*Logo*/


.mover {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    margin-right: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 20px;
  padding: 0;
}

.nav-links li {
  transition: transform 0.2s ease;
}

.nav-links li:hover {
  transform: scale(1.1);
}

.nav-links a {
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #aad8ff;
  /* Azul claro al pasar el mouse */
}


/*Fondo*/

.video-fondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.video-fondo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tienda-container {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/*Estilo del libro y detalles de el mismo*/

.detalle-libro {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  width: 350px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  color: #fff;
  z-index: 2;
}

.detalle-libro img {
  width: 200px;
  border-radius: 5px;
}

.info {
  max-width: 500px;
}

.precio {
  font-size: 1.2em;
  color: #43508a;
  margin-top: 10px;
}

.btn-pago {
  background-color: #1a1852;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  margin-top: 15px;
}

.btn-pago:hover {
  background-color: #35428d;
}

.footer {
    background: rgba(11, 48, 76, 0.7);
    color: #ffffff84;
    text-align: center;
    width: 100%;
    padding: 20px;
    margin-top: 40px;
    position: static;
}

/*Estilo de los detalles de reservacion del libro*/

.reserva-form-container {
  background: rgba(255, 255, 255, 0);
  padding: 15px;
  border-radius: 8px;
  max-width: 400px;
  font-family: Arial, sans-serif;
  color: #41769e;
}

.reserva-form-container label,
.reserva-form-container legend {
  font-weight: 600;
  color: #41769e;
}

.reserva-form-container input[type="text"],
.reserva-form-container input[type="email"],
.reserva-form-container input[type="tel"] {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  background-color: #ffffff7a;
  border: 1px solid #ccccccaf;
  border-radius: 4px;
}

.reserva-form-container button[type="submit"] {
  background-color: #0b304c;
  color: rgba(255, 255, 255, 0.507);
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.reserva-form-container button[type="submit"]:hover {
  background-color: #06426d;
}
