@import url("https://fonts.googleapis.com/css2?family=Jersey+10:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  background-attachment: fixed;
  color: white;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100%;
}

/* #loader-overlay {
  position: fixed;
  z-index: 99999;
  background: #1a1a19;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader-logo {
  width: 250px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
} */

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: clamp(50px, 7vw, 60px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.logo {
  position: absolute;
  left: clamp(10px, 4vw, 30px);
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.logo img {
  width: clamp(35px, 8vw, 60px);
  height: auto;
  margin-left: clamp(10px, 4vw, 20px);
  z-index: 100;
}

.nav-links {
  display: flex;
  gap: clamp(15px, 6vw, 70px);
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: clamp(14px, 4vw, 22px);
  align-items: center;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 150%;
  background: #ffffff01;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px #00000033;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.5s ease-in;
}

.nav-links .dropdown-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
  animation: fadeInSlide 0.3s ease forwards;
}

.nav-links .dropdown-menu.hide {
  animation: fadeOutSlide 0.1s ease forwards;
}

.nav-links .dropdown-menu li {
  margin: 5px 0;
  line-height: 1.7;
}

.nav-links .dropdown-menu a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  font-size: clamp(14px, 4vw, 20px);
}

.nav-links .dropdown.active .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-toggle i {
  font-size: clamp(10px, 3vw, 15px);
}

.secondary-nav {
  display: none;
}

#music-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 9999;
  animation: none;
}

#music-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

#music-button ion-icon {
  font-size: 35px;
  color: #ffffff;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .navbar {
    display: none;
  }

  #music-button {
    width: 65px;
    height: 65px;
    right: calc(45% - 190px);
    margin-bottom: 0px;
    bottom: clamp(90px, 22vw, 100px);
    z-index: 1001;
  }

  #music-button ion-icon {
    font-size: clamp(20px, 5vw, 24px);
  }

  nav.main-nav,
  .navbar {
    display: none;
  }

  .secondary-nav {
    display: flex;
    position: fixed;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: clamp(250px, 90vw, 450px);
    height: 70px;
    background: #fff;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .secondary-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-top: 5px;
  }

  .secondary-nav ul li {
    list-style: none;
    flex: 1;
    text-align: center;
  }

  .secondary-nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
    text-decoration: none;
  }

  .secondary-nav ul li a ion-icon {
    font-size: clamp(20px, 7vw, 35px);
    margin: 0 auto;
    transition: 0.3s;
    color: #000;
  }

  .secondary-nav ul li.active a ion-icon {
    font-size: clamp(25px, 8vw, 40px);
    color: #1dcd9f;
  }
}

@media screen and (max-width: 450px) {
  #music-button {
    position: fixed;
    width: 65px;
    height: 65px;
    right: 20px;
    margin-bottom: 8px;
    bottom: clamp(90px, 24vw, 150px);
  }

  #music-button ion-icon {
    font-size: clamp(20px, 5vw, 24px);
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 0 clamp(20px, 6vw, 60px);
  position: relative;
  color: white;
  overflow: hidden;
  filter: grayscale(1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero * {
  position: relative;
  z-index: 2;
}

.hero span {
  font-size: 36px;
  letter-spacing: 3px;
  margin: 0;
  font-weight: 500;
  padding-bottom: 2px;
  text-shadow: 0 0 5px #ffffff;
}

.hero h1 {
  font-size: 86px;
  letter-spacing: 8px;
  font-weight: 900;
  margin: 0;
  text-shadow: 0 0 5px #ffffff;
}

.hero h1 sup {
  font-size: 36px;
  vertical-align: text-top;
  line-height: 1.5;
}

@media screen and (max-width: 1068px) {
  .hero span {
    font-size: 27px;
  }

  .hero h1 {
    font-size: 68px;
  }
}

@media screen and (max-width: 768px) {
  .hero span {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 52px;
  }
}

/*About*/
.about {
  background-color: #1e1e1e;
  color: white;
  padding: 20px 0 80px;
  text-align: center;
}

.about h1 {
  font-size: 76px;
  margin-bottom: clamp(40px, 10vw, 50px);
}

.about-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  padding: 0 20px;
  text-align: left;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.about-text p {
  font-size: 24px;
  line-height: 1,5;
}

.about-img {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-img img {
  width: 100%;
  height: auto;
  filter: grayscale(1);
}

@media screen and (max-width: 1125px) {
  #about {
    height: auto;
    padding: 20px 0 80px;
  }

  .about-text {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .about p {
    margin: 0 auto;
    width: auto;
    text-align: left;
    justify-items: center;
    font-size: 24px;
    justify-content: center;
  }

  .about-img {
    justify-content: center;
    align-items: center;
  }

  .about-img img {
    width: 70%;
    height: auto;
  }
}

@media screen and (max-width: 1068px) {
  #about {
    flex-direction: column;
    align-items: center;
  }

  .about h1 {
    font-size: 68px;
  }

  .about p {
    font-size: 24px;
  }

  .about-img img {
    width: 85%;
    height: auto;
  }
}

@media screen and (max-width: 960px) {
  .about p {
    font-size: 22px;
  }
}

@media screen and (max-width: 850px) {
  .about p {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  #about {
    flex-direction: column;
    align-items: center;
  }

  .about h1 {
    font-size: 52px;
  }

  .about p {
    margin: 0 auto;
    width: 80%;
    text-align: left;
    justify-items: center;
    font-size: 19px;
    justify-content: center;
  }

  .about-img img {
    width: 80%;
    height: auto;
  }
}

/*Filosofi*/
#filosofi {
  height: auto;
}
.filosofi-logo {
  text-align: center;
  color: white;
  padding: clamp(10px, 2vw, 30px) clamp(15px, 4vw, 30px) clamp(30px, 5vw, 50px);
  background-color: #222227;
}

.filosofi-logo h1 {
  font-size: 76px;
  margin-bottom: clamp(20px, 5vw, 40px);
}

.filosofi-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 50px);
  flex-wrap: wrap;
  margin-left: -100px;
}

.filosofi-pair .chevron {
  flex: 0 0 clamp(80px, 25vw, 180px);
  display: flex;
  justify-content: center;
}

.filosofi-pair .chevron img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.filosofi-pair .text-box {
  flex: 1;
  font-size: 28px;
  max-width: clamp(200px, 50vw, 500px);
  line-height: clamp(1.3, 2vw, 1.5);
  text-align: left;
  margin-top: 0;
}

.summary {
  margin-top: 80px;
  font-size: 28px;
  line-height: clamp(1.3, 2vw, 1.5);
  max-width: min(80%, 700px);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width: 1068px) {
  .filosofi-logo h1 {
    font-size: 68px;
  }

  .filosofi-pair .text-box {
    font-size: 24px;
  }

  .summary {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  #filosofi {
    height: auto;
    padding: 10px 0 80px;
  }

  .filosofi-logo h1 {
    font-size: 53px;
  }

  .filosofi-pair {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-left: -50px;
  }

  .filosofi-pair .chevron {
    flex: 0 0 clamp(100px, 30vw, 150px);
  }

  .filosofi-pair .text-box {
    flex: 1;
    font-size: 19px;
  }

  .summary {
    font-size: 19px;
  }
}

@media screen and (max-width: 700px) {
  .filosofi-pair {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    height: auto;
    padding: 10px 0 20px;
  }
}

/*Our Team*/
#member {
  padding: 30px 0 60px;
  height: auto;
  background-color: #222222;
}

#member h1 {
  font-size: 76px;
  text-align: center;
  margin: 20px 0;
  margin-bottom: 40px;
  color: #ffffff;
}

#member h5 {
  font-size: 56px;
  font-weight: 400;
  text-align: center;
  margin: 20px 0;
  margin-bottom: 0px;
  margin-top: 30px;
  color: #ffffff;
}

.card-1-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px;
  gap: 25px;
  margin: 0 auto;
}

.card-1 {
  list-style: none;
  background: #ffffff;
  border-bottom: 5px solid #169976;
  margin: 15px;
  padding: 5px;
  width: clamp(180px, 20%, 196px);
  height: 50%;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.5s;
  flex-direction: column;
  justify-content: space-between;
}

.card-1 span {
  margin: 5px;
}

.card-1:hover {
  transform: translateY(-5px);
  filter: brightness(90%);
}

.card-1 img {
  border-radius: 0px;
  width: 100%;
  height: calc(100% * (4 / 3));
  display: block;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 6px;
}

.card-1 span {
  font-size: 36px;
  display: block;
  margin-top: 10px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #000000;
  text-align: center;
}

hr {
  margin-top: 40px;
  width: 95%;
  color: #fff;
  border: none;
  border-top: 1px solid #555;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  gap: 0px;
  margin: 0 auto;
}

.card {
  list-style: none;
  background: #ffffff;
  border-bottom: 5px solid #169976;
  margin: 16px;
  padding: 8px;
  width: clamp(180px, 20%, 196px);
  height: 50%;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.5s;
  flex-direction: column;
  justify-content: space-between;
}

.card span,
.samping p {
  margin: 5px;
}

.card:hover {
  transform: translateY(-5px);
}

.spotify-code {
  width: clamp(60%, 20vw, 90%);
  height: auto;
  margin: 10px auto 0;
  display: block;
  transition: all 0.5s;
  border-radius: 10px;
}

.card img {
  border-radius: 0px;
  width: 100%;
  height: calc(100% * (4 / 3));
  display: block;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 6px;
}

.card span {
  font-size: 36px;
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #000000;
  text-align: center;
}

.samping {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  overflow: hidden;
  align-items: center;
  gap: 10px;
  width: fit-content;
  gap: 8px;
  margin: 0 auto;
}

.samping p {
  font-size: 18px;
  color: #555555;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

ion-icon {
  font-size: clamp(0.7rem, 2vw, 1.1rem);
  color: #555555;
  flex-shrink: 0;
}

@media screen and (max-width: 1068px) {
  #member h1 {
    font-size: 68px;
  }

  #member h5 {
    font-size: 48px;
  }

  .card-1 span {
    font-size: 38px;
  }

  .card span {
    font-size: 38px;
  }

  .samping {
    gap: 15px;
    margin: 0 auto;
  }

  .samping p {
    font-size: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .card,
  .card-1 {
    width: 25%;
    padding: 8px;
  }

  .spotify-code {
    width: 95%;
  }

  ion-icon {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    flex-shrink: 0;
  }
}

@media screen and (max-width: 900px) {
  .samping {
    gap: 5px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #member h1 {
    font-size: 52px;
  }

  #member h5 {
    font-size: 32px;
  }

  .card,
  .card-1 {
    width: 30%;
  }

  .spotify-code {
    width: 95%;
  }

  .card-1 span {
    font-size: 28px;
  }

  .card span {
    font-size: 28px;
  }

  .samping {
    gap: 15px;
    margin: 0 auto;
  }

  .samping p {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  ion-icon {
    font-size: clamp(1rem, 2vw, 1.3rem);
    flex-shrink: 0;
  }
}

@media screen and (max-width: 650px) {
  .card,
  .card-1 {
    width: 34%;
  }

  .spotify-code {
    width: 95%;
  }

  .samping {
    gap: 10px;
    margin: 0 auto;
  }

  .samping p {
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  ion-icon {
    font-size: clamp(1rem, 2vw, 1.3rem);
    flex-shrink: 0;
  }
}

@media screen and (max-width: 600px) {
  .card,
  .card-1 {
    width: 36%;
  }

  .spotify-code {
    width: 95%;
  }

  .samping {
    gap: 5px;
    margin: 0 auto;
  }

  .samping p {
    font-size: 15px;
    overflow: hidden;
    margin-left: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  ion-icon {
    font-size: clamp(1rem, 2vw, 1.3rem);
    flex-shrink: 0;
  }
}

@media screen and (max-width: 550px) {
  .samping {
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .card,
  .card-1 {
    width: 40%;
  }

  .spotify-code {
    width: 95%;
  }

  .samping {
    width: fit-content;
    margin: 0 auto;
  }

  .samping p {
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  ion-icon {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    flex-shrink: 0;
  }
}

@media screen and (max-width: 450px) {
  .samping {
    width: fit-content;
    margin: 0 auto;
  }

  .samping p {
    margin-left: 0px;
  }
}
@media screen and (max-width: 400px) {
  .card,
  .card-1 {
    width: 35%;
  }

  .spotify-code {
    width: 95%;
  }

  .card-1 span {
    font-size: 24px;
  }

  .card span {
    font-size: 24px;
  }

  .samping {
    width: fit-content;
    margin: 0 auto;
  }

  .samping p {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: 0px;
  }

  ion-icon {
    font-size: clamp(0.7rem, 2vw, 1.3rem);
    flex-shrink: 0;
  }
}

@media screen and (max-width: 350px) {
  .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5px;
    gap: 5px;
    margin: 0 auto;
  }

  .card,
  .card-1 {
    width: 35%;
  }

  .spotify-code {
    width: 95%;
  }

  .samping {
    width: fit-content;
    margin: 0 auto;
  }

  .samping p {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: 0px;
  }

  ion-icon {
    font-size: clamp(0.7rem, 2vw, 1.3rem);
    flex-shrink: 0;
  }
}

@media screen and (max-width: 300px) {
  .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5px;
    gap: 5px;
    margin: 0 auto;
  }

  .card,
  .card-1 {
    width: 35%;
  }

  .spotify-code {
    width: 95%;
  }

  .samping {
    width: fit-content;
    margin: 0 auto;
  }

  .samping p {
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  ion-icon {
    font-size: clamp(0.5rem, 2vw, 1.3rem);
    flex-shrink: 0;
  }
}

/*Picket*/
#picket {
  height: auto;
  padding: clamp(10px, 2vw, 30px) 0 clamp(40px, 8vw, 100px);
  background-color: #202020;
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: clamp(20px, 5vw, 30px);
  justify-content: center;
  align-items: center;
}

.card-picket {
  background: #ffffff;
  border-bottom: 5px solid #4635b1;
  border-radius: 10px;
  width: clamp(200px, 30vw, 192px);
  height: auto;
  transition: 0.5s;
  padding: 20px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.card-picket:hover {
  transform: translateY(-5px);
}

#picket h1 {
  font-size: 76px;
  text-align: center;
  color: #ffffff;
  margin-bottom: clamp(20px, 8vw, 30px);
}

.card-picket h2,
.card-picket ul {
  margin: 0;
  width: 100%;
}

.card-picket h2 {
  text-align: center;
  color: #000000;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: clamp(6px, 2vw, 8px);
  margin-bottom: clamp(8px, 3vw, 12px);
  font-weight: 600;
  font-size: clamp(24px, 6vw, 32px);
}

.card-picket ul {
  list-style: none;
  padding: 10px;
  margin: 0;
}

.card-picket ul li {
  font-size: clamp(16px, 4vw, 19px);
  justify-content: center;
  text-align: center;
  margin-top: 0;
  padding: clamp(3px, 1.5vw, 6px) 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  line-height: 1.5;
}

@media screen and (max-width: 1068px) {
  #picket h1 {
    font-size: 68px;
  }
}

@media screen and (max-width: 768px) {
  #picket h1 {
    font-size: 52px;
  }

  .grid-container {
    flex-direction: column;
    align-items: center;
  }

  .card-picket {
    width: 64%;
    max-width: 400px;
    height: auto;
  }
}

/*Subject*/
#subject {
  padding: clamp(10px, 2vw, 30px) 0 clamp(40px, 8vw, 80px);
  height: auto;
  background-color: #222222;
}

#subject h1 {
  font-size: 76px;
  text-align: center;
  margin-top: clamp(20px, 6vw, 40px);
  margin-bottom: clamp(20px, 8vw, 30px);
  color: #ffffff;
}

#subject h5 {
  font-size: 56px;
  font-weight: 400;
  text-align: center;
  margin: 20px 0;
  margin-bottom: 24px;
  color: #ffffff;
}

.subject-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: clamp(20px, 5vw, 32px);
  justify-content: center;
  align-items: stretch;
}

.subject {
  background: #ffffff;
  border-bottom: 5px solid #ff4f0f;
  border-radius: 10px;
  width: clamp(200px, 30vw, 192px);
  height: auto;
  transition: 0.5s;
  padding: 20px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.subject:hover {
  transform: translateY(-5px);
}

.subject h2,
.subject ul {
  margin: 0;
  width: 100%;
}

.subject h2 {
  color: #000000;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: clamp(6px, 2vw, 8px);
  margin-bottom: clamp(8px, 3vw, 12px);
  font-weight: 600;
  font-size: clamp(24px, 6vw, 32px);
  min-height: 3.5rem;
  flex-shrink: 0;
}

.subject ul {
  list-style: none;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(8px, 2vw, 16px);
  padding: 10px;
}

.subject ul li {
  margin-top: 0;
  padding: clamp(3px, 1.5vw, 6px) 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  font-size: clamp(16px, 4vw, 18px);
  justify-content: center;
  text-align: center;
  line-height: 1.5;
}

.subject.selasa ul li {
  font-size: clamp(16px, 4vw, 20px);
  line-height: 1.4;
}

@media screen and (max-width: 1068px) {
  #subject h1 {
    font-size: 68px;
  }
}

@media screen and (max-width: 1068px) {
  #subject h5 {
    font-size: 48px;
  }
}

@media screen and (max-width: 768px) {
  #subject h1 {
    font-size: 52px;
  }

  #subject h5 {
    font-size: 32px;
  }

  .subject {
    width: 64%;
    max-width: 400px;
    height: auto;
  }
}

/*Data*/
.data {
  background: #222322;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(40px, 8vw, 80px) 0 clamp(40px, 8vw, 80px);
  height: auto;
}

.data .container {
  padding: 20px 0;
}

.data-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.data-card {
  background: white;
  padding: 10px;
  width: clamp(170px, 20vw, 192px);
  height: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.5s;
  border-bottom: 5px solid #074799;
  justify-content: space-between;
}

.data-card:hover {
  transform: translateY(-5px);
}

.data-card ion-icon {
  font-size: 50px;
  color: #000000;
  margin: 20px 40px 40px 40px;
}

.data-card h3 {
  color: #000000;
  font-size: clamp(24px, 6vw, 30px);
  margin-bottom: 20px;
}

.data-card p {
  color: #555;
  font-size: clamp(16px, 4vw, 18px);
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .data-items {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

/*Gallery*/
#gallery {
  padding: 5px 0 80px;
  background: #1e1e1e;
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif;
}

#gallery h1 {
  font-size: 76px;
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif
}

.swiper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;

  /* Swiper Navigation Variables */
  --swiper-navigation-size: clamp(24px, 4vw, 40px);
  --swiper-navigation-color: #ffffff !important;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 0px;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.photo-item img {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  object-fit: cover;
  transition: all 0.5s;
  z-index: 11;
}

.swiper-pagination-bullet {
  background-color: #ffffff !important;
  opacity: 0.6;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background-color: #ffffff !important;
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  width: clamp(40px, 10vw, 70px);
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: bold;
  color: var(--swiper-navigation-color);
}

.swiper-slide {
  opacity: 0.6;
  transform: scale(0.9);
  transition: all 0.5s;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

@media screen and (max-width: 1068px) {
  #gallery {
    padding: 40px 0 80px;
    background: #1c1c1c;
    text-align: center;
    font-family: "Poppins", sans-serif;
  }

  #gallery h1 {
    font-size: 68px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    margin: 0 -130px;
  }
}

@media screen and (max-width: 768px) {
  #gallery h1 {
    font-size: 52px;
  }

  #gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 0 0 80px;
    background: #1c1c1c;
    text-align: center;
    font-family: "Poppins", sans-serif;
  }

  .swiper {
    width: 100%;
  }

  .photo-item img {
    width: 70%;
    max-width: 500px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    margin: 0 -150px;
  }

  .swiper-button-prev {
    left: 0;
  }

  .swiper-button-next {
    right: 0;
  }
}

/*News Section*/
#news {
  background: #222322;
  text-align: center;
  padding: 5px 0 80px;
  height: auto;
  font-family: "Bricolage Grotesque";
}

#news h1 {
  font-size: 76px;
  color: #ffffff;
  font-family: "Bricolage Grotesque", sans-serif
}

.news-card {
  left: 0;
  background: white;
  width: 100%;
  width: 256px;
  margin: 0 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.5s;
  border-bottom: 5px solid #074799;
  height: auto;
  box-sizing: border-box;
  padding: 8px;
}

.news-card:hover {
  filter: saturate(0);
}

.swiper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.news-swiper-slide {
  opacity: 0.6;
  transform: scale(0.9);
  transition: all 0.5s;
}
.newsSwiper .swiper-slide {
  transition-timing-function: linear !important;
}

.news-swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-card img {
  display: block;
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
}

.card-body {
  display: flex;
  flex-direction: column;
  height: auto;
  padding-bottom: 16px;
}

.news-card h3 {
  color: #000000;
  font-size: 21px;
  margin-bottom: 0;
  margin-top: 10px;
  text-align: left;
  font-weight: bold;
  max-height: 120px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.news-card span {
  color: #555;
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: auto;
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-align: left !important;
}

@media screen and (max-width: 1068px) {
  #news {
    padding: 40px 0 80px;
    background: #1c1c1c;
    text-align: center;
  }

  #news h1 {
    font-size: 68px;
  }
}

@media screen and (max-width: 768px) {
  #news h1 {
    font-size: 52px;
  }

  #news {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 0 0 80px;
    background: #1c1c1c;
    text-align: center;
  }

  .card-body {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .news-card h3 {
    color: #000000;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 8px;
  }

  .news-card span {
    color: #555;
    font-size: 12px;
    margin-top: 16px;
    margin-bottom: auto;
    word-break: break-word;
  }

  .news-card {
    left: 0;
    background: white;
    width: 130%;
    max-width: 250px;
    margin: 0 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.5s;
    border-bottom: 5px solid #074799;
    height: auto;
    box-sizing: border-box;
  }

  .swiper {
    width: 100%;
    height: 100%;
  }

  .news-card img {
    width: 100%;
    max-width: 500px;
  }
}

/*Chat Box*/
#chat-box {
  padding: 40px 0 80px;
  background: #1c1c1c;
  text-align: center;
  backdrop-filter: blur(8px);
  text-align: center;
  margin: 0 auto;
}

#chat-box h1 {
  font-size: 76px;
  margin-top: 0;
  margin-bottom: 16px;
}

#messages {
  font-family: "Bricolage Grotesque", sans-serif;
  text-align: left;
  width: 64%;
  height: 400px;
  overflow-y: auto;
  background: #ffffff14;
  padding-left: 24px;
  padding-top: 12px;
  margin-bottom: 8px;
  font-size: 24px;
  margin: 0 auto;
}

#chat-input {
  margin-top: 16px;
  font-family: "Bricolage Grotesque", sans-serif;
  width: 63%;
  height: 48px;
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

button {
  font-family: "Bricolage Grotesque", sans-serif;
  height: 48px;
  padding: 0px 36px;
  color: #ffffff;
  background: #169976;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  margin-left: 4px;
  margin-top: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

button:hover {
  background: #1dcd9f;
}

#chat-box {
  padding: 40px 0 80px;
  background: #1c1c1c;
  text-align: center;
}

#chat-box > *:not(h1) {
  width: 72%;
  margin: 0 auto;
}

.input-button {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

#chat-input {
  flex: 1;
  height: 48px;
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

#messages div {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  align-items: center;
  margin-top: auto;
  margin-bottom: 12px;
  padding-left: 0;
  text-indent: 0;
  word-break: break-word;
}

@media screen and (max-width: 1068px) {
  #chat-box h1 {
    font-size: 68px;
  }

  #messages {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  #chat-box {
    height: auto;
    padding: 40px 0 80px;
    background: #1e1e28;
    text-align: center;
    backdrop-filter: blur(8px);
    text-align: center;
    margin: 0 auto;
  }

  #chat-box h1 {
    font-size: 52px;
  }

  #messages {
    font-size: 19px;
    padding-left: 12px;
  padding-top: 12px;
  }

  #chat-input {
    font-family: "Bricolage Grotesque", sans-serif;
    width: 50%;
    padding: 10px;
    border: none;
    border-radius: 6px;
  }

  #messages div {
    margin-top: 15px;
    margin-bottom: 8px;
    padding-left: 0px;
    text-indent: 0;
  }
}

@media screen and (max-width: 500px) {
  #chat-input {
    font-family: "Bricolage Grotesque", sans-serif;
    width: 45%;
    padding: 10px;
    border: none;
    border-radius: 6px;
  }

  #messages div {
    margin-top: 15px;
    margin-bottom: 8px;
    padding-left: 0px;
    text-indent: 0;
  }
}

@media screen and (max-width: 400px) {
  #messages {
    font-size: 13px;
  }

  #chat-input {
    font-family: "Bricolage Grotesque", sans-serif;
    width: 45%;
    padding: 10px;
    border: none;
    border-radius: 6px;
  }
}

/*Footer*/
.footer-section {
  background-color: #222831;
  color: #d9d9d9;
  padding: 20px;
  border-top: 2px solid #169976;
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
}

.footer-about,
.footer-social {
  max-width: 450px;
  flex-grow: 1;
  margin-bottom: 0px;
}

.footer-section h2,
.footer-section h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-section h2 {
  font-size: 48px;
  font-weight: 900;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: 600;
}

.footer-section p {
  font-size: 24px;
  margin-top: 10px;
  color: #ffffff;
  text-align: center;
}

.footer-section a {
  color: #169976;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.footer-about a:hover {
  color: #1dcd9f;
  text-decoration: underline;
}

.footer-social a ion-icon {
  font-size: 50px;
  color: #eee;
  transition: all 0.5s;
  margin: 0 15px;
  margin-top: 20px;
}

.footer-social a ion-icon:hover {
  color: #1dcd9f;
  text-decoration: none !important;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  color: #b0a6c1;
  margin-top: 20px;
  font-size: 18px;
  justify-content: center;
  bottom: 0;
}

@media screen and (max-width: 1068px) {
  .footer-section h2 {
    font-size: 42px;
  }

  .footer-section p {
    font-size: 24px;
    text-align: left;
  }

  .footer-social a ion-icon {
    font-size: 48px;
  }

  .footer-copyright {
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .footer-section {
    padding: 20px;
    text-align: center;
  }

  .footer-about,
  .footer-social {
    max-width: 400px;
    flex-grow: 1;
    margin-bottom: 0px;
  }

  .footer-section p {
    margin-top: 20px;
    text-align: left;
  }

  .footer-social ion-icon {
    margin-top: 20px;
    color: #cccccc;
    transition: all 0.5s;
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .footer-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .footer-section p {
    font-size: 19px;
    text-align: center;
  }

  .footer-section {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .footer-social a ion-icon {
    font-size: 32px;
    margin-top: 24px;
    margin: 0 10px;
  }

  .footer-copyright {
    margin-bottom: 100px;
    font-size: 9px;
  }
}
