@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #fff7ed; /* Light Orange Tint */
    margin: 0;
    padding: 0;
}

.perspective-1000 { 
    perspective: 1000px; 
}

.preserve-3d { 
    transform-style: preserve-3d; 
}

html { 
    scroll-behavior: smooth; 
}

/* Custom Scrollbar (Red Theme) */
::-webkit-scrollbar { 
    width: 10px; 
}
::-webkit-scrollbar-track { 
    background: #fff1f2; 
}
::-webkit-scrollbar-thumb { 
    background: #dc2626; /* Brand Red */
    border-radius: 5px; 
}
::-webkit-scrollbar-thumb:hover { 
    background: #b91c1c; 
}

/* Map Container Filter */
.map-container iframe { 
    width: 100%; 
    height: 100%; 
    border-radius: 1rem; 
    /* Slightly desaturated map to fit theme */
    filter: grayscale(20%) contrast(90%); 
}