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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #111;
  line-height: 1.6;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("hero.png") center / cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 0.05em;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* CONTENT */
.content,
.contact {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.content h2,
.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.05rem;
  color: #333;
}

/* CONTACT */
.contact {
  border-top: 1px solid #eee;
}

.contact a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

.contact a:hover {
  border-color: #000;
}