/* Swiper Slider Overrides & Styling */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.hero-slide .container {
    display: flex;
    justify-content: flex-end;
}

/* Adjust the existing hero content styling for slides */
.hero-slide .hero-content {
    animation: none; /* remove initial animation */
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.5);
    background: rgba(15, 23, 42, 0.6); /* Glassmorphism background */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    text-align: right;
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--bg-white) !important;
    background: rgba(0, 0, 0, 0.3);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

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

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem !important;
}

/* Custom Pagination */
.swiper-pagination-bullet {
    background: var(--bg-white) !important;
    opacity: 0.5 !important;
    width: 12px !important;
    height: 12px !important;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--secondary) !important;
    width: 30px !important;
    border-radius: 10px !important;
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}
