:root {
  --purple: #9c27b0;
  --yellow: #ffeb3b;
  --orange: #ff9800;
  --blue: #03a9f4;
  --light-blue: #e1f5fe;
  --red: #f44336;
  --pink: #e91e63;
  --green: #8bc34a;
  --dark: #333;
  --text: #444;
  --bg: #ffffff;
  --card: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  color: var(--dark);
}

/* Waves */
.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-bottom .shape-fill {
  fill: #e1f5fe; /* Matches light-blue section */
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-top .shape-fill {
  fill: #ffffff;
}

/* Topbar */
.topbar {
  background: #fff;
  padding: 10px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 120px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links a {
  color: var(--dark);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links .pill {
  background: var(--yellow);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

.nav-links .pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0,0,0,0.1);
}

/* Hero */
.hero {
  position: relative;
  padding: 40px 0 100px; /* Extra padding at bottom for wave */
  background: #fff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-copy p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-actions .btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  padding: 15px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 5px 0 #fbc02d; /* Darker yellow shadow */
  transition: transform 0.2s;
}

.hero-actions .btn:hover {
  transform: translateY(-3px);
}

.hero-visual img {
  border-radius: 20px;
  box-shadow: 10px 10px 0 var(--blue);
  transform: rotate(-2deg);
}

/* Mobile Workshops Section */
.section-mobile {
  background-color: var(--light-blue);
  padding: 80px 0;
  position: relative;
  text-align: center;
}

.section-mobile h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-circle {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--blue);
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 4px solid var(--yellow);
}

.pillar h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.pillar p {
  color: var(--text);
  max-width: 250px;
}

/* Activities Section */
.section-activities {
  background: #fff;
  padding: 80px 0;
  position: relative;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 36px;
}

.theme-title {
  font-size: 28px;
  color: var(--purple);
  margin: 40px 0 20px;
  text-align: center;
  font-family: 'Fredoka', 'Nunito', sans-serif;
}

/* Theme Colors */
.theme-year { color: var(--blue); }
.theme-year + .grid .card-body h3 { background: var(--blue); color: #fff; }
.theme-year + .grid .card-body .price { color: var(--blue); }

.theme-christmas { color: var(--red); }
.theme-christmas + .grid .card-body h3 { background: var(--red); color: #fff; }
.theme-christmas + .grid .card-body .price { color: var(--red); }

.theme-carnival { color: var(--orange); }
.theme-carnival + .grid .card-body h3 { background: var(--orange); color: #fff; }
.theme-carnival + .grid .card-body .price { color: var(--orange); }

.theme-easter { color: var(--green); }
.theme-easter + .grid .card-body h3 { background: var(--green); color: #fff; }
.theme-easter + .grid .card-body .price { color: var(--green); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: transparent;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
}

.card-image {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
  aspect-ratio: 4/3;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body h3 {
  font-size: 18px;
  background: var(--yellow);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  margin: 0;
}

.card-body p {
  margin: 10px 0;
  font-size: 14px;
  color: var(--text);
}

.card-body .price {
  font-weight: 700;
  color: var(--purple);
  font-size: 16px;
}

/* About Section */
.section-about {
  padding: 80px 0;
  background: #fff;
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-image img {
  border-radius: 20px;
  box-shadow: -10px 10px 0 var(--pink);
}

/* Contact Section */
.section-contact {
  background-color: var(--light-blue);
  padding: 80px 0;
  position: relative;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-item {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--blue);
  margin: 0 auto 15px;
}

.contact-item h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--dark);
}

.contact-item p {
  margin: 0;
  color: var(--text);
}

/* Footer */
.footer {
  background: var(--blue); /* Or a darker blue if preferred */
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
}

.footer h3 {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--blue);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.legal {
  text-align: center;
  margin-top: 40px;
  opacity: 0.8;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid, .story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
    margin-bottom: 30px;
  }
  
  .nav-links {
    display: none; /* Simple hide for mobile for now */
  }
}
