:root {
  --sun-yellow: #ffd600;
  --ocean-blue: #0288d1;
  --ocean-dark: #01579b;
  --coral: #ff7043;
  --sand: #fff8e1;
  --tropical-green: #26a69a;
}

/* NAV SUMMER LINK */
.summer-link {
  position: relative;
  animation: pulse-glow 2s ease-in-out infinite;
}
.summer-link::after {
  content: "🔥";
  position: absolute;
  top: -6px;
  right: -8px;
  font-size: 0.7rem;
  animation: bounce-fire 1.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(255, 214, 0, 0.4);
  }
  50% {
    text-shadow: 0 0 18px rgba(255, 214, 0, 0.9);
  }
}
@keyframes bounce-fire {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* HERO */
.summer-hero {
  background: linear-gradient(
    170deg,
    #0288d1 0%,
    #4fc3f7 40%,
    #81d4fa 65%,
    #e1f5fe 100%
  );
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}
.summer-hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' d='M0,50 C360,100 720,0 1080,50 C1260,75 1380,60 1440,50 L1440,100 L0,100Z'/%3E%3C/svg%3E")
    no-repeat bottom;
  background-size: cover;
  z-index: 2;
}

.hero-sun {
  position: absolute;
  top: -40px;
  right: 8%;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    #fff176 30%,
    #ffd600 55%,
    transparent 70%
  );
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(255, 214, 0, 0.5);
  animation: sun-breathe 4s ease-in-out infinite;
}
.hero-sun::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 214, 0, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: ray-pulse 3s ease-in-out infinite;
}
@keyframes sun-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}
@keyframes ray-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
}
.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}
.c1 {
  width: 90px;
  height: 30px;
  top: 50px;
  animation: drift 28s linear infinite;
}
.c1::before {
  width: 45px;
  height: 45px;
  top: -22px;
  left: 12px;
}
.c1::after {
  width: 30px;
  height: 30px;
  top: -12px;
  left: 45px;
}
.c2 {
  width: 70px;
  height: 24px;
  top: 110px;
  animation: drift 36s linear infinite 8s;
  opacity: 0.4;
}
.c2::before {
  width: 35px;
  height: 35px;
  top: -18px;
  left: 10px;
}
.c2::after {
  width: 24px;
  height: 24px;
  top: -10px;
  left: 36px;
}
@keyframes drift {
  from {
    left: -150px;
  }
  to {
    left: 110vw;
  }
}

.palm-left,
.palm-right {
  position: absolute;
  bottom: 60px;
  font-size: 4rem;
  opacity: 0.25;
  z-index: 1;
}
.palm-left {
  left: 5%;
  transform: scaleX(-1);
}
.palm-right {
  right: 5%;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 6px 22px;
  border-radius: 50px;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: "Fredoka One", cursive;
  font-size: 4rem;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
  z-index: 3;
}
.hero-title .accent {
  color: var(--sun-yellow);
  text-shadow: 0 3px 12px rgba(255, 214, 0, 0.4);
}
.hero-desc {
  font-family: "Baloo 2", cursive;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto 30px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}
.btn-hero {
  display: inline-block;
  background: var(--sun-yellow);
  color: #333;
  padding: 14px 42px;
  border-radius: 50px;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(255, 214, 0, 0.45);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}
.btn-hero:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 35px rgba(255, 214, 0, 0.55);
  color: #333;
}

/* STEPS */
.steps-section {
  padding: 70px 0 50px;
  background: #fff;
}
.steps-section .section-title {
  font-family: "Fredoka One", cursive;
  color: var(--ocean-dark);
  font-size: 2rem;
}
.steps-section .section-sub {
  font-family: "Baloo 2", cursive;
  color: var(--coral);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.step-card {
  text-align: center;
  padding: 30px 20px;
}
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--tropical-green));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka One", cursive;
  font-size: 1.4rem;
  margin: 0 auto 18px;
  box-shadow: 0 4px 15px rgba(2, 136, 209, 0.3);
}
.step-card h5 {
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.step-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}
@media (min-width: 768px) {
  .step-connector {
    position: relative;
  }
  .step-connector::after {
    content: "";
    position: absolute;
    top: 48px;
    right: -20px;
    width: 40px;
    height: 3px;
    background: linear-gradient(
      90deg,
      var(--ocean-blue),
      var(--tropical-green)
    );
    border-radius: 2px;
  }
  .step-connector:last-child::after {
    display: none;
  }
}

/* PRIZES */
.prizes-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #01579b 0%, #0288d1 50%, #0097a7 100%);
  position: relative;
  overflow: hidden;
}
.prizes-section::before {
  content: "🎁🏆🎉✨🎁🏆🎉✨🎁🏆🎉✨";
  position: absolute;
  bottom: 10px;
  left: 0;
  font-size: 2rem;
  opacity: 0.08;
  white-space: nowrap;
  letter-spacing: 30px;
  animation: float-icons 25s linear infinite;
}
@keyframes float-icons {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.prizes-section h2 {
  font-family: "Fredoka One", cursive;
  color: #fff;
  font-size: 2.3rem;
}
.prizes-section p {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Baloo 2", cursive;
  font-size: 1.15rem;
}
.prize-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 14px 28px;
  border-radius: 16px;
  color: #fff;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 6px;
  transition: all 0.3s ease;
}
.prize-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}
.prize-badge .emoji {
  font-size: 1.6rem;
}

/* FORM */
.form-section {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, #fff 0%, var(--sand) 100%);
}
.form-section h2 {
  font-family: "Fredoka One", cursive;
  color: var(--ocean-dark);
  font-size: 2.2rem;
}
.form-section .form-sub {
  font-family: "Baloo 2", cursive;
  color: #666;
  font-size: 1.05rem;
}
.form-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 30px 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  border: 2px solid #e8e8e8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-sun {
    width: 100px;
    height: 100px;
    top: -20px;
    right: 4%;
  }
  .palm-left,
  .palm-right {
    font-size: 2.5rem;
    bottom: 50px;
  }
  .prizes-section h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-desc {
    font-size: 1.05rem;
  }
  .summer-hero {
    padding: 70px 0 80px;
  }
}
