body, html {
    overflow-x: hidden;
}

#heroCarousel {
    max-height: 90vh;
    overflow: hidden;
}

#heroCarousel .carousel-item img {
    height: 90vh;
    object-fit: cover;
    width: 100%;
    filter: brightness(50%);
}

#heroCarousel .carousel-caption .carousel-flor {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px; /* Ajusta la distancia entre la flor y los textos */
}

#heroCarousel .carousel-caption .carousel-flor-image {
    max-width: 150px; /* Ajusta el tamaño de la flor */
    max-height: 150px; /* Mantén proporción */
    object-fit: contain; /* Asegura que no se deforme */
    filter: drop-shadow(0px 0px 10px white); /* Sombra blanca alrededor */
    transition: transform 0.3s ease-in-out;
}

#heroCarousel .carousel-caption {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: left;
}

#heroCarousel .carousel-caption h1 {
    font-size: 95px;
    font-family: "Amatic SC", sans-serif;
    text-shadow: 0 0 10px rgb(253, 253, 253),
        0 0 20px rgb(255, 255, 255),
        0 0 40px rgb(255, 255, 255),
        0 0 80px rgb(255, 255, 255);
}

#heroCarousel .carousel-caption p {
    font-size: 30px;
    font-family: "Nanum Gothic", sans-serif;
    text-shadow: 0 0 10px #d1d1d1,
        0 0 10px #d1d1d1,
        0 0 30px #d1d1d1,
        0 0 70px #d1d1d1;
}

#heroCarousel .carousel-caption .carousel-buttom{
    background-color: #fff;
    color: #000;
    padding: 5px 30px;
    font-size: 1.7rem;
    font-weight: 600;
    border-radius: 15px;
    text-decoration: none;
    transition: .4s;
}

#heroCarousel .carousel-caption .carousel-buttom:hover{
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #heroCarousel .carousel-caption h1 {
        font-size: 65px;
    }

    #heroCarousel .carousel-caption p {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    #heroCarousel .carousel-caption h1 {
        font-size: 55px;
    }

    #heroCarousel .carousel-caption p {
        font-size: 18px;
    }
}
