* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}

/* HERO SECTION */
.hero {
  height: 70vh;
  background: url("Screenshot 2026-01-06 220053.png") center/cover no-repeat;
  position: relative;
}

.domain-sale {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-text {
  position: relative;
  height: 100%;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  letter-spacing: 4px;
  font-size: 28px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 42px;
  font-weight: 500;
}

/* FOOTER CONTACT */
.footer {
  height: 30vh;
  background: #000;
  color: #aaa;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.line {
  width: 50px;
  height: 1px;
  background: #555;
  margin: 0 auto 15px;
}

.footer a {
  color: #aaa;
  text-decoration: none;
  font-size: 18px;
}

