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

:root {
  --sky-top: #87ceeb;
  --sky-bottom: #b8e8f8;
  --grass: #7bc67e;
  --teal: #2bb5a0;
  --coral: #ff6b6b;
  --sun: #ffd93d;
  --purple: #9b59b6;
  --blue: #4a90d9;
  --text: #2d3436;
  --text-soft: #636e72;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(45, 52, 54, 0.15);
  --radius: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-bottom) 55%, var(--grass) 100%);
  overflow-x: hidden;
}

/* Decorative sky */
.sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sun {
  position: absolute;
  top: 4%;
  right: 8%;
  width: 72px;
  height: 72px;
  background: radial-gradient(circle at 35% 35%, #fff9c4, var(--sun));
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(255, 217, 61, 0.5);
  animation: pulse-sun 4s ease-in-out infinite;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50px;
  filter: blur(0.5px);
  animation: drift 28s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud-1 {
  width: 100px;
  height: 36px;
  top: 12%;
  left: 5%;
  animation-delay: 0s;
}

.cloud-1::before {
  width: 44px;
  height: 44px;
  top: -22px;
  left: 14px;
}

.cloud-1::after {
  width: 56px;
  height: 56px;
  top: -30px;
  right: 12px;
}

.cloud-2 {
  width: 130px;
  height: 42px;
  top: 22%;
  right: 12%;
  animation-delay: -8s;
}

.cloud-2::before {
  width: 52px;
  height: 52px;
  top: -26px;
  left: 18px;
}

.cloud-2::after {
  width: 64px;
  height: 64px;
  top: -34px;
  right: 16px;
}

.cloud-3 {
  width: 80px;
  height: 30px;
  top: 8%;
  left: 42%;
  animation-delay: -16s;
}

.cloud-3::before {
  width: 36px;
  height: 36px;
  top: -18px;
  left: 10px;
}

.cloud-3::after {
  width: 44px;
  height: 44px;
  top: -22px;
  right: 8px;
}

@keyframes drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(30px); }
}

@keyframes pulse-sun {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* Page layout */
.page {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Brand logo */
.brand {
  animation: fade-down 0.8s ease-out both;
}

.brand-logo {
  width: min(320px, 85vw);
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.12));
}

/* Poster */
.hero {
  width: 100%;
  animation: fade-up 0.8s ease-out 0.15s both;
}

.poster-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 4px rgba(255, 255, 255, 0.6);
  background: var(--white);
  line-height: 0;
}

.hero-video,
.poster {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* CTA text */
.cta {
  text-align: center;
  animation: fade-up 0.8s ease-out 0.3s both;
}

.tagline {
  font-family: "Fredoka", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.headline {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--coral), var(--purple), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.subtext {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto;
}

/* Contact */
.contact {
  width: 100%;
  animation: fade-up 0.8s ease-out 0.45s both;
}

.contact-title {
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(45, 52, 54, 0.18);
  border-color: var(--teal);
}

.contact-card:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 12px;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.contact-value {
  font-family: "Fredoka", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  animation: fade-up 0.8s ease-out 0.6s both;
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .page {
    padding: 1.5rem 1rem 2.5rem;
    gap: 1.5rem;
  }

  .sun {
    width: 52px;
    height: 52px;
    top: 3%;
    right: 5%;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
