* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
  box-sizing: border-box;
}

.navbar {
  background: linear-gradient(to left, #ffc800 0%, #ffc800 70%, #ff914d 100%);
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: transform 0.3s ease;
}
.navbar.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 100px;
  z-index: 1;
  width: 100%;
  max-width: 1772px;
  margin: 0 auto;
  padding: 0 0.3px;
  flex: s;
  padding-left: 20px; /* add spacing */
  padding-right: 20px;
}

.navbar .brand {
  display: flex;
  align-items: center;
}

.navbar .brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.navbar .brand h2 {
  font-size: 25px;
  font-weight: bold;
  margin: 0;
  color: #fff;
  text-decoration: none;
}

.navbar .brand p {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__links {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
}

.navbar__links:hover {
  color: #545454;
  transition: all 0.8s ease;
}

@media screen and (max-width: 600px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 100px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;

    padding-left: 20px;
  }
  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 0;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
    background: #ffc800;
  }

  .navbar__menu.active {
    background: linear-gradient(to left, #ffc800 0%, #ffc800 70%, #ff914d 100%);
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 70vh;
    font-size: 1rem;
  }
  .navbar__menu,
  .navbar__menu.active {
    width: 100vw; /* full screen width */
    margin-left: -20px; /* cancels container padding-left */
  }

  #navbar_logo {
    padding-left: 25px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  #mobile-menu {
    position: absolute;
    top: 47%;
    right: 5%;
    transform: translate(5%, 47%);
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
  }
  .navbar .brand h2 {
    font-size: 20px;
  }
}

.edduport__container {
  max-width: 1400px;
  margin: auto;
  padding: 3cm 20px;
}

.edduport__top {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 40px;
}

.edduport__tag {
  font-size: 20px;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 10px;
  margin-bottom: 0%;
}

.edduport__left h1 {
  letter-spacing: -3px;
  font-size: 70px;
  font-weight: 700;
  color: #737373;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 8.5cm;
}

.edduport__intro {
  color: #737373;
  max-width: 480px;
  letter-spacing: -0.5px;
  line-height: 1.6;
  font-size: 20px;
}

.edduport__right {
  margin-top: 1cm;
}

.edduport__right p {
  font-size: 19px;
  color: #737373;
  margin: 18px 0;
  line-height: 1.6;
  letter-spacing: 1px;
  max-width: 600px;
}

/* ===== IMAGE GALLERY ===== */
.edduport__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 10px;
  margin-top: 3rem;
  max-width: 2000px;
}

/* ----- Image 1 ----- */
.edduport__image1 {
  flex: 1;
  min-width: 550px;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.edduport__image1 img {
  width: 530px;
  height: 450px;
  display: block;
  border-radius: 40px;
  object-fit: cover;
}

.edduport__image1:hover {
  transform: scale(1.03);
}

/* ----- Image 2 ----- */
.edduport__image2 {
  flex: 1;
  min-width: 400px;
  max-width: 1100px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.edduport__image2 img {
  width: 850px;
  height: 450px;
  display: block;
  border-radius: 40px;
}

.edduport__image2:hover {
  transform: scale(1.03);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .edduport__content {
    flex-direction: column;
  }

  .edduport__quote {
    font-size: 1.8rem;
  }
}

.alpas__container {
  max-width: 1400px;
  margin: auto;
  padding: 4cm 20px;
}

.alpas__top {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 30px;
}

.alpas__tag {
  margin-left: 5px;
  font-size: 15px;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.alpas__left h1 {
  letter-spacing: -3px;
  font-size: 70px;
  font-weight: 700;
  color: #737373;
  line-height: 1.1;
  margin-bottom: 5.6cm;
  margin-top: 0;
}

.alpas__left p {
  margin-bottom: 0px;
  margin-left: 5px;
  color: #737373;
  font-size: 20px;
}

.alpas__intro {
  color: #737373;
  max-width: 440px;
  letter-spacing: -0.5px;
  line-height: 1.6;
  text-align: start;
  margin-bottom: 24px;
}

.alpas__right p {
  font-size: 20px;
  color: #737373;
  margin: 18px 0;
  line-height: 1.6;
}

.alpas__right p:first-of-type {
  margin-top: 1.5cm;
}

.alpas_gallery {
  display: flex;
  height: 450px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 60px;
  cursor: pointer;
}

.alpas_gallery div {
  width: 180px;
  flex: 1;
  border-radius: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  transition: transform 1.3s cubic-bezier(0.4, 0.8, 0.25, 1);
}

.alpas_gallery div:hover {
  flex: 8;
  transform: scale(1.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .alpas__gallery img {
    width: 220px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .alpas__gallery img {
    width: 45%;
    height: auto;
  }
}

@media (max-width: 500px) {
  .alpas__gallery img {
    width: 100%;
    height: auto;
  }
}

.dagyaw__container {
  max-width: 1400px;
  margin: auto;
  padding: 2cm 20px;
}

.dagyaw__top {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 30px;
}

.dagyaw__tag {
  font-size: 15px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dagyaw__left h1 {
  letter-spacing: -3px;
  font-size: 70px;
  font-weight: 700;
  color: #737373;
  line-height: 1.1;
  margin-bottom: 5.6cm;
  margin-top: 0; /* tanggalin extra top space */
}

.dagyaw__left p {
  margin-bottom: 0px;
  margin-left: 5px;
  color: #737373;
  font-size: 20px;
}

.dagyaw__intro {
  color: #737373;
  max-width: 440px;
  letter-spacing: -0.5px;
  line-height: 1.6;
  text-align: start;
  margin-bottom: 24px;
}

.dagyaw__right p {
  font-size: 20px;
  color: #737373;
  margin: 18px 0;
  line-height: 1.6;
}

.dagyaw__right p:first-of-type {
  margin-top: 1.5cm;
}

.dagyaw_gallery {
  display: flex;
  height: 450px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 60px;
  cursor: pointer;
}

.dagyaw_gallery div {
  width: 180px;
  flex: 1;
  border-radius: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  transition: transform 1.3s cubic-bezier(0.4, 0.8, 0.25, 1);
}

.dagyaw_gallery div:hover {
  flex: 8;
  transform: scale(1.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dagyaw__gallery img {
    width: 220px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .dagyaw__gallery img {
    width: 45%;
    height: auto;
  }
}

@media (max-width: 500px) {
  .dagyaw__gallery img {
    width: 100%;
    height: auto;
  }
}

.charity__container {
  max-width: 1400px;
  margin: auto;
  padding: 2cm 20px;
}

.charity__top {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 30px;
}

.charity__tag {
  font-size: 15px;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.charity__left h1 {
  letter-spacing: -3px;
  font-size: 70px;
  font-weight: 700;
  color: #737373;
  line-height: 1.1;
  margin-bottom: 3.9cm;
  margin-top: 0;
}

.charity__left p {
  margin-bottom: 0px;
  margin-left: 5px;
  color: #737373;
  font-size: 20px;
}

.charity__right p {
  font-size: 20px;
  color: #737373;
  margin: 18px 0;
  line-height: 1.6;
}

.charity__right p:first-of-type {
  margin-top: 1.5cm;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .charity__gallery img {
    width: 220px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .charity__gallery img {
    width: 45%;
    height: auto;
  }
}

@media (max-width: 500px) {
  .charity__gallery img {
    width: 100%;
    height: auto;
  }
}

.charity__image {
  position: relative;
  width: 650px;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  margin-top: -2.5cm; /* para umakyat konti like sa reference */
}

.charity__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  position: relative;
  z-index: 2;
}

.charity__accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 80px;
  background: #ffd300;
  border-radius: 0 18px 0 0;
  z-index: 1;
}

/* Overlay text on image */
.charity__overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

/* ===== VIDEO BOX ===== */
.charity__video {
  position: relative;
  margin-top: 3cm;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 1.5px #d9d9d9;
}

.charity__video {
  width: 95 0px;
  height: 55 0px;
  border-radius: 25px;
  overflow: hidden;
  margin-top: 2cm; /* para umakyat konti */
  margin-left: -8cm; /* usad pa-kaliwa */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.charity__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

/* ===== ADJUST GRID RESPONSIVE ===== */
@media (max-width: 1100px) {
  .charity__top {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .charity__image {
    margin-top: 0;
    width: 100%;
    height: auto;
  }

  .charity__video video {
    height: 250px;
  }
}

.edduport__container {
  max-width: 1400px;
  margin: auto;
  padding: 3cm 20px;
}

.edduport__top {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 40px;
}

.edduport__tag {
  font-size: 20px;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 10px;
  margin-bottom: 0%;
}

.edduport__left h1 {
  letter-spacing: -3px;
  font-size: 70px;
  font-weight: 700;
  color: #737373;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 8.5cm;
}

.edduport__intro {
  color: #737373;
  max-width: 480px;
  letter-spacing: -0.5px;
  line-height: 1.6;
  font-size: 20px;
}

.edduport__right {
  margin-top: 1cm;
}

.edduport__right p {
  font-size: 19px;
  color: #737373;
  margin: 18px 0;
  line-height: 1.6;
  letter-spacing: 1px;
  max-width: 600px;
}

/* ===== IMAGE GALLERY ===== */
.edduport__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 10px;
  margin-top: 3rem;
  max-width: 2000px;
}

/* ----- Image 1 ----- */
.edduport__image1 {
  flex: 1;
  min-width: 550px;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.edduport__image1 img {
  width: 530px;
  height: 450px;
  display: block;
  border-radius: 40px;
  object-fit: cover;
}

.edduport__image1:hover {
  transform: scale(1.1);
}

/* ----- Image 2 ----- */
.edduport__image2 {
  flex: 1;
  min-width: 400px;
  max-width: 1100px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.edduport__image2 img {
  width: 850px;
  height: 450px;
  display: block;
  border-radius: 40px;
}

.edduport__image2:hover {
  transform: scale(1.1);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .edduport__content {
    flex-direction: column;
  }

  .edduport__quote {
    font-size: 1.8rem;
  }
}

/* ------------------------------- */
/* 💻 Small laptops (769px – 1024px) */
/* ------------------------------- */
@media (min-width: 769px) and (max-width: 1024px) {
  .edduport__container {
    padding: 3cm 30px;
  }

  .edduport__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .edduport__left h1 {
    font-size: 50px;
    margin-bottom: 5cm;
  }

  .edduport__intro {
    font-size: 18px;
    max-width: 400px;
  }

  .edduport__right p {
    font-size: 16px;
    max-width: 500px;
  }

  .edduport__image1 img,
  .edduport__image2 img {
    width: 100%;
    height: auto;
  }
}

/* ------------------------------- */
/* 📱 Tablet / iPad (481px – 768px) */
/* ------------------------------- */
@media (min-width: 481px) and (max-width: 768px) {
  .edduport__container {
    padding: 2cm 20px;
  }

  .edduport__top {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .edduport__left h1 {
    font-size: 40px;
    margin-bottom: 3.5cm;
  }

  .edduport__intro {
    font-size: 16px;
    max-width: 100%;
  }

  .edduport__right p {
    font-size: 15px;
    max-width: 100%;
  }

  .edduport__gallery {
    justify-content: center;
    gap: 15px;
  }

  .edduport__image1,
  .edduport__image2 {
    min-width: 100%;
    max-width: 100%;
    border-radius: 20px;
  }

  .edduport__image1 img,
  .edduport__image2 img {
    width: 100%;
    height: auto;
  }

  .edduport__image1:hover,
  .edduport__image2:hover {
    transform: none;
  }
}

/* ------------------------------- */
/* 📱 Mobile (≤480px) */
/* ------------------------------- */
/* ------------------------------- */
/* 📱 Mobile (≤480px) */
/* ------------------------------- */
@media (max-width: 480px) {
  .edduport__container {
    padding: 1.5cm 15px;
  }

  .edduport__top {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .edduport__left h1 {
    font-size: 32px;
    margin-bottom: 2.5cm;
  }

  .edduport__intro {
    font-size: 14px;
    max-width: 100%;
  }

  .edduport__right p {
    font-size: 13px;
    max-width: 100%;
  }

  .edduport__gallery {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  /* Force both images to the same size */
  .edduport__image1,
  .edduport__image2 {
    flex: none; /* remove flex scaling */
    width: 90%; /* same width */
    max-width: 320px; /* limit max width */
    height: 180px; /* same height */
    border-radius: 15px;
    margin: 0 auto; /* center horizontally */
    min-width: unset; /* remove previous min-width */
    overflow: hidden;
  }

  .edduport__image1 img,
  .edduport__image2 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* crop if needed */
    display: block;
  }

  .edduport__image1:hover,
  .edduport__image2:hover {
    transform: none; /* remove hover effect on mobile */
  }
}

footer {
  background: linear-gradient(to left, #ffc800 0%, #ffc800 70%, #ff914d 100%);
  color: white;
  padding: 3px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 150px;
}

/* Left side (logo + info) */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 10px;
  min-width: 200px;
}

.brand {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.brand img {
  width: 50px;
  height: 50px;
  margin-right: 12px;
}
.brand h2 {
  margin-top: 10px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -1px;
}
.brand a {
  text-decoration: none;
  color: #fff;
  margin-top: 10px;
}
.brand p {
  margin: 0;
}

.info .item {
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: left;
}
.copyright {
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: left;
  font-size: 12px;
}
.info strong {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
}
.info p {
  margin: 0;
}

/* Middle + Right side container */
.footer-middle {
  display: flex;
  gap: 30px; /* pagitan ng Help & FAQs at Let’s Connect */
  align-items: flex-start;
  margin: 10px;
  min-width: 200px;
}

/* Help & FAQs */
.footer-center h3 {
  margin-top: 1.1cm;
  font-size: 25px;
  margin-bottom: 17px;
  letter-spacing: -1px;
}
.footer-center a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 3px 0;
  font-size: 18px;
  text-align: start;
}
.footer-center a:hover {
  color: #737373;
}

/* Let’s Connect */
.footer-right h3 {
  font-size: 25px;
  margin-bottom: 15px;
  margin-top: 1.1cm;
}
.social-links a {
  display: flex;
  align-items: center;
  margin: 8px 0;
  color: white;
  text-decoration: none;
  font-size: 20px;
}
.social-links a:hover {
  color: #737373;
}

.social-links img {
  width: 33px;
  height: 33px;
  margin-right: 8px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ------------------------------- */
/* 📱 MOBILE - small phones (0–600px) */
/* ------------------------------- */
@media (max-width: 600px) {
  footer {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .footer-left,
  .footer-middle,
  .footer-center,
  .footer-right {
    width: 100%;
    margin: 10px 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand h2 {
    font-size: 20px;
  }

  p,
  .footer-center a,
  .social-links a {
    font-size: 14px;
  }

  .footer-center h3,
  .footer-right h3 {
    margin-top: 20px;
    font-size: 20px;
  }

  .social-links img {
    width: 28px;
    height: 28px;
  }
}

/* -------------------------------------- */
/* 📱📲 TABLET / iPad (600px–900px) */
/* -------------------------------------- */
@media (min-width: 600px) and (max-width: 900px) {
  footer {
    padding: 20px 35px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-left {
    width: 45%;
  }

  .footer-middle {
    width: 45%;
    gap: 20px;
  }

  .footer-center h3,
  .footer-right h3 {
    font-size: 22px;
  }

  .footer-center a,
  .social-links a {
    font-size: 16px;
  }

  p {
    font-size: 15px;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }
}

/* ------------------------------------------------------ */
/* 💻 SMALL LAPTOPS (900px–1200px) */
/* ------------------------------------------------------ */
@media (min-width: 900px) and (max-width: 1200px) {
  footer {
    padding: 20px 50px;
    gap: 40px;
  }

  .footer-left,
  .footer-middle {
    transform: scale(0.95); /* shrink slightly so it doesn’t look cramped */
  }

  .footer-center h3,
  .footer-right h3 {
    font-size: 23px;
  }

  p {
    font-size: 15px;
  }
}
