/* Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.carousel-item {
    height: 60vh;
    min-height: 400px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.6);
}

.carousel-caption {
    bottom: 25%;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color-gold);
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: var(--secondary-color-white);
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* Indicators */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color-white);
}

.carousel-indicators .active {
    background-color: var(--secondary-color-gold);
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary-color);
}