/* Warna utama */
:root {
  --primary: #0d4dbb;
}

/* Navbar */
.bg-primary-custom {
  background-color: var(--primary);
}

/* Header */
.header-alumni {
  margin-top: 80px;
  padding: 60px 0;
}

.header-alumni h1 {
  color: var(--primary);
}

/* Alumni Card */
.alumni-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.alumni-card img {
  height: 280px;
  object-fit: cover;
}

.alumni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.alumni-card .card-title {
  font-weight: 600;
  color: var(--primary);
}

#mapAlumni {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.form-select {
  border-radius: 10px;
  padding: 10px;
}

.filter-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.custom-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  border: 3px solid #fff;
}

.marker-hotel {
  background-color: #0d6efd; /* Biru */
}

.marker-cruise {
  background-color: #198754; /* Hijau */
}

.marker-japan {
  background-color: #dc3545; /* Merah */
}

/* ===== MARKER ===== */
.custom-marker {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.marker-hotel { background: #0d6efd; }
.marker-cruise { background: #20c997; }
.marker-japan { background: #e83e8c; }

.marker-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #dc3545;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: bold;
}

/* ===== POPUP ===== */
.popup-wrapper h6 {
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.alumni-popup-card {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.alumni-popup-card img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.alumni-popup-card .info {
  font-size: 13px;
}

.alumni-popup-card strong {
  display: block;
}

.alumni-popup-card span {
  font-size: 12px;
  color: #6c757d;
}

.alumni-popup-card {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.alumni-popup-card img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.alumni-popup-card .info {
  font-size: 13px;
  line-height: 1.4;
}

.alumni-popup-card .nama {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.alumni-popup-card .posisi {
  color: #212529;
  margin-bottom: 2px;
}

.alumni-popup-card .tempat {
  color: #6c757d;
  font-size: 12.5px;
}
