/* ============================================
   HERO — Clean, Full Viewport
   ============================================ */

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

/* Background image with dark gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to bottom, rgba(10,10,15,0.7) 0%, rgba(10,10,15,0.85) 100%),
        url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Hero content — left aligned */
.hero__inner {
    max-width: 800px;
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) 0;
}

.hero__title {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    font-weight: 700;
    font-size: var(--font-size-hero);
    letter-spacing: -0.04em;
    line-height: var(--line-height-tight);
    opacity: 0;
    transform: translateY(30px);
    animation: hero-enter 0.8s ease-out 0.2s forwards;
}

.hero__subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-2xl);
    line-height: var(--line-height-relaxed);
    max-width: 550px;
    opacity: 0;
    transform: translateY(30px);
    animation: hero-enter 0.8s ease-out 0.5s forwards;
}

.hero__actions {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: hero-enter 0.8s ease-out 0.8s forwards;
}

/* Secondary CTA — text link with arrow, no background */
.hero__actions .btn--secondary {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: var(--font-size-base);
    padding: 14px 0;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: color var(--transition-normal), gap var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__actions .btn--secondary:hover {
    color: var(--color-white);
    gap: var(--space-md);
}

.hero__actions .btn--secondary svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

.hero__actions .btn--secondary:hover svg {
    transform: translateX(4px);
}

@keyframes hero-enter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
    }
    .hero__title {
        font-size: var(--font-size-4xl);
    }
    .hero__subtitle {
        font-size: var(--font-size-lg);
    }
    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero__actions .btn--secondary {
        width: auto;
    }
}
