@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  --black-color: hsl(220, 57.3%, 37.6%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: 0.938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
/* Global */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3);
  z-index: var(--z-fixed);
}
.nav {
  height: var(--header-height);
}
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  font-weight: var(--font-semi-bold);
  font-size: 1rem;
}
.nav__logo i {
  font-weight: initial;
  /* font-size: 0.5rem; */
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__logo,
.nav__burger,
.nav__close {
  color: var(--white-color);
}
.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__close {
  opacity: 0;
}
/* nav__menu */
.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
  }
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color 0.3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}
/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: 0.25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.3s;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: 0.5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top 0.3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top 0.3s;
  }
}

/* Main */
.wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 100px;
}
/* Global */
.intro {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 15px;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
  word-break: break-word;
  hyphens: auto;
}
.intro li {
  margin-bottom: 10px;
  text-align: left;
  list-style-position: inside;
}

/* Home */
#home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  padding: 20px 20px;
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#home:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
#home img {
  max-width: 50%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#home img:hover {
  transform: scale(1.05);
}
.kolom {
  max-width: 600px;
}
.judul {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: bold;
  color: #364f6b;
  margin-bottom: 10px;
}
.sub-judul {
  font-size: clamp(0.5rem, 2vw, 2rem);
  color: #364f6b;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a.tbl-pink {
  background: #fc5185;
  border-radius: 30px;
  padding: 12px 25px;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
}
a.tbl-pink:hover {
  background: rgb(41, 185, 81);
  transform: scale(1.05);
  text-decoration: none;
}
/* Media Queries */
@media screen and (max-width: 1024px) {
  #home {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 15px;
  }
  #home img {
    max-width: 70%;
  }
  .kolom h2 {
    font-size: 2rem;
  }
  .kolom p,
  .kolom .deskripsi {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  #home img {
    max-width: 80%;
  }
  .kolom h2 {
    font-size: 1.8rem;
  }
  .kolom p,
  .kolom .deskripsi {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  #home img {
    max-width: 100%;
  }
  .kolom h2 {
    font-size: 1.6rem;
  }
  .kolom p,
  .kolom .deskripsi {
    font-size: 0.875rem;
  }
  a.tbl-pink {
    padding: 10px 20px;
  }
}
/* Tentang Kami */
#tentang-kami {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 30px;
  margin: 25px auto;
  padding: 20px 20px;
  justify-content: center;
  /* flex-wrap: wrap; */
  /* margin-bottom: 50px; */
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(222, 88, 88, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#tentang-kami:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
#tentang-kami .kolom {
  flex: 1;
  max-width: 50%;
}
#tentang-kami img {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#tentang-kami h2 {
  font-size: 2.5rem;
  color: #364f6b;
  margin-bottom: 20px;
}
#tentang-kami p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 15px;
  line-height: 1.6;
}
#tentang-kami .deskripsi {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fc5185;
  margin-bottom: 10px;
}
.link-underline {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fc5185;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fc5185;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.link-underline:hover {
  color: #29b951;
}
.link-underline:hover::after {
  transform: scaleX(1);
}
@media screen and (max-width: 768px) {
  #tentang-kami {
    flex-direction: column-reverse;
    text-align: center;
  }
  #tentang-kami .kolom,
  #tentang-kami img {
    max-width: 100%;
  }
  #tentang-kami h2 {
    font-size: 2rem;
  }
  #tentang-kami p {
    font-size: 1rem;
  }
}

/* Kegiatan */
#kegiatan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  padding: 20px;
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(222, 88, 88, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#kegiatan:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.foto-kegiatan img {
  /* flex: 1; */
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.foto-kegiatan img:hover {
  transform: scale(1.05);
}
.konten-kegiatan {
  max-width: 600px;
}
.konten-kegiatan h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #364f6b;
}
.konten-kegiatan p,
.konten-kegiatan li {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}
.konten-kegiatan li strong {
  color: #f58a07;
}
@media screen and (max-width: 768px) {
  /* Kegiatan */
  #kegiatan {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
  .konten-kegiatan h2 {
    text-align: center;
    font-size: 1rem;
  }
  .konten-kegiatan p,
  .konten-kegiatan li {
    font-size: 0.95rem;
  }
  .foto-kegiatan img:hover {
    transform: scale(1.05);
  }
}
/* About us */
.about-us {
  padding: 40px 20px;
  background-color: #fef8f5;
  border-radius: 15px;
  margin-bottom: 50px;
  gap: 30px;
}
h2.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  color: #f58a07;
  position: relative;
}
h2.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f58a07;
  margin: 10px auto 0;
  border-radius: 2px;
}
.desc {
  text-align: center;
  margin: 20px auto;
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 15px;
  line-height: 1.6;
}
.schools-list {
  list-style-type: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schools-list li {
  position: relative;
  background: #ffe4e1;
  margin: 5px 0;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.3s ease;
}
.schools-list li:hover {
  background: rgb(238, 147, 171);
  color: white;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgb(218, 136, 149);
  margin-top: 5px;
  padding: 0 15px;
  border-radius: 8px;
}
.schools-list li.active .accordion-content {
  max-height: 100px; /* Sesuaikan dengan tinggi konten */
}
/* Ikon Panah */
.arrow-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.schools-list li.active .arrow-icon {
  transform: translateY(-50%) rotate(180deg);
}

.visi-misi {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px auto;
  max-width: 800px;
}
.visi,
.misi {
  background: #f9f7ff;
  border: 2px solid #b6d7ff;
  border-radius: 12px;
  padding: 20px;
  /* flex: 1 1 calc(50% - 10px);  */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.visi h3,
.misi h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #f58a07;
}
.visi p,
.misi ul {
  font-size: 1rem;
  color: #555;
}
.misi ul {
  list-style: none;
  padding: 0;
}
.misi ul li {
  background: #fffae5;
  padding: 6px 10px;
  margin: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.teachers {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1px;
  overflow-x: auto;
  padding: 10px;
  margin: 0 auto;
}
.teacher {
  text-align: center;
  max-width: 150px;
  margin: 5px;
  background-color: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  flex: 1 1 100px;
}
.teacher:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.teacher img {
  width: 100%;
  height: auto;
  aspect-ration: 1/1;
  border-radius: 20%;
  border: 3px solid #f58a07;
  object-fit: contain;
  background-color: #fef8f5;
}
.teacher-name {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
}
@media screen and (max-width: 768px) {
  .visi,
  .misi {
    flex: 1 1 100%;
  }
  .teacher {
    max-width: 100px;
  }
  .teacher-name {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  h2.section-title {
    font-size: 1.4rem;
  }
  .schools-list li {
    font-size: 0.85rem;
  }
  .teacher img {
    width: 80px;
    height: 80px;
  }
  .teacher-name {
    font-size: 0.8rem;
  }
}

/* Keunggulan */
.keunggulan {
  padding: 20px;
  background-color: #fef8f5;
  text-align: center;
  border-radius: 15px;
}
.keunggulan h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #364f6b;
}
.keunggulan__title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #364f6b;
}
.keunggulan__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  overflow-x: auto;
  padding: 5px;
}
.keunggulan__item {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 200px;
  max-width: 80%;
  transition: transform 0.3s;
}
.keunggulan__item:hover {
  transform: translateY(-5px);
}
.keunggulan__item i {
  font-size: 2.5rem;
  color: #ff7f50;
  margin-bottom: 5px;
}
.keunggulan__item h3 {
  margin: 8px 0;
  font-size: 1.3rem;
  color: #364f6b;
}
.keunggulan__item p {
  font-size: 0.95rem;
  color: #6c757d;
}
@media screen and (max-width: 768px) {
  .keunggulan__list {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px;
    scroll-snap-type: x mandatory;
  }
  .keunggulan__item {
    flex: 0 0 auto;
    min-width: 80%;
    margin: 0 5px;
    scroll-snap-align: start;
  }
  .keunggulan__item i {
    font-size: 2rem;
  }
  .keunggulan__item h3 {
    font-size: 1.2rem;
  }
  .keunggulan__item p {
    font-size: 0.9rem;
  }
}
/* Program */
.program {
  padding: 40px 20px;
  background-color: #f4f6f8;
  text-align: center;
}
.program h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #364f6b;
}
.program p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #6c757d;
}
.program__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.program__item {
  flex: 1;
  min-width: 250px;
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.program__item i {
  font-size: 2rem;
  color: #fc5185;
  margin-bottom: 10px;
}
.program__item h3 {
  margin-bottom: 10px;
  color: #364f6b;
}
@media screen and (max-width: 768px) {
  .program__list {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .program__item {
    padding: 15px;
  }
}

/* Kelompok Belajar */
.kelompok-belajar {
  background-color: #f4f4f9;
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 20px auto;
  max-width: 900px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.kelompok-belajar h3 {
  font-size: 2rem;
  color: #364f6b;
  margin-bottom: 20px;
  font-weight: bold;
}
.kelompok-belajar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.kelompok-belajar ul li {
  background-color: #ffffff;
  padding: 20px 15px;
  border-radius: 10px;
  font-size: 1.2rem;
  color: #6c757d;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.kelompok-belajar ul li::before {
  content: "🌟";
  font-size: 1.5rem;
  color: #ff6f61;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .kelompok-belajar h3 {
    font-size: 1.8rem;
  }
  .kelompok-belajar ul li {
    font-size: 1rem;
    padding: 15px 10px;
  }
  .kelompok-belajar ul li::before {
    font-size: 1.2rem;
  }
}

/* Gallery */
.gallery {
  padding: 40px 20px;
  background-color: #f4f6f8;
  text-align: center;
}
.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #364f6b;
}
.gallery p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #6c757d;
}
/* Gallery Images */
.gallery__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  justify-items: center;
  align-items: center;
  margin: 20px auto;
  max-width: 1000px;
}
.images {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.images:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* Hidden Images */
.hidden {
  display: none;
}
/* Load More Button */
.load-more {
  margin: 20px auto;
  display: block;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.load-more:hover {
  background-color: #2c3e50;
}
/* Skeleton Loading */
.skeleton-loading {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 15px 0;
}
.skeleton-loading.hidden {
  display: none;
}
.skeleton-loading .dot {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}
.skeleton-loading .dot:nth-child(2) {
  animation-delay: 0.1s;
}
.skeleton-loading .dot:nth-child(3) {
  animation-delay: 0.2s;
}
@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .gallery__images {
    grid-template-columns: repeat(2, 1fr);
  }
  .images {
    max-width: 100%;
  }
  .load-more {
    width: 100%;
  }
}

/* Gallery tambun */
.gallery-more {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
  border-radius: 10px;
  margin-top: 30px;
}
.gallery-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #f58a07;
}
.gallery-desc {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #666;
}
.carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: 15px;
}
.carousel-track {
  display: flex;
  gap: 10px;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  /* flex-shrink: 0; */
  box-sizing: border-box;
}
.carousel-slide img {
  width: 85%;
  height: 80%;
  max-height: 350px;
  object-fit: contain;
  border-radius: 10px;
  margin: auto;
}
.carousel-slide p {
  margin-top: 8px;
  font-size: 1rem;
  color: #333;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}
.gallery-button-container {
  margin-top: 20px;
}
.gallery-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgb(15, 103, 192);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.gallery-button:hover {
  background-color: #e07a05;
}
@media (max-width: 768px) {
  .gallery-title {
    font-size: 1.5rem;
  }
  .carousel-btn {
    padding: 8px;
  }
  .carousel-slide p {
    font-size: 0.9rem;
  }
  .carousel-slide {
    min-width: 50%; /* Full lebar pada mobile */
  }
  .carousel-track {
    gap: 0; /* Hilangkan gap agar tidak terpotong */
  }
}

/* Pendaftaran */
.pendaftaran {
  background-color: #f9f9f9;
  border-radius: 8px;
}
.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}
.section-description {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}
.biaya-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.info-biaya {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
}
.info-biaya h3 {
  font-size: 1.5rem;
  color: #f58a07;
  margin-bottom: 10px;
}
.info-biaya p {
  font-size: 1rem;
  color: #444;
  margin: 5px 0;
}
.formulir {
  margin-left: 10px;
}
.biaya-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.biaya-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
}
.biaya-list li i {
  font-size: 1.5rem;
  color: #28a745;
  margin-right: 10px;
  min-width: 25px;
}
.form-pendaftaran {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
legend {
  font-size: 1.5rem;
  color: #f58a07;
  margin-bottom: 15px;
  font-weight: bold;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #444;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
}
.form-group input:focus {
  border-color: #f58a07;
  outline: none;
}

/* Graduation */
.graduation {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.graduation::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    transparent 70%
  );
  animation: pulse 5s infinite ease-in-out;
  z-index: 0;
}
.content {
  position: relative;
  z-index: 1;
}
.title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeIn 2s ease-out;
}
.subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #feca57;
  animation: fadeIn 2.5s ease-out;
}
.highlight {
  font-weight: 700;
  color: #ff9f43;
  text-shadow: 0 0 10px rgba(255, 159, 67, 0.8);
  animation: glow 3s infinite alternate;
}
.description {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 10px;
  color: #d1d1d1;
  animation: fadeIn 3s ease-out;
}

/* Contact */
#contact {
  padding: 50px 0;
  text-align: center;
}
#contact h2 {
  font-size: 2.5rem;
  color: #364f6b;
  margin-bottom: 20px;
  font-weight: 600;
}
#contact p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.maps-container {
  width: 100%;
  max-width: 600px;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
  flex: 1;
  margin-right: 30px;
}
.maps-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
iframe {
  width: 80%;
  height: 500px;
  filter: invert(100%);
}
.info-kontak {
  width: 100%;
  max-width: 500px;
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.info-kontak h3 {
  font-size: 1.5rem;
  color: #364f6b;
  margin-bottom: 15px;
}
.info-kontak ul {
  list-style-type: none;
  padding: 0;
}
.info-kontak li {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
}
.info-kontak li i {
  margin-right: 10px;
  color: #25d366;
}
.info-kontak .map {
  color: rgb(133, 9, 30);
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #364f6b;
  color: white;
  font-size: 0.9rem;
}
.footer a {
  color: rgb(200, 236, 52);
  text-decoration: none;
  font-weight: bold;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-socials {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  padding: 8px;
  border-radius: 8px;
  transition: transform 0.2s;
}
.footer-socials a:hover {
  transform: scale(1.05);
}
.footer-socials .facebook i {
  color: #1877f2;
}
.footer-socials .instagram i {
  color: #e1306c;
}
.footer-socials .tiktok i {
  color: #ee1d52;
}
.footer-socials .youtube i {
  color: #ff0000;
}
@media (max-width: 480px) {
  .footer-socials {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
  }
  .footer-socials a {
    justify-content: center;
  }
  .footer-socials i {
    font-size: 1.5rem;
  }
  .footer a,
  .footer p {
    font-size: 0.8rem;
  }
}
/* Media Queries untuk Responsiveness */
/* Tablet (ukuran layar 768px ke bawah) */
@media screen and (max-width: 768px) {
  .nav__logo {
    font-size: 1rem;
  }
  /* Pendaftaran */
  .pendaftaran .info-biaya ul {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .biaya-container {
    flex-direction: column;
    gap: 15px;
  }
  .info-biaya {
    text-align: center;
  }
  .info-biaya h3 {
    font-size: 1.2rem;
  }
  .info-biaya p {
    font-size: 0.9rem;
  }
  .biaya-list {
    margin-top: 10px;
  }
  .biaya-list li {
    justify-content: flex-start;
  }
  .biaya-list li i {
    font-size: 1.3rem;
    min-width: 30px;
  }
  .form-pendaftaran {
    padding: 15px;
  }
  legend {
    font-size: 1.3rem;
  }
  .title {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1.5rem;
  }
  .description {
    font-size: 1rem;
  }
  /* Contact */
  .contact-details {
    flex-direction: column;
    align-items: flex-start;
  }
  .maps-container {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .info-kontak li {
    text-align: justify;
  }
}

/* Ponsel (ukuran layar 480px ke bawah) */
@media screen and (max-width: 480px) {
  .nav__logo {
    font-size: 1rem;
  }
  /* Global */
  h2 {
    font-size: 1.5rem;
  }
  p {
    margin: 5px 0;
    padding: 5px 0;
  }
  section {
    padding: 30px 15px;
  }
  /* Pendaftaran */
  .pendaftaran .info-biaya ul {
    grid-template-columns: 1fr;
  }
  .section-description {
    font-size: 0.9rem;
  }
  .info-biaya h3 {
    font-size: 1rem;
  }
  .info-biaya p {
    font-size: 0.8rem;
  }
  .biaya-list li {
    font-size: 0.9rem;
  }
  .form-pendaftaran {
    padding: 10px;
  }
  legend {
    font-size: 1.1rem;
  }
  /* Graduation */
  .title {
    font-size: 1.8rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .description {
    font-size: 0.9rem;
  }
  /* Contact */
  .contact-details {
    flex-direction: column;
    align-items: flex-start;
  }
  .maps-container {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
  }
  .info-kontak li {
    width: 100%;
    text-align: justify;
  }
}
