@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@700;800&display=swap');

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.scene {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-picture {
  position: absolute;
  inset: 0;
}

.bg-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Logo ── */
.site-header {
  padding-top: 5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.logo {
  width: clamp(160px, 16vw, 320px);
  height: auto;
  mix-blend-mode: screen;
}

.tagline {
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(8px, 0.9vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.9;
}

/* ── Red badges ── */
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 0.8vw, 14px);
  padding-bottom: 6vh;
}

.badge {
  background: #d90000;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(20px, 3.6vw, 68px);
  font-weight: 800;
  padding: 0.15em 0.6em;
  border-radius: 5px;
  letter-spacing: 0.01em;
  display: block;
  white-space: nowrap;
  text-align: center;
}

/* ── QR code ── */
.qr-wrap {
  position: absolute;
  bottom: 4%;
  right: 3%;
}

.qr-img {
  width: clamp(90px, 9vw, 190px);
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}

/* ── Tap-Me (mobile only) ── */
.tap-me {
  display: none;
  position: absolute;
  bottom: 4%;
  right: 3%;
  z-index: 2;
}

.tap-me img {
  width: clamp(90px, 26vw, 150px);
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .site-header {
    padding-top: 6vh;
  }

  .logo {
    width: clamp(130px, 38vw, 200px);
  }

  .badge {
    font-size: clamp(16px, 6.5vw, 36px);
  }

  .qr-wrap {
    display: none;
  }

  .tap-me {
    display: block;
  }
}
