#carouselExampleAutoplaying img {
    filter: brightness(45%);
    min-width: fit-content;
}

#carouselExampleAutoplaying h1 {
    font-size: 5rem;
}

.navbar .navbar-brand {
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
}

.navbar .navbar-brand:hover {
    background-color: #ffe9c8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    color: #d35400;
}

.navbar .nav-link {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px 16px;
}

.navbar .nav-link:hover {
    background-color: var(--bs-info-bg-subtle);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    #carouselExampleAutoplaying h1 {
        font-size: 3rem;
    }
}


@media (max-width: 576px) {
    .carousel-caption {
        top: 50%;
        transform: translateY(-50%);
    }
    .carousel-caption h1 {
        font-size: .2rem;
        line-height: 1;
        text-align: center;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
}