@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Doppio+One&display=swap');

/* Estilos generales */
body {
  font-family: 'Anton';
  background-color: #414141;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Contenedor principal */
.lookbook {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Página */
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #140255;
}

/* Título del Lookbook */
.lookbook-title {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

/* Subtítulos */
.subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

/* Contenedor de imágenes */
.image-placeholder {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}

/* Sección de texto */
.text-section {
  text-align: center;
  max-width: 600px;
}
.parrafo{
  font-family: 'Doppio One', sans-serif;
  font-weight: bold;
}

/* Páginas con dos columnas */
.page.two-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.page.two-columns .text-section {
  text-align: left;
  flex: 1;
}

.page.two-columns .image-placeholder {
  flex: 1;
  height: 250px;
}

/* Estilos del índice */
.index {
  background-color: #f4e2d8;
  padding: 20px;
  width: 80%;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
}

/* Pie de página */
.footer {
  text-align: center;
  font-size: 14px;
  color: #999;
  padding: 10px;
  border-top: 2px solid #eee;
  margin-top: 20px;
}

.image-placeholder img {
  width: 100%; /* Asegura que la imagen se ajuste al ancho */
  height: 100%; /* Asegura que cubra la altura */
  display: block;
}

.image-placeholder.dragon img {
  width: 50%; /* Asegura que la imagen se ajuste al ancho */
  height: 100%; /* Asegura que cubra la altura */
  display: block;
}

.image-placeholder.square img {
  width: 60%; /* Asegura que la imagen se ajuste al ancho */
  height: 100%; /* Asegura que cubra la altura */
  display: block;
}

.image-dlc {
  width: 50%;
  height: 30rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}

.image-dlc img{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}
.video {
  position: relative;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.flecha-flotante {
  position: fixed;
  bottom: 50%;
  left: 1rem;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro con transparencia */
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px; /* Esquinas redondeadas */
  cursor: pointer;
  font-size: 24px;
  transition: background 0.3s ease;
}

.flecha-flotante.right{
  position: fixed;
  bottom: 50%;
  left: 95%;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro con transparencia */
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px; /* Esquinas redondeadas */
  cursor: pointer;
  font-size: 24px;
  transition: background 0.3s ease;
}

.flecha-flotante:hover {
  background-color: rgba(0, 0, 0, 0.9); /* Cambio de color al pasar el mouse */
}

.projects{
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 5rem;
  height: 2.4rem;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro con transparencia */
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px; /* Esquinas redondeadas */
  cursor: pointer;
  font-size: 24px;
  transition: background 0.3s ease;
}