/* Default (Light Mode) */
body {
  background-color: #f1f1f1;
  color: #111;
  transition: all 0.3s ease;
}

.project-card {
  background-color: #ffffff;
  color: #111;
  transition: all 0.3s ease;
}

.project-card .card-body {
  padding: 16px;
}

/* Tombol */
.btn-detail {
  background-color: #007acc;
  color: white;
  margin-top: 8px;
  display: inline-block;
  padding: 8px 16px;
}

.btn-detail:hover {
  background-color: #005e99;
}

/* Dark Mode */
body.dark-mode {
  background-color: grey;
  color: #f1f1f1;
}

body.dark-mode .w3-bar {
  background-color: grey;
}

/* Tetap PUTIH di DARK MODE */
body.dark-mode .project-card {
  background-color: #ffffff;
  color: #111;
}


body.dark-mode .w3-text-dark-grey {
  color: #f1f1f1 !important;
}


body.dark-mode .card-body {
  background-color: #ffffff;
  color: #111;
}

body.dark-mode .btn-detail {
  background-color: #007acc;
  color: white;
}

body.dark-mode .btn-detail:hover {
  background-color: #005e99;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background-color: #fff;
  color: #111;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  position: relative;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

body.dark-mode .modal-content {
  background-color: #fff !important;
  color: #111 !important;
}

@media screen and (min-width: 601px) {
  #mobileMenu {
    display: none !important;
  }
}


