.atak-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    padding: 120px 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.atak-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,1); /* Oprava: musí byť RGBA */
    pointer-events: none;
}

.atak-hero__content {
    position: relative;
    max-width: 800px;
    z-index: 2;
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.atak-hero__title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.atak-hero__subtitle {
    font-size: 22px;
    color: #e5e7eb;
    margin-bottom: 30px;
}

.atak-hero__button {
    display: inline-block;
    padding: 14px 32px;
    background: #3aa6ff;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.2s ease;
}

.atak-hero__button:hover {
    background: #1f8be0;
}

@media (max-width: 768px) {
    .atak-hero {
        padding: 80px 20px;
    }

    .atak-hero__title {
        font-size: 36px;
    }

    .atak-hero__subtitle {
        font-size: 18px;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
