.hero-container {
    background: url("../Images/hero/edited1.jpg") no-repeat center 20%/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
    text-align: center;
    color: #323030;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    /* para may konting space sa small screens */
}

.hero-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-text {
    border-radius: var(--border-radius);
    max-width: 900px;
    /* para di sobrang wide */
    width: 100%;
    padding: 2rem;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 7rem);
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-text p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin: 0 auto 2rem;
    color: #ffffff;
    max-width: 600px;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-container {
        height: 40vh;
        padding: 1rem;
        background-position: center 30%;
    }
    .hero-text {
        padding: 1rem;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
}


/* 🖥️ Large screens */

@media (min-width: 1200px) {
    .hero-container {
        height: 70vh;
        /* full screen sa malalaki */
    }
    .hero-text h1 {
        font-size: 4rem;
    }
    .hero-text p {
        font-size: 1.5rem;
    }
}