/* ===== HOMEPAGE BASE ===== */

#home {
  color: #fff;
}

/* HERO */
.home-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.home-title {
  font-size: 3rem;
  letter-spacing: 0.25em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.home-tagline {
  max-width: 620px;
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.8;
}

/* CONTENT SECTIONS */
.home-sections {
  max-width: 720px;
  margin: 0 auto 6rem;
  padding: 0 1.5rem;
}

/* Section headers like ABOUT */
.home-sections h2,
.home-sections h3 {
  margin-top: 4rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Paragraphs */
.home-sections p {
  line-height: 1.9;
  opacity: 0.9;
}

/* Links */
.home-sections a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
}

.home-sections a:hover {
  border-bottom-color: #fff;
}

.home-content hr {
  margin: 2rem 0;
}