* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
}

header {
  padding-top: 80px;
  height: 100vh;
  background: url('../images/shian_hero.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 0vh; /* This moves the text upwards */
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  /*backdrop-filter: blur(2px);*/
}
header h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #9f7f56; /* Or #f1f1f1 or #c49b66 for the gold option */
  z-index: 1;
}
header p {
  margin-top: 1rem;
  font-size: 1.2rem;
  z-index: 1;
  color: #544838;
}
.cta {
  margin-top: 2rem;
  z-index: 1;
}
.cta a {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background-color: #544838;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.cta a:hover {
  background-color: #444;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #1a1a1a;
}