/* Apply the background image to the full-width section */
/* Container that holds the background image and logo overlays */
.hero-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Keeps the image from stretching or zooming too far */
  overflow: hidden;
}

/* Background image that scales properly */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps image full and proportional */
  z-index: 1;
}

/* Logo overlay container */
.overlay-logo {
  position: absolute;
  top: 10%;
  left: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 30%;
}

/* Main Spironis logo */
.logo-main {
  width: 100%;
  height: auto;
}

/* Breath Well tagline logo */
.logo-tagline {
  width: 60%;
  margin-top: -20px;
  margin-left: 30%;
}