@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, .9);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #14F7F7;
    font-size: 15px;
}


.container {
    max-width: 1200px;
    width: 80%;
    margin: auto;
}

.hero-header {
    font-size: 60px;
    font-weight: 400;
    color: #14F7F7;
    margin-bottom: 20px;
}

.sm-hero {
    font-size: 40px;
    font-weight: 200;
}

.hero-text {
    color: #14F7F7;
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 750px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    background-color: #F34C47;
    color: #14F7F7;
    text-align: center;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
}

.btn:hover {
    opacity: .8;
}

header.main-header {
    background-color: rgba(0, 0, 0, .9);
}

nav.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 100px;
}

ul.nav-links {
    margin-top: 15px;
}

ul.nav-links a {
    display: inline-block;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 400;
}

ul.nav-links a:hover {
    color: #000;
    background-color: #F34C47;
} 

ul.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Banner Section */
.bn-section {
    min-height: 60vh;
    background: url('./images/background.jpg') center center/cover no-repeat rgba(0, 0, 0, .6);
    background-blend-mode: darken;
}

.bn-content {
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* SERVICES SECTION */
.services {
    background-color: rgba(0, 0, 0, .9);
    color: #14F7F7;
    text-align: center;
    padding-top: 30px;
}

.box-container {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    margin-top: 30px;
    padding-bottom: 30px;
}

.box-container h3 {
    padding: 15px 0px;
    font-weight: 400;
    font-size: 24px;
}

.box {
    width: 350px;
    padding: 15px;
}

/* About Section */
.about-section {
    background: url('./images/about-bg.jpg') no-repeat center center/cover rgba(0, 0, 0, .5);
    background-blend-mode: darken;
    color: #14F7F7;
    text-align: center;
    padding: 30px 0px;
    height: auto;
    color: #c6ffff;
    overflow: auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    padding-bottom: 40px;
    margin: 0px auto;
    height: auto;
}

.about-content p {
    line-height: 1.8;
    font-size: 20px;
    font-weight: 400;
}

/* Contact Info  */
.contact-section {
    background-color: rgba(0, 0, 0, .9);
    padding-bottom: 30px;
}

.form {
    display: flex;
    width: 100%;
    justify-content: center;
    color: #14F7F7;
}

form h2 {
    color: #14F7F7;
    padding: 15px 0px;
    font-weight: 400;
    font-size: 24px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    width: 700px;
    justify-content: center;
    align-items: center;
}

form input, form textarea {
    width: 100%;
    background-color: #303030;
    outline: none;
    border: none;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 17px;
    padding: 15px;
    color: #F34C47;

}

form label {
    align-self: flex-start;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #303030;
    color: #F34C47;
    padding: 30px;
    font-size: 18px;
    padding-top: 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
}

footer h2 {
    text-align: center;
}



#site-info {
    background-color: rgba(48, 48, 48, .8);
    text-align: center;
    font-weight: bold;
    color: #14F7F7;
    font-size: 14px;
    padding: 30px;
}

/* MEDIA QUERIES */
@media screen and (max-width: 768px) {
    nav.main-nav {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .bn-content h1{
        font-size: 40px;
    }

    .box-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    footer h2 {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 500px) {

    .about-content {
        width: 100%;
    }

    .bn-content h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .about-content p {
        line-height: 1.7;
        font-size: 16px;
        width: 100%;
    }

    .footer-content .fa-3x {
        font-size: 1em;
    }

    .box {
        width: 100%;
    }
}

@media screen and (max-width: 315px) {
    footer h2.sm-hero {
        font-size: 20px;
    }
}