body {
  font-family: Arial, sans-serif;
  color: #ffffff;
  background-color: #000000;
  background-image: url('./imagenes/Pared.jpg'); /* o ../imagenes/Pared.jpg según el caso */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}


/* === Fondo del encabezado con cinta === */

 
header {
  background-image: url('./imagenes/cinta_pre3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* resalta el texto */
} 


/*hacer el color un pco oscuro de la pagina*/
/*
header::before {
  content: "";
  position: absolute;
  top: 0; left: 10000;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 0;
}
header h1 {
  position: relative;
  z-index: 1;
}
*/

/* === Estilo del logo en el encabezado === */
#logo {
  height: 80px; /* tamaño ajustable */
  width: auto;
  border-radius: 15px; /* bordes suaves si el fondo no es transparente */
  background-color: rgba(0, 0, 0, 0.3); /* leve fondo oscuro */
  padding: 5px;
}


/* === Barra de navegación personalizada === */
.custom-navbar {
  background-color: rgb(212, 187, 153) !important; /* Azul moderno elegante */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* sombreado suave */
}

/* Efecto hover en los enlaces del menú */
.navbar .nav-link:hover {
  color: #ffd700 !important; /* dorado suave al pasar el mouse */
  transition: color 0.3s ease;
}




/*Acerca de Idolls*/

/* === Secciones informativas con imagen y texto === */
.info-section {
  background-color: rgba(255, 255, 255, 0.8); /* Fondo blanco translúcido para contraste */
  padding: 30px;
  border-radius: 15px;
  color: #000000; /* texto negro */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Encabezados dentro de secciones */
.info-section h1 {
  font-weight: bold;
  margin-bottom: 15px;
}

/* Texto dentro de secciones */
.info-section p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Imágenes dentro de secciones */
.info-section img {
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.info-section img:hover {
  transform: scale(1.03);
}
/* === final de  acerca de Idolls=== */


/* === sección para hacerle cambios a la Imagen principal de la página de inicio === */
.portada-img {
  display: block;
  max-width: 600px; /* controla el tamaño máximo */
  width: 80%; /* se adapta al ancho de la pantalla */
  margin: 10px auto 5px auto; /* la centra con margen arriba/abajo */
  border-radius: 20px; /* esquinas más redondeadas */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* sombra más visible */
  transition: transform 0.3s ease;
}

/* Cambios para la imagen de portada*/
.portada-img:hover {
  transform: scale(1.02); /* pequeño zoom al pasar el mouse */
}



/* === Footer estilizado === */
/* === Footer estilizado === */
.footer {
  background-color: rgb(212, 187, 153) !important; /* Fondo beige */
  color: #000000; /* Texto negro */
  font-size: 0.95rem;
  position: relative;
  text-align: center;
}

/* Texto general del footer */
.footer p,
.footer h6,
.footer a {
  color: #000000 !important; /* Forzar texto negro */
}

/* Íconos de redes sociales */
.footer .social-link {
  color: #000000 !important; /* Negro por defecto */
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover por red social */
.footer .social-link[aria-label="Facebook"]:hover {
  color: #1877F2 !important; /* Azul Facebook */
  transform: scale(1.2);
}

.footer .social-link[aria-label="Instagram"]:hover {
  color: #E1306C !important; /* Magenta Instagram */
  transform: scale(1.2);
}

.footer .social-link[aria-label="TikTok"]:hover {
  color: #010101 !important; /* Negro casi puro tipo TikTok */
  transform: scale(1.2);
}

.footer .social-link[aria-label="WhatsApp"]:hover {
  color: #25D366 !important; /* Verde WhatsApp */
  transform: scale(1.2);
}

/* Enlace 'Volver al inicio' */
.volver-inicio {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  font-weight: bold;
  color: #000000 !important; /* Forzar negro */
  transition: color 0.3s ease;
}

.volver-inicio:hover {
  color: #ffd700 !important; /* dorado al pasar el cursor */
  text-decoration: underline;
}




/* === Catálogo de Idolls === */

.catalog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*Ajusta el tamaño de la imagen*/
/*
.catalog-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
*/

/*Ajusta el tamaño de la imagen*/

.catalog-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background-color: #fff;
  padding: 10px;
  transition: transform 0.4s ease;
}



.catalog-card:hover img {
  transform: scale(1.08);
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.catalog-card .card-body {
  background-color: rgba(255,255,255,0.9);
  color: #000;
}

.catalog-card .card-title {
  font-weight: bold;
  margin-bottom: 8px;
}

.catalog-card .card-text {
  color: #8B4513; /* tono café */
  font-size: 1.1rem;
  font-weight: 600;
}





/* === Carrusel de producto individual === */
.carousel-item img {
  height: 400px;             /* Altura uniforme */
  object-fit: contain;       /* Ajuste sin recortar */
  background-color: #fff;    /* Fondo blanco detrás de las imágenes */
  border-radius: 15px;
  padding: 10px;
}

/* Indicadores del carrusel */
.carousel-indicators [data-bs-target] {
  background-color: #000; /* negro por defecto */
}
.carousel-indicators .active {
  background-color: #d4bb99; /* tono beige del tema */
}

/* Controles (flechas) del carrusel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) brightness(1.2);
}
/* === Carrusel de producto individual === */