/* Hero Section Styles */
.hero-section {
    width: 100%;
    height: calc(100vh - 120px);
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Custom Swiper Controls */
.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-color);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
    }
    
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
}
