/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
    background-color: black;
}

/* hero background image */
.bgimage {
    height: 100vh;
    background: url('images/bg.jpg');
    background-size: cover;
    position: relative;
    filter: invert(10%);
}

/* text css above hero image*/
.hero_title {
    font-size: 4.5rem;
    color: white;
}

.hero_desc {
    font-size: 2rem;
    color: white;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

/* spacing on all sections */
/* #about, #services, #portfolio, #contact {
    margin-top: 4rem;
    padding-top: 4rem;
} */
.mainbtn{
    background-color: white;
    color: black;
    padding: 6px 9px;
    border-radius: 30px;
    text-decoration: none;
}
.mainbtn:hover{
  background-color: rgb(136, 114, 85);
  color: antiquewhite;
}
#contact {
    padding-bottom: 4rem;
}

/* about section image css */
.imageAboutPage {
    width: 100%;
}

/* services section css */
.servicesText.card {
    height: 280px;
    cursor: pointer;
}

.servicesIcon {
    font-size: 36px;
    text-align: center;
    width: 100%;
}

.card-title {
    text-align: center;
}

.card:hover .servicesIcon {
    color: #008000;
}

.servicesText:hover {
    border: 1px solid #008000;
}

/* social media icons styling */
.social-icons {
    font-size: 36px;
    cursor: pointer;
}

.fa-instagram:hover, .fa-github:hover, .fa-linkedin:hover{
    color: #008000;
}

.fab {
    color: #000000;
}

/* footer styling */
#footer {
    background-color: #808080;
    text-align: center;
    padding:20px 20px
}

/* Media Queries */
@media (max-width: 991px) {
    .navbar-toggler {
        background-color: #fff;
    }
    .navbar-nav {
        background-color: #4285f4;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 60px;
        left: 0;
        display: none;
    }
    .navbar-nav.show {
        display: block;
    }
    .navbar-nav li {
        display: block;
        margin: 10px 0;
    }
    .navbar a {
        color: #fff;
    }
    .navbar-toggler-icon {
        background-color: #fff;
    }
}

@media (max-width: 768px) {
    .bgimage {
        padding: 50px 0;
    }
    .hero_title {
        font-size: 3.5rem;
    }
    .hero_desc {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .navbar a {
        font-size: 14px;
    }
    .bgimage {
        padding: 30px 0;
    }
    .hero_title {
        font-size: 2.5rem;
    }
    .hero_desc {
        font-size: 1rem;
    }
    .imageAboutPage {
        margin-bottom: 20px;
    }
    .contactContent {
        padding-bottom: 50px;
    }
    .social-icons a {
        font-size: 1.2rem;
        margin: 0 8px;
    }
}
