/* Hero Slider Styles */
.hero-slider {
    width: 100%;
    height: 500px;
    max-height: 500px;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slider .container {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.5rem);
    opacity: 0.9;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.hero-desc {
    max-width: 600px;
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0 auto 2rem;
}

.btn-hero-premium {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: white !important;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hero-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.4);
    color: white;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: #ffc107;
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .hero-slider {
        height: auto !important;
        aspect-ratio: 16 / 5.6 !important;
        min-height: auto !important;
        margin: 0 !important;
        background: transparent !important;
    }

    .hero-slider .swiper-slide {
        background-position: center !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
    }

    .hero-slider .swiper-pagination {
        bottom: 5px !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-desc {
        display: none; /* Hide description on small screens for better fit */
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none; /* Hide arrows on mobile */
    }
} 