/* Budo Village Map Styles */
.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.location-icon {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-icon:hover {
    transform: scale(1.2);
}

.location-icon i {
    font-size: 24px;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.location-tooltip {
    position: absolute;
    background: white;
    padding: 6px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: none;
    width: 120px;
    z-index: 3;
    top: 100%; /* Posisi tooltip di bawah icon */
    left: 50%;
    transform: translateX(-50%); /* Center tooltip horizontally */
    margin-top: 8px; /* Jarak antara icon dan tooltip */
}

.location-icon:hover .location-tooltip {
    display: block;
}

.description-box {
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Custom Font Styles */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.jumbotron h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.jumbotron p.lead {
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }
    
    .jumbotron h1 {
        font-size: 2.2rem;
    }
}