/* 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;
}

.hero .button {
  display: inline-block;
  margin-top: 400px !important;
  padding: 0.37rem 1rem; 
  background-color: #ffa500;
  color: white;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: transform 0.3s ease;
} 

.hero .button:hover {
    transform: translateY(-3px)    
}

.hero .hero-msg {
    font-size: 1.3em;
    margin: .2em; 
    font-style: italic;
    text-shadow: 0 0 10px #ffff00;
  /* text-shadow: 0 0 10px #0ff;  .glow  */
  /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);  horizontal-offset | vertical-offset | blur-radius | color */
  /* text-shadow: 1px 1px 0 #000, 2px 2px 4px #888;  layer shadows by separating them with commas to create depth or 3D effects. */
  /* text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;  y using four small offsets in different directions, you can simulate an outline */
}

/* Responsive text scaling */

@media (max-width: 480px) {
    .hero .button {
        font-size: 1.6rem;
    }
    .hero {   
        background-position: 60% 70%;
    }
    .logo {
        width: 25%;
    }
}

@media screen and (min-width: 768px) {
    .hero .button {
        font-size: 1.8rem;
    }
    .hero {   
        background-position: 60% 70%;
    }    
    .logo {
        width: 18%;
    }
}

@media screen and (min-width: 992px) {
    .hero .button {
        font-size: 2.0rem;
    }
    .hero {   
        background-position: 50% 50%;
    }    
    .logo {
        width: 10%;
    }
}