/* Hero Section — fixed parallax backdrop */
.hero-section {
    background-color: var(--primary);
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    overflow: hidden;
}

/* Content that scrolls over the hero */
.hero-section + * {
    position: relative;
    z-index: 1;
    margin-top: 100vh;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.25);
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max, 1140px);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Overline */
.hero-overline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 45px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero-btn--primary {
    background-color: var(--accent);
    color: #ffffff;
}

.hero-btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

@media (hover: hover) and (pointer: fine) {
    .hero-btn--primary:hover {
        background-color: var(--accent-hover);
        color: #ffffff;
    }

    .hero-btn--secondary:hover {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.7);
        color: #ffffff;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        height: 100svh;
    }

    .hero-section + * {
        margin-top: 100vh;
        margin-top: 100svh;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
