@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary-green: #2ecc71;
  --primary-yellow: #ffda79;
  --primary-blue: #48dbfb;
  --primary-red: #ff6b6b;
  --primary-pink: #ff9ff3;

  --bg-white: #FFFFFF;
  --bg-offwhite: #FAFAFA;

  --text-main: #333333;
  --text-muted: #666666;
  --text-light: #999999;

  /* Typography */
  --font-heading: 'Fredoka One', cursive;
  --font-body: 'Quicksand', sans-serif;

  /* Shadows & Borders */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
  --shadow-fun: 0 10px 0 rgba(0, 0, 0, 0.1);
  --radius-sm: 15px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-pill: 100px;

  /* Layout */
  --container-width: 1200px;
  --section-padding: 80px 0;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-offwhite);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Utilities */
.text-center {
  text-align: center;
}

.text-green {
  color: var(--primary-green);
}

.text-yellow {
  color: var(--primary-yellow);
}

.text-blue {
  color: var(--primary-blue);
}

.text-red {
  color: var(--primary-red);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-yellow);
  border-radius: var(--radius-pill);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--bg-white);
  box-shadow: 0 6px 0 #4ca875;
}

.btn-primary:hover {
  background-color: #5ab883;
  transform: translateY(2px);
  box-shadow: 0 4px 0 #4ca875;
}

.btn-secondary {
  background-color: var(--primary-yellow);
  color: var(--text-main);
  box-shadow: 0 6px 0 #d4a72c;
}

.btn-secondary:hover {
  background-color: #e5b93d;
  transform: translateY(2px);
  box-shadow: 0 4px 0 #d4a72c;
}

.btn-outline {
  background-color: transparent;
  border: 3px solid var(--primary-blue);
  color: var(--primary-blue);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  box-shadow: 0 6px 0 #3a9dbf;
  transform: translateY(-2px) scale(1.05);
}

@keyframes squish {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05, 0.95);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes float-gentle {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
}

.header.transparent {
  background-color: transparent;
}

.header.scrolled {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-soft);
  padding: 10px 0;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--primary-green);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-weight: 600;
  color: var(--text-main);
  position: relative;
}

.header.transparent .nav-link:not(.btn) {
  color: var(--bg-white);
}

.header.scrolled .nav-link {
  color: var(--text-main);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--primary-yellow);
  border-radius: var(--radius-pill);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.header.transparent .hamburger .line {
  background-color: var(--bg-white);
}

.header.scrolled .hamburger .line {
  background-color: var(--text-main);
}

/* Sections */
section {
  padding: var(--section-padding);
}

.bg-white {
  background-color: var(--bg-white);
}

/* Footer */
.footer {
  background-color: #2D3748;
  color: var(--bg-white);
  padding: 60px 0 20px;
}

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

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo span {
  color: var(--primary-green);
}

.footer-desc {
  color: #CBD5E0;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-green);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--bg-white);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #CBD5E0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-yellow);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: #CBD5E0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: #A0AEC0;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: #A0AEC0;
  font-size: 0.875rem;
  margin-left: 15px;
}

.footer-bottom-links a:hover {
  color: var(--bg-white);
}

/* Cards */
.card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-fun);
  border: 4px solid #eaeaea;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 100%;
}

.card:hover {
  transform: translateY(-12px) rotate(2deg) scale(1.02);
  border-width: 4px;
  border-style: solid;
  border-color: var(--primary-blue);
  box-shadow: 0 18px 0 rgba(86, 204, 242, 0.3);
}

/* Fun Background Patterns */
.bg-pattern-dots {
  background-image: radial-gradient(var(--primary-yellow) 2px, transparent 2px);
  background-size: 30px 30px;
  background-color: var(--bg-offwhite);
}

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
  color: var(--bg-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/%3E%3C/svg%3E');
  background-size: 200px;
  opacity: 0.5;
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  color: var(--bg-white);
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.breadcrumb a {
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
}

/* Utilities */
.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--text-main);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.btn-top.visible {
  opacity: 1;
  visibility: visible;
}

.btn-top:hover {
  background-color: var(--primary-green);
  transform: translateY(-3px);
}