/* Google Fonts - 'Roboto' is strong and structural */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    color: #334155;
    background-color: #fff;
}

/* BRANDING COLORS */
/* Navy Blue - Trust & Structure */
.bg-primary { background-color: #1e3a8a !important; }
.text-primary { color: #1e3a8a !important; }
.btn-primary {
    background-color: #1e3a8a;
    border: none;
    color: #fff;
}
.btn-primary:hover {
    background-color: #172554;
}

/* Brick Red - Action & Urgency */
.btn-danger {
    background-color: #dc2626; 
    border: none;
}
.btn-danger:hover {
    background-color: #b91c1c;
}

/* NAVBAR */
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    font-weight: 900; /* Extra Bold */
}
.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* HERO SECTION */
.hero-section {
    /* Image of scaffolding or construction site */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    min-height: 85vh;
}

/* CARDS */
.card-img-top {
    height: 250px;
    object-fit: cover;
}
.card {
    border-radius: 0 !important; /* Square edges for structural feel */
}

/* UTILS */
.rounded-0 { border-radius: 0 !important; }
.ls-1 { letter-spacing: 1px; }

/* FOOTER LINK */
footer a:hover {
    text-decoration: underline !important;
    color: #fff !important;
}