/*-------------Home Background and Shadow---------------*/
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 20px;
  background: url('../images/introbackground.jpg') no-repeat center center/cover;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(48, 46, 46, 0.415);
  z-index: 1;
}

/*-------------Format Positioning----------------*/
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*---------------Profile Picture-----------------*/
.profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #000000;
  margin-bottom: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/*------------------Home Text--------------------*/
.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.532);
}
.hero p {
  max-width: 800px;
  text-align: center;
  color: #d5d5d5;
  font-size: 1.5rem;
  line-height: 1.6;
}

/*------------------SHPE Logo--------------------*/
.shpe-logo {
  width: 150px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}
.shpe-logo:hover {
  transform: scale(1.05);
}

/*-------------Device Combatibility---------------*/
@media (max-width: 600px) {
  .profile-pic {
    width: 120px;
    height: 120px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .shpe-logo {
    width: 80px;
  }
}