
#header-carousel .carousel-item {
    height: 100vh;
    min-height: 500px;
}

#header-carousel .carousel-caption {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

#header-carousel .display-1 {
    font-size: 4rem;
    font-weight: 700;
}

#header-carousel .btn-modern {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    background-color: var(--primary);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

#header-carousel .btn-modern:hover {
    background-color: #fff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    #header-carousel .display-1 {
        font-size: 2.5rem;
    }

    #header-carousel .btn-modern {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
