/* ==================================================
  Playful palette
================================================== */
:root {
  --primary: #199c45;
  --secondary: #5e3cff;
  --accent: #f5576c;

  --soft-pink: #ffe5f2;
  --soft-purple: #f3ecff;
  --soft-blue: #e8f3ff;
  --soft-green: #e7f7ef;
  --soft-yellow: #fff6db;

  --dark: #2c3e50;
  --text: #333;
  --white: #ffffff;

  --card-bg: var(--white);
  --border: #f2c6c6;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 15px 35px rgba(0, 0, 0, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

/* ==================================================
RESET / BASE
================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

/* ==================================================
NAVBAR
================================================== */
.navbar {
  background: linear-gradient(135deg, #1fa463, #199c45);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}


.logo img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 6px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
  transition: transform 0.2s ease;

}


.logo-text {
  font-family: "Lobster", cursive;
  font-size: 1.3rem;
  color: var(--white);
}

.navbar nav a {
  color: var(--white);
  margin-left: 15px;
  font-weight: 500;
}

/* Social icons */
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
/* Brand colors */
.social-icon.facebook {
  background-color: #1877f2;
}
.social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
/* ==================================================
HERO
================================================== */
.hero {
  background: url("../images/hero.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 110px 20px;
}

.hero-content h1 {
  font-size: 44px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
}

/* ==================================================
BUTTONS
================================================== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  padding: 12px 30px;
  border-radius: 999px;
  margin-top: 20px;
  transition: transform 0.3s ease;
}

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


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align:center;
}

/* ==================================================
SECTIONS
================================================== */
section {
  padding: 70px 20px;
  text-align: center;
}

section:not(:first-child) {
  margin-top: 40px;
}

/* Background variants */
.section-pink   { background: var(--soft-pink); }
.section-purple{ background: var(--soft-purple); }
.section-blue  { background: var(--soft-blue); }
.section-green { background: var(--soft-green); }
.section-yellow{ background: var(--soft-yellow); }

/* ==================================================
ABOUT SECTION
================================================== */
.about-section {
  background: #fde9ef;
  padding: 4rem 1.5rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about-image {
  flex: 1.2;                  /* ✅ image becomes dominant */
}

/* LEFT IMAGE */
.about-image img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18);
}


/* RIGHT TEXT */
.about-text {
  flex: 1;
  text-align: left;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 820px) {
  .about-container {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .about-text {
    order: 1;
  }

  .about-image {
    order: 2;
  }

  .about-image img {
    height: auto;
    max-height: 320px;
  }
}


.about-text h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #ff5a7a;
  position: absolute;
}


.about-text .underline {
  width: 50px;
  height: 3px;
  background: #ff5a7a;
  margin-bottom: 1.5rem;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}


.team-intro {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #444;
}


.team-text {
  max-width: 700px;
  margin: 0 auto;
}


.team-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.3rem;
  color: #333;
}

.team-text strong {
  color: #6b4cf6; /* same purple as your accents */
  font-weight: 600;
}

.team-section {
  background: #f3effc; /* slightly calmer than current */
}

.offer-section {
  background: #f3effc;
  padding: 4rem 1.5rem;
  text-align: center;
}

.offer-text {
  max-width: 720px;        /* ✅ controls line length */
  margin: 0 auto;
}

.offer-intro {
  font-size: 1.05rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 1.8rem;
}

.offer-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: #333;
}

/* highlight key ideas */
.offer-text strong {
  color: #6b4cf6;          /* matches your accents */
  font-weight: 600;
}

.offer-text p:last-child {
  margin-bottom: 0;
}
.values-section {
  background: #fde9ef;
  padding: 4rem 1.5rem;
  text-align: center;
}

.values-text {
  max-width: 720px;
  margin: 0 auto;
}

.values-intro {
  font-size: 1.05rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 1.8rem;
}

.values-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: #333;
}

.values-text strong {
  color: #6b4cf6; /* same accent as other sections */
  font-weight: 600;
}
/* ==================================================
SECTION TITLES
================================================== */
section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
}

section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--accent);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ==================================================
FEATURES & CARDS
================================================== */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-strong);
  transition: transform 0.3s ease;
}

/* Page-scoped card style for gradi.html */
.gradi-page .gradi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.gradi-page .gradi-card:hover {
  transform: translateY(-6px);
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card h3 {
  color: var(--secondary);
}

.programs-page .program-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);

  background: var(--card-bg);
  padding: 14px 20px;
  border-radius: var(--radius-pill);

  border: 2px solid var(--border);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);

  transition: transform 0.2s ease;

  opacity: 0;
  transform: translateY(30px);
}

.programs-page .program-card:hover {
  transform: translateY(-3px);
}

.programs-page .program-card.show {
  opacity: 1;
  transform: translateY(0);
}


.underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #ff8fab, #ffb347);
  margin: 10px auto 20px;
  border-radius: 2px;
}


.timeline-card {
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 999px;
  padding: 14px 18px;
}



/* ==================================================
PROGRAM BOX
================================================== */
.pricing-card {
  background: #ffffff;
  max-width: 520px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  text-align: center;

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 1.5rem 0;
  text-align: left;
}

.info-row .icon {
  font-size: 1.4rem;
  margin-top: 0.2rem;
}

.info-row strong {
  font-size: 1rem;
  color: #6b4cf6;
}

.info-row p {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  color: #333;
}


.program-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: calc(var(--space-lg) + 0.5rem) 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.program-box p {
  margin: 20px 0;
}

.program-box strong {
  display: inline-block;
  min-width: 110px;
  text-align: center;
  
}

.program-box .btn {
  display: block;
  margin: 25px auto 0;
}


.icon-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.icon-list li {
  display: flex;
  align-items: center;      /* ✅ vertical alignment FIX */
  gap: 0.45rem;             /* ✅ brings icon closer to text */
  margin-bottom: 0.6rem;
}

.icon-list .icon {
  color: #6b4cf6;
  font-size: 0.9rem;
  flex-shrink: 0;           /* ✅ prevents shifting */
  line-height: 1;
}

.icon-list .text {
  line-height: 1.4;
}

.program-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.program-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.program-card h3 span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #777;
  margin-top: 0.3rem;
}
.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.program-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;

  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  color: #333;
}

.program-list li::before {
  content: "✔";
  color: #6b4cf6;
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.program-cards {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}


.programs-page .program-gallery-section .content-box {
  max-width: 1200px; /* or more */
}


.programs-page .program-gallery-section {
  padding: 60px 0;
  background: #fff; /* or very light */
}


.programs-page .important-info {
  background: var(--card-bg);
  margin: 0 auto;
  padding: 60px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.programs-page .info-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  text-align: center;
}

.programs-page .info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;

  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.programs-page .info-list li::before {
  content: "✔";
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 0.15rem;
}


.programs-page .info-container {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  margin: 0 auto;
}


.programs-page .program-info {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);

  padding: 30px;
  border-radius: var(--radius-md);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    0 0 0 1px rgba(255,255,255,0.6) inset;

  transition: all 0.3s ease;
}


.programs-page .program-info:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.12);
}



.programs-page .image-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.programs-page .image-box::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(255, 183, 197, 0.3),
    rgba(255, 255, 255, 0)
  );

  opacity: 0;
  transition: 0.4s ease;
}


.programs-page .image-box img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.programs-page .image-box:hover img {
  transform: scale(1.05);
}


.programs-page .program-info,
.programs-page .image-box {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.programs-page .program-info.show,
.programs-page .image-box.show {
  opacity: 1;
  transform: translateY(0);
}


.content-box {
  max-width: 1000px;   /* IMPORTANT */
  margin: 0 auto;
}


.content-box img {
 width: 100%;
  max-width: 500px;  /* prevents it from being huge */
  height: auto;
  border-radius: 16px;

}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:20px;
}


/* main pill */
.program-card {
  width:100%;
  display: flex;
  align-items: center;
  gap: 15px;

  background: #fff;
  padding: 14px 20px;
  border-radius: 999px;

  border: 2px solid #f2c6c6;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);

  transition: 0.2s ease;
}

.program-card:hover {
  transform: translateY(-3px);
}

/* number badge */
.badge {
  width: 34px;
  height: 34px;

  border-radius: 50%;
  background: #ff8fa3;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
}

/* emoji */
.emoji {
  font-size: 26px;
}

/* text section */
.text {
  padding-left: 12px;
  border-left: 2px solid #e5e5e5;
}

.text h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.text p {
  margin: 2px 0;
  font-size: 14px;
  color: #666;
}

.date {
  font-weight: 600;
  color: #333;
}

.programs-page .program-card:nth-child(1) { border-color: #ffc2d1; }
.programs-page .program-card:nth-child(2) { border-color: #ffd6a5; }
.programs-page .program-card:nth-child(3) { border-color: #fdffb6; }
.programs-page .program-card:nth-child(4) { border-color: #caffbf; }
.programs-page .program-card:nth-child(5) { border-color: #a0c4ff; }
.programs-page .program-card:nth-child(6) { border-color: #bdb2ff; }
.programs-page .program-card:nth-child(7) { border-color: #ffc6ff; }
.programs-page .program-card:nth-child(8) { border-color: #9bf6ff; }
.programs-page .program-card:nth-child(9) { border-color: #ffb347; }
.programs-page .program-card:nth-child(10) { border-color: #ffd93d; }
.programs-page .program-card:nth-child(11) { border-color: #6bcf63; }


/* matching badge colors */
.program-card:nth-child(1) .badge { background: #ff8fab; }
.program-card:nth-child(2) .badge { background: #ffb347; }
.program-card:nth-child(3) .badge { background: #ffd93d; }
.program-card:nth-child(4) .badge { background: #6bcf63; }
.program-card:nth-child(5) .badge { background: #4d96ff; }
.program-card:nth-child(6) .badge { background: #9b5de5; }
.program-card:nth-child(7) .badge { background: #f15bb5; }
.program-card:nth-child(8) .badge { background: #00bbf9; }
.program-card:nth-child(9) .badge { background: #ffb347; }
.program-card:nth-child(10) .badge { background: #ffd93d; }
.program-card:nth-child(11) .badge { background: #6bcf63; }


/* ==================================================
GALLERY
================================================== */
.gallery-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.gallery-grid img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.gallery-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
  width: 100%;
}

.gallery-index img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-index img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.programs-page .program-gallery-section .gallery-summer,
.programs-page .program-gallery-section .gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.programs-page .program-gallery-section .gallery-summer img,
.programs-page .program-gallery-section .gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.programs-page .program-gallery-section .gallery-summer img.zoomed,
.programs-page .program-gallery-section .gallery-grid img.zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  height: auto;
  transform: translate(-50%, -50%);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
  z-index: 9999;
  cursor: zoom-out;
}

.programs-page.zoom-active::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
}

/* Global overlay zoom for gallery images (fallback for pages without page-specific class) */
.gallery-summer img.zoomed,
.gallery-grid img.zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  height: auto;
  transform: translate(-50%, -50%);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
  z-index: 9999;
  cursor: zoom-out;
}

body.zoom-active::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
}

.programs-page .program-gallery-section .gallery-summer img:hover:not(.zoomed) {
  transform: translateY(-2px);
}

@media (max-width: 740px) {
  .programs-page .program-gallery-section .gallery-summer {
    grid-template-columns: 1fr;
  }
}

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

/* ==================================================
CTA
================================================== */
.cta {
  background: linear-gradient(135deg, #fddb92, #d1fdff);
  border-radius: 30px;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 34px;
}

/* ==================================================
CONTACT FORM
================================================== */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Inputs & textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 14px;
}

/* Make textarea feel like a real message box */
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Center the button */
.contact-form button {
  align-self: center;
}

/* ==================================================
FOOTER
================================================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-copy {
  margin-top: 20px;
  font-size: 13px;
}


.footer-bottom {
  text-align: center;
  margin-top: 30px;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================================================
COOKIE BANNER
================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--dark);
  color: var(--white);
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  z-index: 999;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 320px;
  line-height: 1.6;
  font-size: 0.96rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner .cookie-close {
  min-width: 40px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
}

.cookie-banner .cookie-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 14px 16px;
    gap: 10px;
  }

  .cookie-banner p {
    flex: 1 1 100%;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .cookie-banner .btn {
    padding: 10px 18px;
    font-size: 0.92rem;
  }

  .cookie-banner .cookie-close {
    min-width: 36px;
    width: 36px;
    height: 36px;
  }
}

/* ==================================================
GO TO TOP BUTTON
================================================== */
#goTopBtn {
  position: fixed;
  right: 25px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  display: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#goTopBtn:hover {
  transform: scale(1.1);
}

/* ==================================================
RESPONSIVE

/* Mobile

/* ============================
   MOBILE FIXES – ALL PAGES
   Hero + Programs consistency
============================ 

/* ===================================
   MOBILE IMPROVEMENTS
=================================== 

@media (max-width: 768px) {

  /* ---------- NAVBAR ---------- 
  
  .navbar {
    padding: 12px 16px;
    flex-wrap: wrap;
  }
 
.logo img {
    width: 44px;
    height: 44px;
  }


  .logo-text {
    font-size: 1.05rem;
    align-items: center;
  }

  .navbar nav {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .navbar nav a {
    font-size: 14px;
    margin-left: 0;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  /* ---------- HERO ---------- 
  .hero {
    min-height: 75vh;
    padding: 60px 16px 70px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 15px;
    margin-top: 10px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content .btn {
    font-size: 15px;
    padding: 14px 32px;
  }

  /* ---------- SECTIONS ---------- 
  section {
    padding: 50px 16px;
  }

  section h2 {
    font-size: 24px;
  }

  /* ---------- CARDS ---------- 
  .feature-card,
  .program-card {
    padding: 22px;
  }

  /* ---------- PROGRAM BOX ---------- 
  .program-box {
    padding: 26px 20px;
    text-align: left;
  }

  .program-box strong {
    min-width: auto;
    display: block;
  }

  
  .container h3 {
    margin-top: 25px;
    font-size: 18px;
  }

  .container p,
  .container li {
    font-size: 15px;
    line-height: 1.6;
  }
}

================================================== */

/* =========================
   HAMBURGER NAVBAR
========================= */

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap:30px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #1fa463, #199c45);
}

/* Links (desktop) */
.nav-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

/* Social icons */
.nav-socials {
  display: flex;
  gap: 10px;
  
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ========= MOBILE ========= */

@media (max-width: 768px) {

  /* Hide desktop links */
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1fa463, #199c45);
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    display: none;
  }

  /* Show menu when active */
  .nav-links.open {
    display: flex;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }
  
  .about-image img {
    height: 260px;
  }

  .info-container {
    flex-direction: column;
  }

  .image-box img {
    max-width: 100%;
  }

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

  .program-card {
    border-radius: 20px; /* nicer on mobile */
    padding: 12px 14px;
  }

  .text h3 {
    font-size: 14px;
  }

  .emoji {
    font-size: 22px;
  }





/* =========================
   RESPONSIVE GOOGLE MAP
========================= */

.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Optional spacing */
.map-address {
  margin-top: 14px;
  font-size: 14px;
}

}
