* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1755015347024-093df6cabe6d?w=1600&q=80');
  background-size: cover;
  background-position: center top;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
}

.text-block {
  position: relative;
  text-align: center;
  margin-top: 48px;
}

h1 {
  color: white;
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

#subtext {
  color: white;
  font-size: 1.1rem;
  margin-top: 12px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}
