@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body {
  scroll-padding-top: 80px;
  background-color: #0b0b45;
  font-family: 'Poppins', sans-serif;
}


.bg-custom {
background-color: rgba(20, 20, 22, 0.5); 
backdrop-filter: blur(10px); 
-webkit-backdrop-filter: blur(10px); 
}
.navbar-brand img {
width: 120px;
}
#navbar {
    transition: top 0.3s ease-in-out; /* Efek transisi */
    background-color: #0b0b45;
  }  
.home-pages {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: left;
    position: absolute;
    z-index: 1;
    margin-left: 6rem;
    margin-top: -5px;
    margin-left: 150px;
}
.home-pages h1 {
    font-size: 4.5rem;
    font-weight: bold;
    text-shadow: 8px 8px 18px rgba(0, 0, 0, 1);
    background-color: rgba(20, 20, 22, 0.05); 
    backdrop-filter: blur(1px); 
    -webkit-backdrop-filter: blur(1px);
    border-radius: 9px;
}
.home-pages h2 {
    font-size: 2rem;
    text-shadow: 8px 8px 10px rgba(0, 0, 0, 1);
    background-color: rgba(20, 20, 22, 0.05); 
    backdrop-filter: blur(1px); 
    -webkit-backdrop-filter: blur(1px);
    border-radius: 9px;
}
.home-pages p {
    font-size: 1rem;
    text-shadow: 8px 8px 10px rgba(0, 0, 0, 1);
    background-color: rgba(20, 20, 22, 0.05); 
    backdrop-filter: blur(2px); 
    -webkit-backdrop-filter: blur(2px);
    border-radius: 5px;
}
.btn-transparant {
    background-color: rgba(0, 0, 0, 0.8); 
    backdrop-filter: blur(50px); 
    -webkit-backdrop-filter: blur(20px);
    font-weight: bold;
    font-size: 2rem;
}
.btn-transparant svg {
    margin-top: -3px;
    margin-right: 5px;
    width: 20px;
    height: 20px;
}


.carousel-caption {
    position: relative;
}


/* Jadwal Pages */
/* Container utama */
.jadwal-pages {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #0b0b45; /* Warna latar belakang */
    min-height: 50vh; /* Memastikan tabel berada di tengah */
  }
  .jadwal-pages h2 {
    color: white;
    font-weight: bold;
    font-size: 3rem;
  }
  
  /* Tabel */
  .jadwal-table {
    width: 50%; /* Lebar tabel */
    border-collapse: collapse; /* Hilangkan jarak antar sel */
    background: rgba(0, 0, 0, 0.5); /* Warna tabel dengan transparansi */
    backdrop-filter: blur(10px); /* Efek blur */
    -webkit-backdrop-filter: blur(10px); /* Efek blur untuk browser berbasis WebKit */
    color: white; /* Warna teks */
    border-radius: 10px; /* Sudut melengkung */
    overflow: hidden; /* Agar sudut tabel tidak keluar */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Efek bayangan */
  }
  
  /* Header tabel */
  .jadwal-table thead th {
    padding: 10px 15px;
    background: #02022c; /* Warna header lebih pekat */
    text-align: left; /* Teks rata kiri */
    font-size: 1rem;
    font-weight: bold;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  /* Isi tabel */
  .jadwal-table tbody td {
    padding: 10px 15px;
    text-align: left; /* Teks rata kiri */
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Garis bawah */
  }
  
  /* Baris bergantian warna */
  .jadwal-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.1); /* Warna baris genap */
  }
  
  /* Efek hover */
  .jadwal-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.2); /* Warna saat di-hover */
    transition: background 0.3s ease;
  }
  

  /* FAQ */
  .faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    height: 60vh;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
  }

  .faq h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: bold;
  }

  .faq-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  details summary {
    font-weight: bold;
    cursor: pointer;
    font-size: 1.5rem;
    border-bottom: 2px solid #02022c;
    padding-bottom: 2px;
    margin-bottom: 2px;
  }

  details p {
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
  }

  /* Animasi efek pembukaan untuk konten dalam <details> */
  details[open] p {
    animation: slide-down 0.5s ease-out;
  }

  @keyframes slide-down {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Mengubah warna saat summary dihover */
  details summary:hover {
    color: #0b0b45;
  }

  /* Maps */
  .maps-pages {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0b0b45;
    height: 90vh;
  }
  .maps-pages h2 {
    color: white;
    font-size: 3rem;
    font-weight: bold;
  }
  .maps-item {
    display: flex;
    flex-direction: column;
  }
  .maps-item iframe {
    margin-bottom: 8px;
    border-radius: 25px;
  }


  /* Kontak */
  .contact {
    width: 100vw;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  
  .contact h2 {
    color: black;
    font-size: 3rem;
    font-weight: bold;
    align-items: center;
    margin-bottom: 2rem;
  }

  .contact-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
  }

  .contact-item img {
    width: 300px;
    border-radius: 20px;
  }

  .image-link {
    position: relative;
    display: inline-block;
  }
  
  .image-link img {
    width: 20rem;
    height: auto;
    border-radius: 20px;
    transition: all 0.2s ease;
  }
  
  /* Hover Icon Styling */
  .image-link .hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: opacity 0.3s ease;
  }
  
  .image-link:hover .hover-icon {
    opacity: 1;
  }
  
  .image-link:hover img {
    filter: grayscale(20%);
  }

  .contact-item table {
    border-collapse: collapse;
    width: 100%;
    height: 100%;
  }

  .contact-item th, td {
    /* border: 1px solid black; */
    text-align: left;
    padding: 30px;
    font-size: 1.4rem;
    font-weight: bold;
  }

  .contact-item a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
  }
  .contact-item a:hover {
    text-decoration: underline;
    color: blue;
  }


  .contact-item th {
    background-color: #0b0b45;
    color: white;
  }

  .sosmed svg {
    width: 30px;
    margin: 5px;
    text-decoration: none;
    color: black;
  }
  .sosmed svg:hover {
    color: blue;
  }

  .footer {
    width: 100vw;
    display: flex;
    flex-direction: column;
  }

  .footer-item {
    height: 43vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    background-color: black;
    color: white;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    width: 20vw;
    align-items: left;
    margin-top: 10px;
  }
  .footer-logo img {
    width: 200px;
    margin-left: 30px;
  }
  .footer-logo h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 20px;
    margin-left: 30px;
  }
  .footer-logo a {
    text-decoration: none;
    color: white;
  }
  .footer-logo a:hover {
    color: green;
  }
  .footer-logo svg {
    color: white;
    margin-left: 30px;
  }
  .footer-logo svg:hover {
    color: green;
  }

  .footer-container {
    display: flex;
    flex-direction: row;
  }

  .footer-detail {
    width: 35vw;
    margin-top: 50px;
    margin-bottom: 10px;
    
  }
  .footer-detail h2 {
    font-size: 1.7rem;
    font-weight: bold;
  }
  .footer-detail p {
    margin-top: 5px;
    margin-bottom: 5px;
    max-width: 400px;
  }
  
  .footer-detail-2 {
    width: 20vw;
    display: flex;
    flex-direction: column;
    /* align-items: end; */
    margin-right: 20px;
    margin-top: 80px;
  }
  .footer-detail-2 a {
    font-size: 1rem;
    text-decoration: none;
    color: white;
    /* font-weight: bold; */
  }
  .footer-detail-2 a:hover {
    text-decoration: none;
    border-bottom: 1px solid #ffffff75;
    transition: border-bottom 0.3s ease-in;
    font-weight: bold;
  }
  
  .footer-detail-3 {
    width: 20vw;
    display: flex;
    flex-direction: column;
    /* align-items: end; */
    margin-right: 20px;
    margin-top: 50px;
  }
  .footer-detail-3 h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
  }
  .footer-detail-3 a {
    font-size: 1rem;
    text-decoration: none;
    color: white;
    /* font-weight: bold; */
  }
  .footer-detail-3 a:hover {
    text-decoration: none;
    border-bottom: 1px solid #ffffff75;
    transition: border-bottom 0.3s ease-in;
    /* font-weight: bold; */
  }

  .copyright {
    background-color: black;
    width: 100vw;
    height: 15vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
  }
  .copyright p {
    margin-top: 2px;
    margin-bottom: 2px;
  }

  .up-pages {
    color: white;
    position: relative;
    z-index: 4;
    margin-top: 50px;
    right: 40px;
  }
  .up-pages svg:hover {
    color: green;
  }
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }

  

/* For Mobile */
@media (max-width: 768px) {
  /* * {
    outline: 1px solid red !important;
  } */
  
.carousel {
padding-top: 75px;
}
.navbar-brand img {
width: 100px;
}
.desktop {
  display: none;
}
.mobile {
  display: block;
}

.home-pages {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-top: -6rem;
  text-align: center;
}
.home-pages h1 {
  font-size: 2rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    background-color: rgba(20, 20, 22, 0.05); 
    backdrop-filter: blur(1px); 
    -webkit-backdrop-filter: blur(1px);
    border-radius: 9px;
}
.home-pages h2 {
  font-size: 1rem;
  text-shadow: 8px 8px 18px rgba(0, 0, 0, 0.5);
    background-color: rgba(20, 20, 22, 0.05); 
    backdrop-filter: blur(1px); 
    -webkit-backdrop-filter: blur(1px);
    border-radius: 9px;
}
.home-pages p {
  font-size: 0.7rem;
  text-shadow: 8px 8px 18px rgba(0, 0, 0, 0.5);
    background-color: rgba(20, 20, 22, 0.05); 
    backdrop-filter: blur(1px); 
    -webkit-backdrop-filter: blur(1px);
    border-radius: 9px;
}

/* Button Mobile */
.home-button {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  gap: 10px;
  /* background-color: #0b0b45; */
}
.space {
  background-color: #0b0b45;
  height: 25vh;

}

.btn-transparant {
  font-size: 14px;
  padding: 8px 16px;
  color: white;
}

.jadwal-pages {
  justify-content: start;
}
.jadwal-pages h2 {
  font-size: 2rem;
}

.jadwal-table {
    width: 80vw; /* Lebar tabel */
    border-collapse: collapse; /* Hilangkan jarak antar sel */
    background: rgba(0, 0, 0, 0.5); /* Warna tabel dengan transparansi */
    backdrop-filter: blur(10px); /* Efek blur */
    -webkit-backdrop-filter: blur(10px); /* Efek blur untuk browser berbasis WebKit */
    color: white; /* Warna teks */
    border-radius: 10px; /* Sudut melengkung */
    overflow: hidden; /* Agar sudut tabel tidak keluar */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Efek bayangan */
  }
  
  /* Header tabel */
  .jadwal-table thead th {
    padding: 10px 15px;
    background: #02022c; /* Warna header lebih pekat */
    text-align: left; /* Teks rata kiri */
    font-size: 1rem;
    font-weight: bold;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }
  
  /* Isi tabel */
  .jadwal-table tbody td {
    padding: 10px 15px;
    text-align: left; /* Teks rata kiri */
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Garis bawah */
  }
  
  /* Baris bergantian warna */
  .jadwal-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.1); /* Warna baris genap */
  }
  
  /* Efek hover */
  .jadwal-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.2); /* Warna saat di-hover */
    transition: background 0.3s ease;
  }

.faq {
  height: 50vh;
  justify-content: start;
}
.faq h2 {
  font-size: 2rem;
}
details[name="faq-item"] summary {
  font-size: 1rem;
}
details[name="faq-item"] p {
  font-size: 1rem;
}

.maps-item iframe {
  margin-bottom: 8px;
  border-radius: 25px;
}

.contact {
  height: 95vh;
  width: 100vw;
  justify-content: start;
  align-items: center;
}
.contact h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
}
.contact-item img {
  height: 15rem;
  width: 15rem;
  border-radius: 100%;
}

.contact-item table {
  border-collapse: collapse;
  width: 80%;
  height: 100%;
}

.contact-item th, td {
  /* border: 1px solid black; */
  text-align: left;
  /* padding: 30px; */
  font-size: 1rem;
  font-weight: bold;
}

.contact-item a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.contact-item a:hover {
  text-decoration: underline;
  color: blue;
}


.contact-item th {
  background-color: #0b0b45;
  color: white;
}

.footer {
  width: 500px;
  display: flex;
  flex-direction: column;
}
.footer-item {
  height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  background-color: black;
  color: white;
  justify-content: start;
  align-items: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: left;
  margin-top: 10px;
}
.footer-logo img {
  width: 200px;
  margin-left: 30px;
}
.footer-logo h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 20px;
  margin-left: 30px;
}
.footer-logo a {
  text-decoration: none;
  color: white;
}
.footer-logo a:hover {
  color: green;
}
.footer-logo svg {
  color: white;
  margin-left: 30px;
}
.footer-logo svg:hover {
  color: green;
}

.footer-container {
  display: flex;
  flex-direction: column;
}

.footer-detail {
  width: 80vw;
  margin-top: 20px;
  margin-bottom: 10px;
  
}
.footer-detail h2 {
  font-size: 1.7rem;
  font-weight: bold;
}
.footer-detail p {
  margin-top: 5px;
  margin-bottom: 5px;
  max-width: 400px;
}

.footer-detail-2 {
  width: 20vw;
  display: flex;
  flex-direction: row;
  /* justify-content: ; */
  margin-right: 20px;
  margin-top: 10px;
  gap: 5px;
  margin-left: -10px;
}
.footer-detail-2 a {
  font-size: 1rem;
  text-decoration: none;
  color: white;
  /* font-weight: bold; */
}
.footer-detail-2 a:hover {
  text-decoration: none;
  border-bottom: 1px solid #ffffff75;
  transition: border-bottom 0.3s ease-in;
  font-weight: bold;
}

.footer-detail-3 {
  width: 20vw;
  display: flex;
  flex-direction: column;
  /* align-items: end; */
  margin-right: 20px;
  margin-top: 10px;
}
.footer-detail-3 h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
}
.footer-detail-3 a {
  font-size: 1rem;
  text-decoration: none;
  color: white;
  /* font-weight: bold; */
}
.footer-detail-3 a:hover {
  text-decoration: none;
  border-bottom: 1px solid #ffffff75;
  transition: border-bottom 0.3s ease-in;
  /* font-weight: bold; */
}

.copyright {
  background-color: black;
  width: 100vw;
  height: 15vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}
.copyright p {
  margin-top: 2px;
  margin-bottom: 2px;
  text-align: center;
}

.up-pages {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  color: green;
  position: relative;
  z-index: 4;
  margin-top: -701px;
  margin-right: -35px;
}
.up-pages svg:hover {
  color: green;
}
}

