@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap');

/* Generic css for layouts and writing */

body {
    line-height: 1.8;
    color: rgba(0, 0, 0);
    font-size: 15px;
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 0, 0);
}

.title-sm {
    font-size: 16px;
    letter-spacing: 1px;
}

a {
    font-weight: 700;
    transition: all 0.4s ease;
}

img {
    max-width: 100%;
    height: auto;
}

small {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

section {
    padding-top: 75px;
    padding-bottom: 50px;
}


/* Navbar section */
.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 22px;
    text-transform: uppercase;
    color: rgba(0, 0, 0) !important;
    margin-left: 10px;
}

@media screen and (max-width: 768px) {
    .navbar-toggler {
        margin-top: 5px;
    }
}

.navbar .nav-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px;
}

.navbar-light .navbar-nav .nav-link.active {
    color: red;
}

/* Home section */
#home {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/hero_img.jpg);
    background-color: #000; /* Fallback color */
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    #home {
        padding-top: 100px;
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/hero2_img.jpg);
        background-color: #000; /* Fallback color */
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
}

@supports (-webkit-touch-callout: none) {
    #home {
        background-attachment: scroll;
    }
}

#home h1 {
    font-weight: 700;
    font-size: 75px;
}

#home h2 {
    font-size: 35px;
}

#home p {
    max-width: 550px;
    margin: 18px auto;
}

.btn {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    padding: 12px 28px;
}

.btn-brand {
    background-color: red;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #fff;
}

.btn-brand:hover {
    background-color: darkred;
    color: #fff;
}


/* Intro section */
.section-intro {
    text-align: center;
}

.section-intro .hline{
    width: 120px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 16px auto 0 auto;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}


/* find us Section */
#findus {
    margin-bottom: 50px;
}

.col-md-4 .hline {
    width: 120px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: auto;
}

#findus .col-md-4 h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.google-map {
    padding-bottom: 100%;
    position: relative;
    margin-top: 20px;
}

.google-map iframe {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

#findus .col-md-4 {
    padding-bottom: 50px
}

#findus .col-md-2 {
    font-weight: 700;
    margin: auto 50px 100px auto;
}

.col-md-2 .hline {
    width: 120px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 10px auto;
}

#findus .col-md-2 h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

#findus .col-md-2 p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}


/* Footer section */
.footer-top {
    padding-top: 75px;
    background-color: black;
}

footer .footer-links a,
footer .social-icons a {
    color: #1877F2;
}

footer .social-icons a {
    font-size: 24px;
}

footer .footer-links a {
    display: block;
    font-weight: 400;
}

    footer .social-icons a:hover,
    footer .footer-links a:hover {
        color: white;
    }

footer .col-md-2 {
    padding-top: 20px;
    margin: auto 50px 100px auto;
}

footer .col-md-4 {
    padding-bottom: 50px;
}

footer .row.gy-5 {
    color: white;
}