/* — Reset & Base — */
* { margin:0; padding:0; box-sizing:border-box; }
body, html { height:100%; font-family: 'Cinzel', serif; color: #f1e4b3; background: #000; }

/* — Hero Section — */
.hero {
  background: url('new-eclipse-banner.png') no-repeat center/cover;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-overlay {
  position: absolute;
  top: 1rem; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  padding: 0.5rem 1rem; border-radius: 2rem;
}
.nav-overlay ul {
  display: flex; gap: 1.5rem; list-style:none;
}
.nav-overlay a {
  color: #f1e4b3; text-decoration:none;
  transition: color 0.2s;
}
.nav-overlay a:hover { color: #fff; }
.btn-primary {
  background: rgba(241,228,179,0.2);
  padding: 0.4rem 0.8rem; border-radius:1rem;
}

/* — Hero Text — */
.hero-content { text-align: center; text-shadow: 0 0 8px rgba(0,0,0,0.7); }
.hero-content h1 {
  font-size: 4rem; margin-bottom: 0.5rem;
}
.tagline {
  font-size: 1.3rem; letter-spacing:2px;
}

/* — Features — */
.features {
  padding: 4rem 1rem; background: #070707;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 2rem; max-width:1000px; margin:0 auto;
}
.feature {
  text-align: center; transition: transform .3s;
}
.feature img {
  width: 64px; height:64px; margin-bottom:1rem;
}
.feature:hover { transform: translateY(-8px); }

/* — Footer — */
.footer {
  text-align: center; padding: 2rem 1rem; background: #0a0a0a;
}
.btn-secondary {
  display:inline-block;
  margin: 0 .5rem;
  padding: .6rem 1.2rem;
  border: 2px solid #f1e4b3;
  border-radius:1rem;
  text-decoration:none; color:#f1e4b3;
  transition: background .2s, color .2s;
}
.btn-secondary:hover {
  background: #f1e4b3;
  color: #000;
}
  .main-title {
  font-size: 2.0rem;     /* Smaller than before */
  font-weight: 400;      /* Thinner font */
  line-height: 1.2;
  text-align: center;
}
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

.tagline {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #d3c8b4;
  text-align: center;
  letter-spacing: 0.8px;
}

