.fullpackage-hero {
    position: relative;
    background-image: url("../assets/images/who-bg-1.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* dark overlay */
.fullpackage-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
}

/* content on top of overlay */
.fullpackage-content {
    position: relative;
    z-index: 1;
    max-width: 95%;
    padding: 80px 60px;
    color: #ffffff;
    text-align: justify;
}

.fullpackage-content h1 {
    font-size: 5.5rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
}

.fullpackage-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    margin-bottom: 1.5rem;
}

/* disable parallax on mobile */
@media (max-width: 768px) {
    .fullpackage-hero {
        background-attachment: scroll;
    }

    .fullpackage-content {
        padding: 60px 24px;
    }

    .fullpackage-content h1 {
        font-size: 1.75rem;
    }
}
