#hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;

  /* Height tuning */
  min-height: 81vh;
  max-height: 850px;

  background-image: url('../assets/Iceland.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  position: relative;
  overflow: hidden;
}



/* Optional overlay for text readability */
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

/* Flex container for headshot + bio */
.hero-content {
  position: relative;
  z-index: 2;   /* above overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

/* Headshot */
.hero-image img {
  width: 200px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* Bio */
.hero-bio {
  max-width: 500px;
  text-align: left;
}

.hero-bio h1 {
  font-size: 3em;
  margin-bottom: 15px;
}

.hero-bio p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  background-color: #ffcc00;
  color: #1a1a1a;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #e6b800;
}

/* Responsive */
@media (max-width: 768px) {
  #hero {
    min-height: auto;
    padding: 50px 20px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-image img {
    width: 150px;
  }

  .hero-bio h1 {
    font-size: 2.2em;
  }

  .hero-bio p {
    font-size: 1.2em;
  }
}
