/* =======================================
   ZAL’THERA — Minimal, Black, Premium
   Repo structure: /assets/hero-1.png ...
   ======================================= */

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

html, body {
  width: 100%;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}

/* Make sure nothing kills scroll */
body { position: relative; }
main { display: block; }

/* =======================================
   NAV (fixed)
   ======================================= */

.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;

  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.brand {
  text-decoration: none;
  color: #fff;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 14px;
}

.links {
  display: flex;
  gap: 34px;
}

.links a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  letter-spacing: 1px;
  transition: opacity 0.25s ease;
}
.links a:hover { opacity: 0.65; }

/* =======================================
   HERO SECTIONS
   ======================================= */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 120px 24px 70px; /* top includes nav offset */
  text-align: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Backgrounds: IMPORTANT path */
.hero--one   { background-image: url("./assets/hero-1.png"); }
.hero--two   { background-image: url("./assets/hero-2.png"); }
.hero--three { background-image: url("./assets/hero-3.png"); }

/* Dark overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    1200px 700px at 50% 35%,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.88)
  );
  z-index: 0;
}

/* Bottom fade */
.hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.95));
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 0 10px;
}

/* =======================================
   Typography
   ======================================= */

.kicker {
  font-size: 12px;
  letter-spacing: 3px;
  opacity: 0.75;
  margin-bottom: 14px;
}

h1 {
  font-size: 64px;
  letter-spacing: 8px;
  font-weight: 600;
  margin-bottom: 10px;
}

h2 {
  font-size: 48px;
  letter-spacing: 6px;
  font-weight: 600;
  margin-bottom: 12px;
}

.sub {
  font-size: 15px;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 22px;
}

/* =======================================
   CTA Buttons
   ======================================= */

.cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 18px;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.55);
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.25s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
}

.btn--ghost {
  background: transparent;
}

/* =======================================
   Meta line
   ======================================= */

.meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.75;
}

/* =======================================
   Pills
   ======================================= */

.pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pill {
  font-size: 12px;
  letter-spacing: 1px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

/* =======================================
   Contact
   ======================================= */

.hero__inner--contact {
  padding-bottom: 40px;
}

.mail {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  text-decoration: none;
  color: #fff;
  letter-spacing: 1px;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}
.mail:hover { opacity: 0.65; }

/* =======================================
   Footer
   ======================================= */

.footer {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.75;
}

.footer__links a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  opacity: 0.85;
}
.footer__links a:hover { opacity: 0.6; }

/* =======================================
   Responsive
   ======================================= */

@media (max-width: 900px) {
  .nav { padding: 18px 22px; }
  h1 { font-size: 42px; letter-spacing: 6px; }
  h2 { font-size: 30px; letter-spacing: 4px; }
  .links { gap: 18px; }
}

