
.custom-navbar {
  background-color: #620708; /* Color personalizado */
}

.custom-navbar .navbar-nav .nav-link {
  color: white; /* Color del texto */
}

.custom-navbar .navbar-brand img {
 
}

.custom-navbar .navbar-nav .nav-link:hover {
  color:#FF6700; /* Color del texto al pasar el ratón */
}

  /* Reinicio de márgenes y paddings globales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Contenedor del carrusel */
#carouselExampleSlidesOnly {
  width: 100%;
  overflow: hidden;
}

/* Estilo para las imágenes del carrusel */
.carousel-inner {
  width: 100%;
}

.carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Contenedor para el texto sobre la imagen */
.image-text-container {
  position: absolute;
  top: 40%;
  left: 40%;
  transform: translate(-30%, -30%);
  text-align: center;
  color: whitesmoke;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Estilo del texto */
.image-text {
  margin: 0;
  font-weight: bold;
}

.image-text.title {
  font-size: 3rem;
}

.image-text.subtitle {
  font-size: 3rem;
}

/* Responsividad */
@media (max-width: 768px) {
  .image-text.title {
    font-size: 2rem;
  }

  .image-text.subtitle {
    font-size: 1.5rem;
  }

  .carousel-item img {
    height: 300px;
  }
}

/* Elimina desbordamiento horizontal */
html, body {
  overflow-x: hidden;
}
