html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 245, 204, 0.95), rgba(255, 245, 204, 0) 32%),
    linear-gradient(180deg, #7fd3e7 0%, #dff7ff 22%, #fff6df 48%, #f7d8aa 100%);
  color: #2b2a2a;
  text-align: center;
}

/* HERO */
.hero {
  position: relative;
  padding: 48px 20px 56px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  width: 110%;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  bottom: -80px;
  height: 160px;
  background: rgba(255, 255, 255, 0.35);
}

.hero::after {
  bottom: -105px;
  height: 180px;
  background: rgba(245, 214, 154, 0.8);
}

.hero-sparkles {
  font-size: 1.6rem;
  letter-spacing: 0.35rem;
  margin-bottom: 18px;
}

.logo {
  width: 260px;
  max-width: 80%;
  margin-bottom: 20px;
  filter: drop-shadow(0 18px 24px rgba(24, 82, 102, 0.18));
}

h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  margin: 10px 0;
  color: #0c4a60;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.55);
}

.hero p {
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}

.tagline {
  color: #114c5d;
  font-weight: 700;
}

/* CTA BUTTON */
.cta {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #ff914d, #ff6f61);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 14px 30px rgba(201, 94, 45, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 34px rgba(201, 94, 45, 0.32);
}

.site-link {
  margin-top: 14px;
}

.site-link a {
  color: #0c4a60;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(12, 74, 96, 0.2);
}

/* FLAVORS */
.flavors {
  padding: 40px 20px 50px;
}

.flavors h2 {
  margin-bottom: 25px;
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  color: #0c4a60;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 750px;
  margin: auto;
}

/* CARDS */
.card {
  background: rgba(255, 255, 255, 0.88);
  padding: 22px 14px;
  border-radius: 20px;
  border: 1px solid rgba(12, 74, 96, 0.08);
  box-shadow: 0 14px 28px rgba(45, 87, 109, 0.12);
  font-weight: bold;
  font-size: 1.05rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 18px 34px rgba(45, 87, 109, 0.18);
}

.emoji {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

/* ABOUT */
.about {
  padding: 50px 20px;
  max-width: 700px;
  margin: auto;
}

.about h2 {
  margin-bottom: 10px;
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  color: #0c4a60;
}

.about p {
  line-height: 1.6;
  font-size: 1.08rem;
}

/* FOOTER */
footer {
  padding: 25px;
  background: rgba(12, 74, 96, 0.92);
  color: #fff6df;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 450px) {
  .grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero-sparkles {
    letter-spacing: 0.15rem;
  }
}
