/* css/style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

@font-face {
    font-family: 'SakuraBurmese';
    src: url('../fonts/SakuraBurmese.ttf'); /* Font path မှန်ကန်ပါစေ */
    font-display: swap;
}

body {
    font-family: 'SakuraBurmese', 'Pyidaungsu', sans-serif;
    background-color: #f0f9ff; /* Light Sky Blue */
    color: #1e3a8a;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-thumb {
    background: #60a5fa;
    border-radius: 10px;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sticky Header & Footer */
header, footer {
    z-index: 50;
}

/* Search Results */
#osmSuggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 40;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.search-result-item:hover {
    background-color: #eff6ff;
}

.result-icon {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

.badge {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
    margin-left: 5px;
}
.badge-village { background-color: #10b981; }
.badge-township { background-color: #f59e0b; }
.badge-city { background-color: #ef4444; }

/* Menu Grid Buttons */
.menu-btn {
    transition: transform 0.2s, box-shadow 0.2s;
}
.menu-btn:active {
    transform: scale(0.95);
}