@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

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

html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0f;  /* dark bg — bars feel dramatic */
}

/* Loading counter number */
.counter {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  color: #2a2a3a;
  padding: 0.2em 0.4em;
  font-size: 20vw;
  font-family: 'Bebas Neue', serif;
  z-index: 10000;
  pointer-events: none;
  user-select: none;
}

/* Block reveal overlay */
.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  display: flex;
}

.bar {
  width: 10vw;
  height: 105vh;
  background: #1a1a2e;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1em;
}

nav div {
  display: flex;
  padding: 1em;
  gap: 10em;
}

nav div a {
  text-decoration: none;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 2em;
}

.header .h1 {
  position: relative;
  font-family: 'Bebas Neue', serif;
  font-size: 32vw;
  color: #1a1a1a;
  line-height: 1.125;
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  display: flex;
}

.bar {
  width: 10vw;
  height: 105vh;
  background: #1a1a1a;
}

.counter {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  color: #bcbcc4;
  padding: 0.2em 0.4em;
  font-size: 20vw;
  font-family: 'Bebas Neue', serif;
  z-index: 10000;
}

.hero {
  position: relative;
  width: calc(100vw - 4em);
  height: 100%;
  margin: 0 auto;
  border-radius: 10px;
  border: 4px solid #1a1a1a;
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Overlay — fades in after animation */
.cta-overlay {
  position: absolute;
  bottom: 2.5em;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  opacity: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  padding: 0.85em 2.5em;
  border-radius: 100px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.cta-btn:hover {
  background: #333;
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.cta-label {
  color: #1a1a1a;
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  opacity: 0.55;
  letter-spacing: 0.04em;
}
