/* ==========================================================================
   Hero Section & Slider
   ========================================================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

/* Gradient Overlay to ensure text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.4) 50%, rgba(26, 26, 46, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--spacing-4);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero-title {
    font-size: var(--text-5xl);
    color: var(--text-main);
    margin-bottom: var(--spacing-6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.hero-title span {
    color: var(--accent-primary);
    display: block;
    font-size: 1.2em;
    margin-top: var(--spacing-2);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-main);
    margin-bottom: var(--spacing-8);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-controls {
    position: absolute;
    bottom: var(--spacing-12);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: var(--spacing-4);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--accent-primary);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}