@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

body {
    background-color: #020617;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.glass {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#mapid {
    height: 500px;
    width: 100%;
    border-radius: 2rem;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.leaflet-container {
    background: #020617 !important;
}

.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

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

.font-outline {
    -webkit-text-stroke: 1px rgba(56, 189, 248, 0.5);
    color: transparent;
}

/* Hide the default <details> marker to use the FontAwesome chevron instead */
details summary::-webkit-details-marker { display: none; }
details summary { list-style: none; }

/* FAQ chevron animation */
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform 0.2s ease; }

/* Scrollbar styling */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #020617; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #38bdf8; }
