body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.font-heading {
    font-family: 'Montserrat', sans-serif;
}

/* Abstract faceted background for the hero section */
.hero-bg {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/Background.png') no-repeat center center / cover;
    position: relative;
    overflow: hidden;
}

/* Simulating the polygon shapes in the background */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-bg > * {
    position: relative;
    z-index: 2;
}

.text-shadow-heavy {
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.text-shadow-light {
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}
