/* styles.css */

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

section {
    padding-top: 80px;
}

/* Navbar Styles */
.navbar-brand img {
    margin-right: 10px;
}

/* Hero Section */
#home {
    background: url('../images/hero-bg.jpeg') no-repeat center center;
    background-size: cover;
    position: relative;
    /* Optional: Add a dark overlay to enhance text readability */
}

#home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    z-index: 0;
}

#home .container {
    position: relative;
    z-index: 1;
}

/* About Section */
#about img {
    max-height: 300px;
    object-fit: cover;
}

/* Services Icons */
#services .bi {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Footer Icons */
footer a {
    font-size: 1.5rem;
    transition: color 0.3s;
}

footer a:hover {
    color: #0d6efd;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    section {
        padding-top: 60px;
    }

    #home {
        padding: 20px;
    }

    #home h1.display-4 {
        font-size: 2.5rem;
    }

    #home p.lead {
        font-size: 1.2rem;
    }
}
