/* ===== HERO SLIDER STYLES ===== */

/* Hero Slider Section - Full Width */
.hero-slider-section {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

/* Slider Track */
.hero-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
}

/* Individual Slides */
.hero-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.hero-slide:hover .hero-slide-image {
    transform: scale(1.05);
}

/* Slide Overlay */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide-title {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    display: inline-block;
}

.hero-slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
}

/* Call to Action Buttons */
.hero-slide-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 180px;
}

.hero-cta-button.primary {
    background: #2b6cb0;
    color: white;
    border-color: #2b6cb0;
}

.hero-cta-button.primary:hover {
    background: #1a4f8c;
    border-color: #1a4f8c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 108, 176, 0.4);
}

.hero-cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-cta-button.secondary:hover {
    background: white;
    color: #2b6cb0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Navigation Arrows */
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
    color: #333;
    font-size: 1.2rem;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.hero-slider-prev {
    left: 2rem;
}

.hero-slider-next {
    right: 2rem;
}

/* Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hero-slider-dot.active {
    background: white;
    transform: scale(1.3);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-slider-container {
        height: 500px;
    }
    
    .hero-slide-overlay {
        padding: 1.5rem;
    }
    
    .hero-slide-content {
        max-width: 100%;
    }
    
    .hero-slide-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .hero-slide-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0.875rem 1.25rem;
    }
    
    .hero-slide-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta-button {
        width: 100%;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-slider-prev {
        left: 1rem;
    }
    
    .hero-slider-next {
        right: 1rem;
    }
    
    .hero-slider-indicators {
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        height: 400px;
    }
    
    .hero-slide-title {
        font-size: 1.75rem;
        padding: 0.875rem 1.25rem;
    }
    
    .hero-slide-description {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .hero-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}


