/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

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

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== Header ===== */
.site-header {
  background: #EAB04D;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.01em;
}

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

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

.main-nav a {
  color: #000;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 8px 0;
  position: relative;
  transition: opacity 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  opacity: 0.7;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('photo/IMG_2863.webp') center/cover no-repeat;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(245deg, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.75) 76%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  max-width: 650px;
  margin-left: 60px;
  margin-right: auto;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  display: inline-block;
  padding: 0px 8px;
  margin: 2px 4px 2px 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.highlight-yellow {
  background: #EAB04D;
}

.highlight-blue {
  background: #46C7F3;
}

.highlight-green {
  background: #93D64B;
}

.highlight-pink {
  background: #F092A2;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 800;
  opacity: 0.7;
  margin-top: 8px;
  color: #aaa;
}

/* Hero floating images */
.hero-floating-images {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.float-img {
  position: absolute;
  width: 240px;
  height: auto;
  opacity: 0.8;
  object-fit: contain;
}

.float-img-1 {
  top: 15%;
  right: 30%;
  transform: rotate(41deg);
}

.float-img-2 {
  top: -5%;
  right: 15%;
  transform: rotate(-35deg);
}

.float-img-3 {
  bottom: 5%;
  right: 20%;
  transform: rotate(-160deg) scaleY(-1);
}

.float-img-4 {
  top: 20%;
  right: -5%;
  transform: rotate(146deg) scaleY(-1);
}

/* ===== Accent Bar ===== */
.accent-bar {
  height: 10px;
  background: #46C7F3;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* ===== Section Heading with Lines ===== */
.section-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section-heading::before,
.section-heading::after {
  content: '';
  width: 60px;
  height: 2px;
  background: #EAB04D;
  flex-shrink: 0;
}

/* ===== What Is House of Wisdom (About) ===== */
.about {
  padding: 72px 0;
  background: #fff;
  text-align: center;
}

.about-heading {
  color: #000;
}

.about-heading::before,
.about-heading::after {
  background: #EAB04D;
}

.about-illustration {
  margin: 0 auto 24px;
  width: 140px;
  height: 140px;
}

.about-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-text {
  max-width: 480px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 28px;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-accent {
  background: #EAB04D;
  color: #000;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-accent:hover {
  background: #d9a040;
}

.btn-dark {
  background: #242B46;
  color: #fff;
}

.btn-dark:hover {
  background: #1a2038;
}

/* ===== Leaf Confetti ===== */
@keyframes leafFloat {
  0%   { transform: translate(0, 0) rotate(0deg) scale(0.6); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(1); opacity: 0; }
}

.leaf-particle {
  position: absolute;
  border-radius: 50% 0 50% 0;
  pointer-events: none;
  z-index: 1;
  animation: leafFloat 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ===== Programs ===== */
.programs {
  padding: 72px 0;
  background: #fff;
}

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

.program-card {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.card-blue { background: #46C7F3; }
.card-green { background: #93D64B; }
.card-pink { background: #F092A2; }

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.program-card-header {
  padding: 14px 16px;
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #000;
}

.card-blue .program-card-header { background: #46C7F3; }
.card-green .program-card-header { background: #93D64B; }
.card-pink .program-card-header { background: #F092A2; }

.program-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card-body {
  padding: 20px 24px;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 100px;
  text-align: center;
  color: #1e1e1e;
}

.card-blue .program-card-body { background: #46C7F3; }
.card-green .program-card-body { background: #93D64B; }
.card-pink .program-card-body { background: #F092A2; }

/* ===== Join Us ===== */
.join {
  padding: 72px 0;
  background: #fff;
}

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

.join-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.join-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.join-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.join-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.join-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 14px;
  font-weight: 800;
  font-size: 1.15rem;
  color: #000;
}

.label-blue { background: #46C7F3; }
.label-green { background: #93D64B; }
.label-pink { background: #F092A2; }

/* ===== Events ===== */
.events {
  padding: 72px 0;
  background: #fff;
  text-align: center;
}

.events-text {
  max-width: 480px;
  margin: 0 auto;
}

.events-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 16px;
}

.events-text p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ===== Stories ===== */
.stories {
  padding: 72px 0;
  background: #fff;
}

.videos-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 0;
  overflow: hidden;
  background: #1a1a2e;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

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

/* ===== Footer ===== */
.site-footer {
  background: #242B46;
  padding: 48px 0 24px;
  color: #fff;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FDBE6B;
  line-height: 1.2;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 16px;
}

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

.copyright {
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0.7;
}

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

.social-links a {
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ===== Team Page ===== */
.team-hero .hero-team-label {
  font-size: 4.5rem;
  font-weight: 800;
  color: #EAB04D;
  margin-top: 8px;
  line-height: 1.1;
  position: relative;
  height: 1.2em;
  overflow: hidden;
}

.rotate-text {
  display: block;
  position: relative;
  height: 100%;
}

.rotate-word {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.rotate-word.active {
  opacity: 1;
  transform: translateY(0);
}

.rotate-word.out {
  opacity: 0;
  transform: translateY(-100%);
}

.team-section {
  padding: 60px 0;
  background: #fff;
}

.team-grid {
  display: grid;
  gap: 32px;
  justify-items: center;
}

.team-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.team-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
  margin: 0 auto;
}

.team-card {
  position: relative;
  width: 100%;
  max-width: 260px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s ease;
  z-index: 1;
  background: transparent;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-grid {
  position: relative;
}

.team-card-photo-wrapper {
  position: relative;
  padding-top: 14px;
  padding-left: 11.5%;
  padding-right: 11.5%;
}

/* Gold offset background accent behind the photo */
.team-card-photo-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3%;
  width: 73%;
  height: 100%;
  background: rgba(253, 190, 107, 0.8);
  z-index: 0;
  border-radius: 8px 8px 0 0;
}

.team-card-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 245/264;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px 8px 0 0;
}

/* Name bar — blue, full width */
.team-card-info {
  background: #46C7F3;
  font-family: 'Inria Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
  padding: 6px 16px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  border-radius: 8px;
}

/* Role bar — green, slightly narrower + centered */
.team-card-role {
  background: #93D64B;
  font-family: 'Inria Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #000;
  padding: 3px 16px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  width: 87%;
  margin: 0 auto;
  border-radius: 8px;
}

/* ===== About Page ===== */
.about-hero .hero-bg {
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.about-hero-overlay {
  background: linear-gradient(to right, #46C7F3 10%, #888585 100%);
  mix-blend-mode: multiply;
  opacity: 0.7;
}

section.about-hero h1 {
  font-size: 3.8rem;
}


.about-page-section {
  padding: 72px 0;
  background: #fff;
}

.about-mission {
  display: flex;
  align-items: stretch;
  gap: 48px;
  margin-top: 24px;
}

.about-mission-photo {
  position: relative;
  flex: 0 0 420px;
}

.about-photo-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  background: #FDBE6B;
  opacity: 0.6;
  z-index: 0;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.about-mission-photo:hover .about-photo-accent {
  transform: translate(-6px, -6px);
}

.about-main-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.about-mission-photo:hover .about-main-photo {
  transform: scale(1.02);
}

.about-mission-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-label-bar {
  background: #46C7F3;
  padding: 16px 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #000;
  border-radius: 4px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-bottom: 16px;
  text-align: center;
}

.about-label-bar:hover {
  background: #35b8e6;
  transform: translateX(4px);
}

.about-mission-body {
  flex: 1;
  background: #FDBE6B;
  padding: 48px 32px 32px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.about-dot {
  width: 32px;
  height: 32px;
  background: #333;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.about-mission-body p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 27.2px;
  color: #000;
  line-height: 1.6;
}

/* Committed Section */
.committed-section {
  padding: 24px 0 0;
  background: transparent;
}

.committed-heading {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.committed-heading::before,
.committed-heading::after {
  content: '';
  width: 60px;
  height: 2px;
  background: #EAB04D;
  flex-shrink: 0;
}

.committed-cards-wrapper {
  background: transparent;
  padding: 0;
}

.committed-cards {
  display: flex;
  gap: 0;
}

.committed-card {
  flex: 1;
  opacity: 0;
  transform: translateY(40px) scale(1);
  transition: opacity 0.6s ease, transform 0.5s ease, flex 0.4s ease, filter 0.4s ease;
  cursor: pointer;
  overflow: visible;
  transform-origin: center center;
}

.committed-card.card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.committed-cards:hover .committed-card.card-visible {
  flex: 0.7;
  opacity: 0.5;
  filter: brightness(0.85);
  transform: translateY(0) scale(0.95);
}

.committed-cards:hover .committed-card.card-visible:hover {
  flex: 1.6;
  opacity: 1;
  filter: brightness(1);
  transform: translateY(0) scale(1.05);
}

.committed-cards:hover .committed-card.card-visible .committed-card-label {
  font-size: 0.9rem;
}

.committed-cards:hover .committed-card.card-visible:hover .committed-card-label {
  font-size: 1.2rem;
}

.committed-card-img-wrapper {
  overflow: hidden;
  border-radius: 4px 0 0 0;
}

.committed-card:last-child .committed-card-img-wrapper {
  border-radius: 0 4px 0 0;
}

.committed-card:last-child .committed-card-label {
  border-radius: 0 0 4px 0;
}

.committed-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.committed-card:hover .committed-card-img {
  transform: scale(1.08);
}

.committed-card-label {
  text-align: center;
  padding: 14px 16px;
  font-weight: 800;
  font-size: 1.1rem;
  color: #000;
  border-radius: 0 0 0 4px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.committed-card:hover .committed-card-label {
  transform: translateY(-4px);
}

.committed-card-desc {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #000;
  line-height: 1.5;
  text-align: center;
  margin-top: -4px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.committed-card:hover .committed-card-desc {
  max-height: 200px;
  padding: 10px 16px 14px;
}

/* Goal Section */
.goal-section {
  padding: 72px 0;
  background: #fff;
}

.goal-content {
  display: flex;
  align-items: stretch;
  gap: 48px;
}

.goal-text {
  flex: 1;
  background: #FDBE6B;
  padding: 48px 32px 32px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.goal-dot {
  width: 32px;
  height: 32px;
  background: #333;
  border-radius: 50%;
  margin: 0 auto 16px;
  flex-shrink: 0;
}

.goal-text p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 27.2px;
  color: #000;
  line-height: 1.6;
}

.goal-photo {
  position: relative;
  flex: 0 0 420px;
}

.goal-photo-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  background: #FDBE6B;
  opacity: 0.6;
  z-index: 0;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.goal-photo:hover .goal-photo-accent {
  transform: translate(6px, -6px);
}

.goal-main-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.goal-photo:hover .goal-main-photo {
  transform: scale(1.02);
}

/* ===== Responsive: Tablet (<=768px) ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  section.about-hero h1 {
    font-size: 2.5rem;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #EAB04D;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.25s ease,
                transform 0.3s ease;
    pointer-events: none;
  }

  .main-nav.open {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .hero {
    min-height: 400px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-floating-images {
    display: none;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .join-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .videos-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .team-grid-2 {
    max-width: 100%;
  }

  .hero-team-label {
    font-size: 3rem !important;
  }

  .about-mission {
    flex-direction: column;
    gap: 32px;
  }

  .about-mission-photo {
    flex: none;
    max-width: 100%;
  }

  .committed-cards {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }

  .committed-cards:hover .committed-card {
    flex: 1;
  }

  .committed-cards:hover .committed-card:hover {
    flex: 1;
  }

  .goal-content {
    flex-direction: column;
    gap: 32px;
  }

  .goal-photo {
    flex: none;
  }
}

/* ===== Responsive: Mobile (<=480px) ===== */
@media (max-width: 480px) {
  .hero {
    min-height: 300px;
  }

  section.about-hero h1 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .about,
  .programs,
  .join,
  .events,
  .stories,
  .team-section {
    padding: 48px 0;
  }

  .team-grid-4 {
    grid-template-columns: 1fr;
  }

  .team-grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-team-label {
    font-size: 2rem !important;
  }

  .section-heading::before,
  .section-heading::after {
    width: 30px;
  }

  .header-inner {
    height: 70px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .logo {
    font-size: 1.1rem;
  }
}
