@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700&display=swap');

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

html, body {
  height: 100%;
  overflow: hidden;
}

/* ── Marquee banner ── */
.marquee-wrap {
  position: fixed;
  top: 28px;
  left: -5%;
  width: 110%;
  z-index: 10;
  transform: rotate(-2.5deg);
  background-color: #0D0D0D;
  padding: 10px 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Sticker ── */
main {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.sticker {
  width: 320px;
  filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.35));
}

/* ── Ocean background ── */
.ocean-bg {
  position: fixed;
  inset: 0;
  background-color: #EDF8FD;
  z-index: 0;
  overflow: hidden;
}

.wave3, .wave2, .wave1 {
  position: absolute;
  left: -10%;
  width: 120%;
  bottom: -15vh;
}

.wave3 { top: 15vh; z-index: 1; animation: sway-right 5s ease-in-out infinite; }
.wave2 { top: 46vh; z-index: 2; animation: sway-left 4s ease-in-out infinite; }
.wave1 { top: 70vh; z-index: 3; animation: sway-right 6s ease-in-out infinite; }

/* The solid body of each wave, below the wavy SVG edge */
.wave3::after,
.wave2::after,
.wave1::after {
  content: '';
  position: absolute;
  top: 21vh;
  left: 0;
  right: 0;
  bottom: 0;
}

.wave3::after { background-color: #D1EAF4; }
.wave2::after { background-color: #79C3E0; }
.wave1::after { background-color: #3799BF; }

/* Wavy top edge; shadow casts UPWARD onto the layer behind */
.wave3 svg,
.wave2 svg,
.wave1 svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 22vh;
  display: block;
}



@keyframes sway-right {
  50% { transform: rotate(-2deg) translateY(-2px); }
}

@keyframes sway-left {
  50% { transform: rotate(2deg) translateY(2px); }
}
