/* Banner/Carousel Styles */
.carousel-container {
    width: 100%;
    height: 610px;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-slide.active {
    opacity: 1;
}

.slide1 {
    background: linear-gradient(135deg, #ff6b35 0%, #f4a261 100%);
}

.slide2 {
    background: linear-gradient(135deg, #457b9d 0%, #1d3557 100%);
}

.slide3 {
    background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: white;
}


.carousel-slide img {
    transform: rotate(90deg);
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
    .carousel-container {
        height: 400px;
    }
}

@media (max-width: 400px) {
    .carousel-container {
        height: 300px;
    }
}