/* Hero Section - Ported from Technical Website 2026 */
/* Adapted to match Luxe Design System variables */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero_bg_light.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

#career::before {
    background-image: url('../img/career_hero.png');
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.hero-slides {
    position: relative;
    width: 100%;
    display: grid;
    align-items: center;
}

.hero-slide {
    grid-area: 1 / 1;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s, visibility 0.6s ease 0.2s;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-family: 'DM Sans', sans-serif;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Slider Navigation Dots */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(95, 191, 191, 0.3);
}

.slider-dot.active {
    background: var(--accent-primary);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero {
        text-align: center;
        padding-top: 100px;
        justify-content: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-slider {
        padding-bottom: 56px;
    }

    .hero-slider-nav {
        top: auto;
        right: auto;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        padding-bottom: 48px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero .btn {
        width: 100%;
    }

    .hero-slider-nav {
        top: auto;
        right: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 10px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}
