/* ==============================
   Core Variables & Reset
   ============================== */
:root {
  /* Colors */
  --primary: #FF70A6;
  /* Coral/Pink - playful */
  --secondary: #70D6FF;
  /* Sky Blue - safe/calm */
  --tertiary: #FF9770;
  /* Orange/Coral variant */
  --accent: #FFD670;
  /* Sunshine Yellow - joyful */
  --success: #8DED8E;
  /* Mint Green */
  --purple: #C8A2C8;
  /* Lavender */

  --bg-color: #FFFFFF;
  --bg-subtle: #F8F9FA;
  --bg-soft-blue: #F0F8FF;

  --text-dark: #2D3748;
  --text-light: #718096;
  --text-white: #FFFFFF;

  /* Typography */
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Nunito', sans-serif;
  --font-accent: 'Quicksand', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --border-radius-sm: 12px;
  --border-radius-md: 24px;
  --border-radius-lg: 40px;
  --border-radius-blob: 40% 60% 70% 30% / 40% 50% 60% 50%;

  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(255, 112, 166, 0.15);
  --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease-out;
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--primary);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  display: inline-block;
}

p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

.text-white,
.text-white * {
  color: #ffffff !important;
}

a.btn-primary,
a.btn-secondary,
a.btn-accent {
  color: #ffffff !important;
}

a.btn-accent {
  color: var(--text-dark) !important;
}

/* ==============================
   Layout & Container
   ============================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ==============================
   UI Components
   ============================== */

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(255, 112, 166, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 25px rgba(255, 112, 166, 0.4);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(112, 214, 255, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 25px rgba(112, 214, 255, 0.4);
}

.btn-accent {
  background: var(--accent);
  color: var(--text-dark);
  box-shadow: 0 8px 20px rgba(255, 214, 112, 0.3);
}

.btn-accent:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 25px rgba(255, 214, 112, 0.4);
}

/* Active nav link — visible underline, distinct from button style */
.nav-links a.active:not(.btn) {
  color: var(--primary) !important;
  font-weight: 700;
  position: relative;
}

.nav-links a.active:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}


/* Cards */
.card {
  background: var(--bg-color);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 2px solid transparent;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.card-img-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.card-img-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-normal);
}

.card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-soft-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 15px;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Shapes & Decorations */
.curved-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.curved-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.badge-coral {
  background: rgba(255, 112, 166, 0.1);
  color: var(--primary);
}

.badge-blue {
  background: rgba(112, 214, 255, 0.1);
  color: #0096C7;
}

.badge-mint {
  background: rgba(141, 237, 142, 0.1);
  color: #2D6A4F;
}

.badge-yellow {
  background: rgba(255, 214, 112, 0.2);
  color: #D4A373;
}

/* ==============================
   Animations
   ============================== */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes float-reverse {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(15px) rotate(-2deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulse-soft {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

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

.floating {
  animation: float 6s ease-in-out infinite;
}

.floating-reverse {
  animation: float-reverse 7s ease-in-out infinite;
}

.pulsing {
  animation: pulse-soft 3s infinite;
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ==============================
   Header & Navigation
   ============================== */
header {
  background: var(--bg-color);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition-normal);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  object-fit: contain;
}

.logo-text {
  display: none;
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* ==============================
   Footer
   ============================== */
.site-footer {
  background-color: #f0faff !important;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  border-top: none !important;
}

.footer-top {
  display: none;
  /* Remove the curved divider */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #FF70A6 !important;
  /* Hardcoded pink to be safe */
}

.footer-col p,
.footer-col li,
.footer-col span {
  color: #4a5568 !important;
  /* Darker blue-grey text */
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col i {
  color: #2d3748 !important;
  /* Darker icons */
}

.footer-col p {
  opacity: 1;
}

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

.footer-col a {
  color: #4a5568 !important;
  transition: var(--transition-fast);
  font-weight: 500;
  display: inline-block;
}

.footer-col a:hover {
  color: #FF70A6 !important;
  /* Hardcoded pink on hover */
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--text-white);
  border-radius: 50%;
  color: var(--primary) !important;
  /* Pink icons in white circles */
  transition: var(--transition-bounce);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.social-links a i {
  color: var(--primary) !important;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(255, 112, 166, 0.2);
}

.social-links a:hover i {
  color: var(--text-white) !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px dashed rgba(74, 85, 104, 0.1);
  color: #718096;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #718096;
}

.footer-bottom i {
  color: #718096 !important;
  /* Grey heart */
}

/* ==============================
   Responsive Queries
   ============================== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}