/* =========================
   LA LA LAND - MASTER LOCK
   Stable / Royal Blue Core
   ========================= */

/* ===== GLOBAL RESET ===== */

* {
  box-sizing: border-box;
}

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

/* ===== BODY ===== */

body {
  min-height: 100vh;
  overflow-x: hidden;

  background-attachment: fixed;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;

  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 1px;

  color: white;
  text-align: center;
}

/* =========================
   TITLE
   ========================= */

h1 {
  font-size: clamp(42px, 8vw, 64px); /* mobile-safe */
  margin-top: 100px;
  letter-spacing: 6px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* Glow behind title */

h1::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(30,144,255,0.6) 0%,
    rgba(0,70,200,0.4) 40%,
    transparent 70%
  );
  filter: blur(50px);
  z-index: -1;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%   { transform: translate(-50%, -50%) scale(1); }
  50%  { transform: translate(-50%, -50%) scale(1.15); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

/* =========================
   TEXT
   ========================= */

h2 {
  font-size: 28px;
  margin-top: 40px;
  letter-spacing: 3px;
}

p {
  font-size: 18px;
  margin: 10px 0;
}

/* =========================
   LINKS
   ========================= */

.content a {
  display: block;
  font-size: 22px;
  margin: 12px 0;
  text-decoration: none;
  transition: 0.3s ease;
}

.content a:hover {
  transform: scale(1.05);
}

/* =========================
   CLOUDS
   ========================= */

.clouds {
  position: fixed;
  top: 15%;
  left: -600px;
  width: 600px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  animation: floatCloud 120s linear infinite;
}

@keyframes floatCloud {
  from { left: -600px; }
  to   { left: 110%; }
}

/* =========================
   PARK SILHOUETTE
   ========================= */

.park {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

/* =========================
   CONTENT LAYER
   ========================= */

.content {
  position: relative;
  z-index: 2;
  padding: 0 20px 200px 20px; /* adds mobile side breathing */
}

/* =========================
   VIDEO FRAME
   ========================= */

.video-frame {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.video-frame iframe {
  width: 95vw;
  max-width: 1500px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  border: none;

  box-shadow:
    0 0 40px rgba(255,255,255,0.25),
    0 0 80px rgba(30,144,255,0.35);
}

/* =========================
   PHOTO STRIP (CLEAN POLAROID)
   ========================= */

.photo-strip {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: clamp(12px, 4vw, 20px);
  flex-wrap: nowrap;
}

.photo-strip img {
  width: clamp(110px, 28vw, 200px);
  height: auto;
  flex-shrink: 0;

  background: white;
  padding: 10px;
  border-radius: 6px;

  box-shadow: 0 10px 20px rgba(0,0,0,0.4);

  transform: rotate(-4deg);
  transition: transform 0.3s ease;
}

.photo-strip img:nth-child(2) {
  transform: rotate(5deg);
}

.photo-strip img:nth-child(3) {
  transform: rotate(-2deg);
}

.photo-strip img:hover {
  transform: rotate(0deg) scale(1.05);
}

/* =========================
   STARS
   ========================= */

.star {
  position: fixed;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
  0%   { opacity: 0; }
  50%  { opacity: 0.8; }
  100% { opacity: 0; }
}