/* Custom Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Page Styles */
body, html {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

/* Section 1: Company Quote */
.content-1 {
    background: url('/img/header-1_12_10_2024.webp') no-repeat center center/cover; /* Background image */
    min-height: 100vh; /* Use min-height instead of fixed height */
    position: relative;
    padding-top: 100px; /* Ensure enough padding from top */
    padding-bottom: 100px; /* Ensure enough padding from bottom */
    color: #fff;
    text-align: center;
}

.content-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 0;
}

.content-1 .container {
    z-index: 1; /* Text above overlay */
    position: relative;
    padding: 20px; /* Add padding inside the container */
}

.content-1 h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.content-1 p.lead {
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.content-1 .btn {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.content-1 .btn:hover {
    background-color: #ffffff;
    color: #571111; /* Match button hover color */
    border-color: #ffffff;
}

/* Responsive Text Adjustments for Hero Section */
@media (max-width: 768px) {
    .content-1 h1 {
        font-size: 2.5rem; /* Reduce size for smaller screens */
    }

    .content-1 p.lead {
        font-size: 1.2rem; /* Smaller text for better readability */
    }
}

/* Section 2: About Us */
#content-2 {
    background-color: #f8f9fa; /* Light background */
    padding: 60px 20px;
    text-align: center;
}

#content-2 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #571111; /* Custom color */
}


#content-2 p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 15px;
    color: #333; /* Slightly darker text color */
}

#content-2 .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 25px;
}

#content-3 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #571111; /* Custom color */
}

/* Quote Section */
.quote-section {
    background: #571111;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.quote-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.quote-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Us Section */
#contact-us {
    padding: 60px 0;
    background-color: #e9ecef;
}

#contact-us h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #571111; /* Custom color */
}

#contact-us p.lead {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

#contact-us h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

#contact-us p {
    font-size: 1rem;
    margin-bottom: 10px;
}

#contact-us a {
    color: #571111; /* Custom color for links */
    text-decoration: none;
}

#contact-us a:hover {
    color: #333;
    text-decoration: underline;
}

/*nav-bar*/
.navbar {
    background: #780606;
}

.navbar-brand {
    background: rgb(255, 255, 255);
}

.nav-link {
    color: #fff !important;
}

.nav-link:hover {
    color: #a0a0a0 !important;
}

/* Footer */
footer {
    /* background: #333; */
    background: #780606;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Additional Responsive Breakpoints */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
    }

    #contact-us .row {
        flex-direction: column;
    }

    #contact-us .col-md-6 {
        margin-bottom: 20px;
    }
}
