/* Fondo del encabezado */
.encabezado {
  background-color: #ffffff;
  border-bottom: 3px solid #000;
}

/* Botón naranja */
.btn-contar-historia {
  background-color: #f36e23;
  color: white;
  border-radius: 20px;
  font-size: 12px;
  padding: 6px 14px;
}

/* Menú desplegable oscuro */
.menu-desplegable {
  background-color: #1a1a1a;
  color: white;
}

.menu-desplegable .dropdown-item {
  color: white;
}

.menu-desplegable .dropdown-item:hover {
  background-color: #444;
}

/* Logos del header */
.logos {
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: end;
}

.logos img {
  max-height: 40px;
  object-fit: contain;
}

/* ============ CAROUSEL STYLES ============ */
.murales-carousel {
  background-color: #e79362;
  min-height: 80vh;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

/* Carousel image and indicators container */
.carousel-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.carousel-main-image {
  text-align: center;
  max-width: 600px;
}

.carousel-main-image img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.carousel-arrow {
  background: #333;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
}

.carousel-arrow:hover {
  background: #f36e23;
  transform: scale(1.1);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.carousel-arrow svg {
  pointer-events: none;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #703600;
  transform: scale(1.2);
}

.indicator:hover {
  background: #999;
}

/* Mural Info Section */
.mural-info {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.mural-info h4 {
  color: #333;
  font-size: 1.8rem;
}

.mural-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

.author-info,
.location-info {
  font-size: 1rem;
  color: #666;
  margin-top: 15px;
}

.author-info strong,
.location-info strong {
  color: #333;
}

/* Audio Player */
.audio-player {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #e2c9ba;
}

.audio-player h6 {
  color: #333;
  margin-bottom: 15px;
}

.audio-player audio {
  max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-container {
    gap: 15px;
    max-width: 95%;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-main-image {
    max-width: 500px;
  }

  .carousel-main-image img {
    max-height: 300px;
  }

  .mural-info {
    padding: 20px;
  }

  .mural-info h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .carousel-container {
    gap: 10px;
  }

  .carousel-arrow {
    width: 35px;
    height: 35px;
  }

  .carousel-main-image {
    max-width: 400px;
  }

  .carousel-main-image img {
    max-height: 250px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .audio-player {
    padding: 15px;
  }
}

/* Enlaces institucionales */
.enlaces-informacion {
  background-color: #eeeeee;
  color: #333;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.enlaces-informacion img {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Link hover effects for images */
.enlaces-informacion a {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.enlaces-informacion a:hover {
  transform: translateY(-5px);
}

.enlaces-informacion a:hover img {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

/* Footer Javeriana */
.footer-javeriana {
  margin-top: 0;
  background-color: #000;
}

.footer-javeriana img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel-main-title {
  color: #f7f7f7;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 5px 5px 5px rgb(255, 94, 0);
  margin-bottom: 0;
}
