/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Full Page Banner Styles */
header.masthead {
    position: relative;
    background-image: url('../images/construction_20building_20liquidation_20site_20wit.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 600px;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

header.masthead:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

header.masthead .container {
    position: relative;
    z-index: 2;
}

header.masthead h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

header.masthead p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Button Styles */
.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #004085;
    border-color: #004085;
    transform: translateY(-2px);
}

/* Footer Styles */
footer {
    background-color: #343a40;
    color: #fff;
}

footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    header.masthead h1 {
        font-size: 2.5rem;
    }
    
    header.masthead p {
        font-size: 1.2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    header.masthead h1 {
        font-size: 2rem;
    }
    
    header.masthead p {
        font-size: 1rem;
    }
}