header {
    position: relative;
    isolation: isolate;
    height: 100vh;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/image.png") center/cover no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, #0a2dca25 0%, rgba(0, 0, 0, 0.65) 60%);
    z-index: -1;
}

.hero-content {
    max-width: 920px;
    padding: 40px 30px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

header h1 {
    animation: fadeUp 1s ease forwards;
    font-size: clamp(2.6rem, 8vw, 5.4rem);
    letter-spacing: 4px;
    line-height: 1;
    color: var(--primary-color);
    text-shadow: 0 0 22px rgba(13, 52, 226, 0.35);
}

header p {
    animation: fadeUp 1.5s ease forwards;
    font-size: clamp(1.05rem, 2.6vw, 1.45rem);
    margin: 20px auto 0;
    max-width: 700px;
    color: var(--text-color);
}

.hero-content h2 {
    padding: 5px;
    font-size: 1rem;
    line-height: 1.2rem;
    width: fit-content;
    margin: 0 auto 10px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 12px;
    animation: fadeUp 1s ease;
}

.hero-actions {
    animation: fadeUp 1.8s ease forwards;
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
}

.btn {
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s ease;
    margin: 5px;
    border: 1px solid transparent;
}

.btn:hover {
    background: var(--accent-color);
}

.btn-primary {
    box-shadow: 0 0 18px rgba(13, 52, 226, 0.35);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
    .hero-content {
        padding: 30px 18px;
        border-radius: 12px;
    }

    .hero-content h2 {
        padding: 5px;
        font-size: 1rem;
        line-height: 1.2rem;
        width: fit-content;
        margin: 0 auto 10px;
    }
}
