:root {
  --bg: #d49f6f;
  --fg: #f5f5f7;
  --muted: #ffffff;
  --accent: #ffffff;
}
@font-face { font-family: HonkyTonk; src: url('fonts/Honk-Regular-VariableFont_MORF\,SHLN.ttf'); }
@font-face { font-family: SourGummy; src: url('fonts/SourGummy-VariableFont_wdth\,wght.ttf'); }
@media (max-width: 600px) {
  .container {
    padding: 1.2rem 1rem 2rem;
  }

  .header h1 {
    letter-spacing: 0.02em;
  }

  .header h2 {
    margin-bottom: 1.5rem;
  }

  .slideshow {
    width: 90vw;
    border-radius: 10px;
  }

  .countdown {
    gap: 0.8rem;
  }

  .time-block {
    min-width: 70px;
  }

  .time-block span {
    font-size: 2rem;
  }

  .time-block label {
    font-size: 0.7rem;
  }
}


* {
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  justify-content: center;
}
body {
  background:
    radial-gradient(
      circle at center,
      #f0b873 0%,
      #e89939 45%,
      #fc861f 75%,
      #ff6a25 100%
    );
}
.container {
  max-width: 900px;
  width: 100%;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  z-index: 1;
}

.header h1 {
    font-family: HonkyTonk;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.header h2 {
    font-family: SourGummy;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* --- Square slideshow --- */

.slideshow-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.slideshow {
  width: min(70vw, 420px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

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

/* --- Countdown --- */

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.time-block {
  min-width: 90px;
}

.time-block span {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
}

.time-block label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
/* Vanta birds layer */
#birdy {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
#birdy canvas {
  width: 100% !important;
  height: 100% !important;
}

