/* Define custom fonts */
body { 
    font-family: 'Lato', sans-serif; 
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Hero Section Style */
.hero {
    /* Path adjusted to correctly point to images folder inside public */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
}

/* Softer shadows for a gentler feel */
.shadow-soft {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Map & Leaflet Styles (Non-critical moved here) */
#map { 
    border-radius: 0.5rem; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.leaflet-popup-content-wrapper { 
    border-radius: 0.5rem; 
}
