:root {
    --primary-color: #0056b3;
    --font-family: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-family);
}

/* Custom Primary Color Override for Bootstrap */
.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: #1a1a1a;
    /* Dark fallback */
    background-image: url('../images/hero-bg-city.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding-top: 80px;
    /* Account for fixed navbar */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Darker overlay for text contrast */
}

/* Card Hover Effect */
.hover-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 50px;
        height: auto;
        /* Allow content to dictate height on mobile */
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}