:root {
    --bs-primary: #295f98; /* Blue */
    --bs-secondary: #cdc2a5; /* Gold */
    --bs-body-bg: #eae4dd; /* Off White */
    --bs-light-beige: #e1d7c6;
}

body {
    background-color: var(--bs-body-bg) !important;
    zoom: 1.1; /* Memperbesar skala keseluruhan */
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-primary:hover {
    background-color: #1e4b7a !important;
}

.card-custom-blue {
    background: linear-gradient(135deg, #295f98 0%, #1e4b7a 100%) !important;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}

/* Navbar Accent */
.navbar-brand-text {
    color: #295f98;
}

#map {
    height: 90vh; /* 90% of viewport height, diperbesar dari 85vh */
    width: 100%;
    border-radius: 8px; /* Softer corners */
    border: 2px solid #CDC2A5; /* Gold Border */
}

.stats-card {
    transition: transform 0.2s;
}
.stats-card:hover {
    transform: translateY(-5px);
}

/* Legend control */
.info {
    padding: 6px 8px;
    font: 14px/16px Arial, Helvetica, sans-serif;
    background: white;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    border: 1px solid #cdc2a5;
}
.legend {
    line-height: 18px;
    color: #555;
}
.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
    opacity: 0.7;
}

@media (min-width: 992px) {
    .w-lg-auto {
        width: auto !important;
    }
}

/* Footer & Socials */
.social-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: #f1f5f9;
    color: #15304e;
}
.social-btn:hover {
    transform: translateY(-3px);
    color: white;
}
.social-btn.instagram:hover {
    background: #e4405f;
}
.social-btn.linkedin:hover {
    background: #0077b5;
}
.social-btn.github:hover {
    background: #333;
}
.social-btn.email:hover {
    background: #ea4335;
}

.bg-clip-text {
    background-clip: text;
    -webkit-background-clip: text;
}
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Modal Customization */
.badge {
    font-weight: 600;
    font-size: 0.75rem;
}
