:root {
  --primary: #ED6B5A;
  --primary-hover: #D75544;
  --mint: #B9D5CD;
  --mint-light: #E8F2EF;
  --yellow: #F6DD9C;
  --yellow-light: #FDF6E3;
  --red-light: #FCEAE7;
  --text-dark: #2A2F3A;
  --text-gray: #6F7684;
  --bg-cream: #FCFCF9;
  --bg-white: #FFFFFF;
  --footer-bg: #151A2C;

  --font-sans: 'Outfit', sans-serif;
  --font-script: 'Caveat', cursive;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.text-mint {
  color: #87B8A9;
}

.text-yellow {
  color: #E5B239;
}

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

.text-center {
  text-align: center;
}

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

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

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

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

.border-red {
  border-bottom: 6px solid var(--primary);
}

.border-mint {
  border-bottom: 6px solid var(--mint);
}

.border-yellow {
  border-bottom: 6px solid var(--yellow);
}

.font-script {
  font-family: var(--font-script);
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 1px;
}

.link-mint {
  color: #79A396;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Section Subtitle */
.section-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: var(--text-gray);
}

.section-subtitle.justify-center {
  justify-content: center;
}

.section-subtitle i {
  font-size: 1.2rem;
}

/* Typography */
h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text-dark);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.subtitle-text {
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tag-outline.tag-red {
  color: var(--primary);
  border: 1px solid var(--primary);
}

.tag-outline.tag-yellow {
  color: #D19D1F;
  border: 1px solid #D19D1F;
}

.tag-outline.tag-mint {
  color: #629685;
  border: 1px solid #629685;
}

.tag-solid {
  padding: 4px 10px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.tag-solid.tag-red {
  background-color: var(--red-light);
  color: var(--primary);
}

.tag-solid.tag-mint {
  background-color: var(--mint-light);
  color: #629685;
}

.tag-solid.tag-yellow {
  background-color: var(--yellow-light);
  color: #D19D1F;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(237, 107, 90, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(237, 107, 90, 0.4);
}

.btn-outline {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--border-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid var(--mint);
  color: var(--mint);
  font-size: 1.25rem;
}

.btn-icon:hover {
  background-color: var(--mint);
  color: var(--bg-white);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 500;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.logo-img {
  height: 48.6px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Background Shapes */
.bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
}

.shape-mint-circle {
  width: 600px;
  height: 600px;
  background-color: var(--mint-light);
  border-radius: 50%;
  top: -10%;
  left: -20%;
  opacity: 0.7;
}

.shape-red-circle {
  width: 250px;
  height: 250px;
  background-color: rgba(237, 107, 90, 0.1);
  border-radius: 50%;
  top: 15%;
  right: 15%;
  z-index: -2;
}

.shape-mint-star {
  top: 15%;
  left: 5%;
  color: var(--yellow);
  font-size: 24px;
  opacity: 0.8;
  transform: rotate(-15deg);
}

.shape-sparkle {
  top: 40%;
  left: 45%;
  color: var(--mint);
  font-size: 28px;
  opacity: 0.7;
}

.shape-yellow-circle {
  width: 150px;
  height: 150px;
  background-color: var(--yellow-light);
  border-radius: 50%;
  bottom: 20%;
  left: 10%;
  opacity: 0.6;
  z-index: -2;
}

.shape-red-star {
  bottom: 30%;
  right: 20%;
  color: var(--primary);
  font-size: 32px;
  opacity: 0.5;
  transform: rotate(15deg);
}

.shape-yellow-sparkle {
  top: 60%;
  right: 15%;
  color: var(--yellow);
  font-size: 40px;
  opacity: 0.6;
}

/* Hero Section */
.hero {
  padding: 160px 24px 80px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-cream);
  margin-left: -12px;
}

.avatars img:first-child {
  margin-left: 0;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  display: inline-block;
  width: 100%;
}

.img-bg-mint-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--mint);
  border-radius: var(--radius-lg);
  top: 24px;
  left: 24px;
  transform: rotate(3deg);
  z-index: 0;
}

.carousel-wrapper {
  height: 500px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
  transform: rotate(-2deg);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  opacity: 0;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide:hover {
  transform: rotate(0deg);
}

.badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
}

.badge-yellow {
  background-color: var(--yellow);
}

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

/* About Section */
.about {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.4);
}

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

.about-image {
  position: relative;
}

.img-rounded {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.about-badge {
  position: absolute;
  top: -24px;
  right: -24px;
  background: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.about-badge i {
  color: var(--primary);
  font-size: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.stat-card.stat-mint {
  border: 1px solid var(--mint-light);
  border-left: 4px solid var(--mint);
}

.stat-card.stat-yellow {
  border: 1px solid var(--yellow-light);
  border-left: 4px solid var(--yellow);
}

.stat-card h3 {
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Workshops Section */
.workshops {
  padding: 100px 24px;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
}

.deco-icons {
  position: absolute;
  top: 0;
  right: -40px;
  font-size: 2rem;
  opacity: 0.5;
}

.deco-icons i:first-child {
  position: absolute;
  top: -20px;
  right: 20px;
  transform: rotate(15deg);
}

.workshops-carousel-container {
  position: relative;
  width: 100%;
  padding: 0 40px;
}

.workshops-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 24px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.workshops-carousel::-webkit-scrollbar {
  display: none;
}

.workshop-card {
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img i {
  font-size: 80px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--mint-light);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--text-dark);
  transition: var(--transition);
}

.carousel-nav:hover {
  background-color: var(--mint);
  color: white;
}

.carousel-nav.prev {
  left: -10px;
}

.carousel-nav.next {
  right: -10px;
}

.card-content {
  padding: 32px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.card-header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.card-content p {
  font-size: 1rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Adult Workshops */
.adult-workshops {
  background-color: var(--bg-white);
  padding: 100px 0;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  position: relative;
}

.adult-workshops::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--bg-white);
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  z-index: -1;
}

.adult-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}



.adult-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.adult-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  background: var(--bg-white);
}

.adult-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.adult-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.adult-card-head h3 {
  font-size: 1.1rem;
  margin: 0;
}

.adult-info p {
  font-size: 0.9rem;
  margin: 0;
}

/* Last 3 Adult Cards Centering */
@media (min-width: 1024px) {


  .adult-grid .adult-card:nth-child(5) {
    grid-column: 1 / 2;
    margin-left: 50%;
  }

  .adult-grid .adult-card:nth-child(6) {
    grid-column: 2 / 3;
    margin-left: 50%;
  }

  .adult-grid .adult-card:nth-child(7) {
    grid-column: 3 / 4;
    margin-left: 50%;
  }
}

/* Footer */
.footer {
  background-color: var(--footer-bg);
  color: #A0A4AB;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  color: var(--bg-white);
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 400px;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
}

.footer-links-col h4 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-links-col ul li {
  margin-bottom: 12px;
}

.footer-links-col ul a {
  transition: var(--transition);
}

.footer-links-col ul a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.contact-list i {
  color: var(--bg-white);
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-bottom {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

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

.footer-deco-icon {
  position: absolute;
  bottom: -40px;
  left: 20px;
  font-size: 180px;
  opacity: 0.03;
  color: var(--bg-white);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    padding-top: 140px;
    gap: 40px;
  }

  .adult-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .adult-grid .adult-card:nth-child(5),
  .adult-grid .adult-card:nth-child(6),
  .adult-grid .adult-card:nth-child(7) {
    grid-column: auto;
    margin-left: 0;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions .btn-primary {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }

  .hero-buttons,
  .hero-social-proof {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .adult-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.5rem;
  }

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

  .adult-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
  }
}

/* Contact Section */
.contact-section {
  padding: 80px 24px;
}

.contact-wrapper {
  padding: 60px 40px;
  border-radius: var(--radius-xl);
  max-width: 800px;
  margin: 0 auto;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.contact-link:hover {
  color: var(--primary);
}

.contact-link .contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-link:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}
