/* Home Page Styles */
#heroCarousel {
    background: #181024;
}

.carousel-item .w-100 {
    min-height: 350px;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    max-height: 400px;
    filter: brightness(0.55);
}

.carousel-caption {
    left: 8vw;
    top: 15%;
    bottom: auto;
}

.carousel-caption.d-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: start;
}

.carousel-caption h1 {
    font-weight: bold;
}

.carousel-caption p {
    margin-bottom: 1rem;
}

.carousel-caption .btn {
    background: #ff8000;
    color: #fff;
    font-weight: 700;
    border-radius: 32px;
    padding: 0.5rem 1.5rem;
}

.carousel-caption .btn:hover {
    background: #e67300;
    color: #fff;
}

@media (max-width:768px) {
    .carousel-caption {
        left: 5vw;
        top: 10%;
    }
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    .carousel-caption p {
        font-size: 0.9rem;
    }
    .carousel-caption .btn {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
}
