/* Reset */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* 30px footer height */
.footer {
    height: 30px;
    background: #222;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero = full viewport minus footer */
.hero {
    height: calc(100vh - 30px);
    background-image: url("https://yessconsulting.com/img/BethLilaFlowerField.png");
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    position: relative;
}

/* Logo + title */
.hero-content {
    color: #fff;
}

.logo {
  position: absolute !important;
  top: 10px;
  left: 20px;
    max-width: 250px;     /* Adjust as needed */
    width: 10%;
}

.hero h1 {
    margin-top: 250px !important;
    font-size: 2.2rem;
    padding-top: 4em;
    color: #fff;
    font-weight: 700;
}

/* Responsive text scaling */

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero {   
        background-position: 60% 70%;
    }
    .logo {
        width: 25%;
    }
}

@media screen and (min-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero {   
        background-position: 60% 70%;
    }    
    .logo {
        width: 18%;
    }
}

@media screen and (min-width: 992px) {
    .hero h1 {
        font-size: 2.0rem;
    }
    .hero {   
        background-position: 50% 50%;
    }    
    .logo {
        width: 10%;
    }
}