/* ================= HERO SECTION ================= */

.hero-section {
    position: relative;
    min-height: calc(100vh - 0px);
    display: flex;
    align-items: stretch;
    justify-content: center;

    padding-top: 80px; /* adjust to your navbar height */

    background-image:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.85) 35%,
            rgba(3, 7, 18, 0.55) 65%,
            rgba(15, 23, 42, 0.25) 100%
        ),
        url("../images/Close_up_profile.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    color: #e5e7eb;
}

.hero-inner {
    display: flex;
    flex: 1;
}

/* LEFT HALF – big name */
.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    text-align: left;
}

.hero-name-large {
    font-size: clamp(3.4rem, 7vw, 6rem);
    line-height: 1.5;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    max-width: 10ch;
    color: #f9fafb;
    text-shadow:
        0 0 18px rgba(0, 0, 0, 0.9),
        0 0 32px rgba(15, 23, 42, 0.9);
}

/* RIGHT HALF – role block */

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.hero-role-block {
    max-width: 460px;
    text-align: left;
}

.hero-role-label {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 1rem;
    text-shadow: 0 0 14px rgba(248, 250, 252, 0.9);
}

.hero-role {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
    color: #e5e7eb;
}

.hero-role span {
    display: block;
}


/* ========== Basic responsiveness ========== */

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 100vh;
    }

    .hero-inner {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .hero-name-large {
        max-width: none;
        letter-spacing: 0.16em;
        font-size: clamp(2.1rem, 8vw, 3rem);
    }

    .hero-role-block {
        text-align: center;
    }

    .hero-role-label {
        font-size: 2.2rem;
    }

    .hero-role {
        font-size: 2.1rem;
        line-height: 1.4;
    }
}

