/* CSS reset for full-bleed layouts */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

/* Footprints cursor */
/* Footsteps trail */
.step {
  position: fixed;            /* fixed so it follows viewport */
  width: 18px;
  height: auto;
  opacity: 0;
  pointer-events: none;       /* don’t block clicks */
  transition: opacity 0.7s ease;
  z-index: 9999;              /* above everything */
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.15));
}

.step.present {
  opacity: 0.85;
}



/* Fullscreen layout */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  color: rgba(20, 20, 20, 0.8);
  font-family: Georgia, "Times New Roman", serif;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-bg.png"); 
  background-size: cover;
  background-position: center;
  transform: scale(1.03); /* slight zoom like cinematic bg */
}

/* Fog overlay */
.hero-fog {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.75), rgba(255,255,255,0.35) 45%, rgba(255,255,255,0.15) 70%, rgba(255,255,255,0.05)),
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.20) 45%, rgba(255,255,255,0.08));
  backdrop-filter: blur(0.5px);
}

/* Centered content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(900px, 92vw);
  margin: 0 auto;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 2rem;
}


/* Small top brand */
.brand {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 1.75rem;
}

/* Headline */
.headline-small {
  font-size: 1.15rem;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.headline-big {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
}


/* Paragraph */
.hero-copy {
  margin: 1.4rem auto 2.2rem;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.75;
  font-family: Georgia, "Times New Roman", serif;
}

/* Enter button (thin, framed) */
.enter-btn {
  display: inline-block;
  width: 160px;
  margin: 0 auto;
  padding: 0.95rem 0;
  text-decoration: none;
  color: rgba(20, 20, 20, 0.75);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.15em;
  font-size: 0.85rem;

  border: 1px solid rgba(20, 20, 20, 0.45);
  position: relative;
}

/* Double-line frame effect */
.enter-btn::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(20, 20, 20, 0.25);
  pointer-events: none;
}

.enter-btn:hover {
  color: rgba(20, 20, 20, 0.9);
  border-color: rgba(20, 20, 20, 0.65);
}

.enter-btn:hover::before {
  border-color: rgba(20, 20, 20, 0.45);
}

/* Mobile spacing tweaks */
@media (max-width: 480px) {
  .hero-copy {
    font-size: 0.98rem;
  }
  .enter-btn {
    width: 150px;
  }
}

