/* Swiper Hero Section Styles */
.swiper-hero {
    height: 80vh;
    min-height: 500px;
    margin-top: 0;
}

.swiper-hero .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-hero .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 2s ease;
}

.swiper-hero .swiper-slide-active .slide-bg {
    transform: scale(1);
}

.swiper-hero .slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: white;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.swiper-hero .swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.swiper-hero .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.swiper-hero .slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.swiper-hero .slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.swiper-hero .slide-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.swiper-hero .slide-button:hover {
    background: #b9a34e;
    transform: translateY(-2px);
}

.swiper-hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.swiper-hero .swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

.swiper-hero .swiper-button-next,
.swiper-hero .swiper-button-prev {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .swiper-hero {
        height: 40vh;
        min-height: 500px;
    }

    .swiper-hero .slide-title {
        font-size: 2.5rem;
    }

    .swiper-hero .slide-subtitle {
        font-size: 1.2rem;
    }
}