/* Hero container */
.hero {
  position: relative;
  margin-top: -100px;
  height: 295px;               /* fixed canvas for consistent background */
  overflow: hidden;            /* keep content within hero bounds */
  z-index: 1;
}

/* Background layer */
.hero-bg {
  position: absolute;
  inset: 0;                    /* fills the hero completely */
  background-image: url('../img/body_bg.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;  /* avoids vertical stretching */
  z-index: 0;
}

/* Content layer */
.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;                  /* above the background */
}

.hero-title-wrap {
  position: absolute;       /* still allows placement inside hero */
  top: 230px;               /* same vertical positioning */
  right: 280px;             /* same horizontal positioning */
  display: flex;            /* align logo + text inline */
  align-items: center;      /* vertical centering */
  gap: 10px;                /* spacing between logo and text */
}

.logo-image {
  width: 50px;              /* adjust size as needed */
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

/* Freely position the heading (absolute within content layer) */
.hero-title {
  position: static;
  color: #00BCE3;
  font-family: Rubik, sans-serif;
  font-size: 1.6rem;
  margin: 0;
  text-shadow: 
  1px 1px 3px rgba(255,255,255,0.9),
  -1px -1px 3px rgba(255,255,255,0.6);


  /* Position controls — adjust these values as needed */
  top: 240px;        /* move down from top */
  right: 280px;       /* move left from right edge */
  /* Alternatively, use left: 40px; to anchor from left */
  /* bottom: 20px; can be used if you prefer bottom anchoring */
}

/* Optional: responsive tweak */
@media (max-width: 768px) {
  .hero {
    height: 360px;
  }
  .hero-title {
    top: 220px;
    right: 20px;
    font-size: 1.6rem;
  }
}
