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

html, body {
  height: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111;
}

/* ---------- Top (dark image section) ---------- */
.hero {
  height: 50vh;
  background-image: url("assets/images/background.jpg"); /* change image path */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay for classiness & contrast */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 1rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* ---------- Bottom (white content section) ---------- */
.content {
  min-height: 50vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-inner {
  max-width: 800px;
  padding: 3rem 1.5rem;
}

.content h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.25rem;
}

/* ---------- Responsive refinement ---------- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .content-inner {
    padding: 2rem 1.25rem;
  }
}

/* ---------- Classy bulleted list ---------- */
.feature-list {
  margin-top: 2rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.feature-list li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0.75rem;
}

/* Subtle refinement for bullets */
.feature-list li::marker {
  color: #999;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #fafafa;
  border-top: 1px solid #e5e5e5;
}

.footer-inner {
  max-width: 960px;
  margin: auto;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
}

/* Clock styling */
.clock {
  letter-spacing: 0.05em;
}

/* Responsive footer */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
