/* Import Font */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

/* Global Styles */
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/* Card Styles */
.card {
  position: relative;
  border: none;
  overflow: hidden;
}

.bungkusImg {
  width: 100%;
  overflow: hidden;
}

.bungkusImg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
  color: #333;
}

.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  text-align: center;
}


.card-text {
  font-size: 16px;
  margin: 10px 0;
  color: #555;
}


.bg-name-title {
  background-color: #001f3f;
  background-image: radial-gradient(circle, #003366, #001f3f, #000a1a); /* Gradasi biru gelap */
  background-size: 150%; /* Memperbesar pola agar terlihat lebih keren */
  background-position: center;
  background-repeat: no-repeat;
  color: white; /* Agar teks tetap terlihat */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Efek bayangan untuk tampilan lebih elegan */
}

/* Buttons */
.btn {
  font-size: 16px;
  border-radius: 25px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.btn-dark {
  background-color: #001f3f;
  color: white;
  border: none;
}

.btn-dark:hover {
  background-color: #003366;
}

.btn-primary {
  background-color: #007bff;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Navbar Styles */
.navbar-top {
  background-color: black;
  font-weight: 300;
  z-index: 1030;
}

.mt-nav {
  margin-top: 56px;
}

.navbar-below {
  position: relative;
  background-color: white;
}

.navbar-below .nav-link {
  color: #0000FF;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.navbar-below .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
}

.navbar-below .navbar-toggler {
  border: none;
}

/* Image Styles */
.image-wrapper {
  height: 500px;
}

.image-title {
  height: 400px;
  border-radius: 1% !important;
  overflow: hidden;
}

.image-title img, .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Carousel Styles */
.carousel-item {
  position: relative;
}

.carousel-caption {
  position: absolute;
  bottom: -10%;
  left: 80%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.carousel-caption h1 {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.btn-futuristic {
  background: linear-gradient(90deg, #00f2ff, #007bff);
  border: none;
  font-size: 13px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.btn-futuristic:hover {
  background: linear-gradient(90deg, #007bff, #00f2ff);
  box-shadow: 0 0 20px rgba(0, 255, 255, 1);
}

.carousel-indicators {
  position: absolute;
  bottom: -60px;
}

.carousel-indicators [data-bs-target] {
  background-color: #007bff;
  width: 14px;
  height: 12px;
  border-radius: 6px;
  margin: 5px;
}

.carousel-indicators .active {
  background-color: #0056b3;
  width: 18px;
  height: 12px;
}


.btn-green {
  background-color: #28a745;
  border: none;
}

.btn-green:hover {
  background-color: #218838;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .card {
    max-width: 95%;
  }

  .card-title {
    font-size: 20px;
  }

  .card-text {
    font-size: 14px;
  }

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

@media (max-width: 576px) {
  .card {
    max-width: 100%;
  }

  .card-title {
    font-size: 18px;
  }

  .btn {
    font-size: 13px;
    padding: 6px 14px;
  }
}

/* Modal Styles */
.modal-dialog {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

@media (max-width: 576px) {
  .modal-dialog {
    align-items: flex-end;
    padding-bottom: 35vh;
  }
}

/* Other Styles */
.active-filter {
  font-weight: bold;
  color: blue;
}

.logo-img {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

.custom-select {
  background-color: #f8f9fa;
  border: 2px solid #007bff;
  border-radius: 8px;
  padding: 10px;
  color: #343a40;
  font-weight: bold;
}

.custom-select:focus {
  border-color: #0056b3;
  box-shadow: 0 0 5px rgba(0, 91, 187, 0.5);
}

.custom-select:hover {
  background-color: #e9ecef;
  cursor: pointer;
}
