/* --- HERO SECTION --- */
/* hero that scrolls away with the page */
.hero-hero {
    position: relative;
    /* not fixed */
    top: 0;
    /* let normal document flow position it */
    left: 0;
    width: 100%;
    height: 600px;
    /* allow natural height or set min-height */
    /* min-height: calc(100vh - 80px); */
    /* OPTIONAL: gives hero an initial full-viewport feel */
    background: white url('../images/signup-lock.png') center center / 100% 100% no-repeat;
    /* fills area, may crop */
    /* DO NOT include `background-attachment: fixed` */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* --- TEXT STYLE --- */
.hero-text {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    color: black;
    background: rgba(255, 255, 255, 0);
    /* transparent background */
    padding: 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
    z-index: 2;
}

/* Mobile */
@media (max-width: 600px) {
  .hero-hero {
    height: 50vh;
  }
  .hero-text {
    font-size: 18px;
    line-height: 1.4;
    padding: 10px;
    text-align: center;
    color: black;
  }
}

/* --- Responsive Text --- */
@media (max-width: 768px) {
    .hero-text {
        font-size: 18px;
        line-height: 1.5;
        padding: 10px;
        color: black;
    }
}


/* tablets */
@media (max-width: 992px) {
    .hero-hero {
        height: 400px;
    }
    .hero-text {
        font-size: 20px;
        padding: 0 18px;
        max-width: 700px;
        text-align: center;
        color: black;
    }
}

/* phones */
@media (max-width: 480px) {
    .hero-hero {
        height: 300px;
    }
    .hero-text {
        font-size: 16px;
        line-height: 1.4;
        padding: 0 14px;
        max-width: 320px;
        text-align: center;
        color: black;
    }
}