html, body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

.section-spacing {
  padding: 0rem 0 3rem;
}

/* Navbar */
.navbar {
    background-color: #011728 !important;
}

.navbar .nav-link {
    color: #ffcd40 !important; /* navbar links */
}

.navbar .nav-link:hover {
    color: #816209 !important;
}

.navbar-brand img {
    height: 3.5rem;
}

.navbar-nav .nav-link {
    color: #ffcd40 !important; /* your navbar link color */
    margin-left: 20px;          /* space between links */
}

.navbar-nav .nav-link:first-child {
    margin-left: 0; /* no extra space on the first link */
}

/* HERO SECTION */
.hero {
    background: url('../images/mbr-1920x1282.jpeg') center center / cover no-repeat;
    position: relative;
    color: white;
    padding: 100px 20px;
    text-align: center;
}
.hero-services {
    background: url('../images/tyrone-sanders-xkEgxuVWQFo-unsplash.jpg') center center / cover no-repeat;
    position: relative;
    color: white;
    padding: 100px 20px;
    text-align: center;
}
.hero-projects {
    background: url('../images/mbr-1-1920x1080.jpeg') center center / cover no-repeat;
    position: relative;
    color: white;
    padding: 100px 20px;
    text-align: center;
}
.hero-about {
    background: url('../images/mbr-1920x1282.jpeg') center center / cover no-repeat;
    position: relative;
    color: white;
    padding: 100px 20px;
    text-align: center;
}
.hero-contact {
    background: url('../images/mbr-1920x1282.jpeg') center center / cover no-repeat;
    position: relative;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 15px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35,35,35,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* FEATURE CARDS */
.feature-card {
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-card img {
    width: 100%;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

/* FEATURES SECTION BACKGROUND */
.feature-card h5, 
.feature-card p, 
.feature-card a {
    color: #ffffff;
}

.feature-card a:hover {
    color: #66b2ff;
}

section.py-5 {
    background: #011728; /* dark navy background */
    color: #ffffff;
    padding: 5rem 0 10rem 0 !important; /* extra space below section */
}

/* Feature Text Box Below Image */
.bg-feature {
    background-color: #0c2a3f; /* dark blue background */
    color: #ffffff;             /* white text */
    border-radius: 6px;         /* rounded corners */
    margin-top: 0.75rem;        /* spacing between image and text */
    padding: 1rem;
}

.bg-feature a {
    color: #ffcd40;             /* yellow link */
    text-decoration: none;
}

.bg-feature a:hover {
    color: #e6b637;             /* slightly darker yellow on hover */
    text-decoration: underline;
}

/* FOOTER */
.footer {
    background: #011c30; /* footer dark blue */
    color: #ffffff;
    padding: 40px 0;
    font-size: 0.95rem;
    text-align: center;
}

.footer img {
    height: 3.9rem;
}

.footer a {
    color: #66b2ff;
}

.footer a:hover {
    color: #99ccff;
}

.footer p, .footer small {
    color: #ffffff;
}

.footer-separator {
    border-top: 1px solid #66b2ff;
    margin: 3rem 0 1rem 0;
}

/* Request Estimate Button */
.btn-request-estimate {
    background-color: #ffcd40; /* bright yellow */
    color: #011728;            /* dark text */
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-request-estimate:hover {
    background-color: #e6b637; /* slightly darker yellow on hover */
    color: #011728;
}

/* Hamburger Menu Icon */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,204,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Center mobile menu items */
@media (max-width: 767.98px) {
    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }

    .navbar-nav .btn-request-estimate {
        margin-top: 0.5rem;
    }

    /* Footer: center all columns */
    .footer .text-start,
    .footer .text-end {
        text-align: center !important;
        margin-bottom: 1rem;
    }
}

/* Square thumbnail gallery images */
.row.g-4 .col-md-4.col-lg-3 img {
  width: 100%;       /* fill the column width */
  height: 200px;     /* fixed thumbnail height */
  object-fit: cover; /* crop to fit square without stretching */
  border-radius: 0.25rem; /* keep rounded corners */
  display: block;
}

.copy {
	color: #888888 !important;
}

/* Contact section title */
.section-spacing h4 {
  color: #ffffff; /* Makes the title white */
}

/* Submit button */
.btn-contact {
  background-color: #ff6600; /* Custom button color */
  color: #ffffff;            /* Button text color */
  border: none;
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #e65c00; /* Darker shade on hover */
}
