/* hero.css */

#hero {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: flex-start;
  background-image: url(../img/profile.JPG);
  background-position: bottom right;
  background-size: contain;  
  background-repeat: no-repeat;
}

#hero > h1 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

#hero > p {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 30px;
}

#hero > button {
  width: 300px;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid black;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

#hero > button > span {
  font-weight: normal;
  background-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#hero > button > i {
  margin-left: 3px;
  font-size: 18px;
}

/* ✅ Responsive tweaks */
@media (max-width: 768px) {
  #hero {
    align-items: center;
    text-align: center;
    background-position: top center;
  }
  #hero > h1 {
    font-size: 22px;
  }
  #hero > button {
    width: auto;
    padding: 8px 12px;
  }
}
