/* Hero section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
    isolation: isolate;
}

/* Sötét overlay - multiply blend */
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: #0A4B55;
    mix-blend-mode: multiply;
    z-index: 0;
}

/* Tartalom */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    padding: 40px 20px;
}

.hero-focim {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 52px;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.04px;
}

.hero-focim span,
.hero-focim em {
    color: #2DE68C;
    font-style: normal;
}

.hero-alcim {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 60px;
    letter-spacing: -0.04px;
    color: #ffffff;
    margin-bottom: 40px;
}

.hero-alcim span,
.hero-alcim em {
    color: #2DE68C;
    font-style: normal;
}

/* Gomb */
.hero-gomb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2DE68C;
    color: #000000;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 14px 40px;
    text-decoration: none;
    transition: background-color 0.2s;
    margin-bottom: 48px;
}

.hero-gomb:hover {
    background-color: #1fc97a;
    color: #000000;
}

/* Logó sor */
.hero-logo-sor {
    margin-bottom: 12px;
}

.hero-logo {
    width: 225px;
    height: auto;
}

/* Tagline */
.hero-tagline {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

/* Hero animáció */
.hero-anim {
    opacity: 0;
    transform: translateY(32px);
    animation: heroFadeUp 0.8s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-focim {
        font-size: 34px;
    }

    .hero-alcim {
        font-size: 22px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: #010f09;
    opacity: 0.85;
    z-index: 0;
}