/*========== GENERAL ==========*/
:root {
    --white: #ffffff;
    --blue: #3434ff;
    --lightblue: #0000fe;
    --lightbluetext:#A3D9FF;
}

html,
body {
    height: 100%;
    margin: 0;
    font-size: 18px;
    color: var(--white);
    background-color: var(--lightblue);
    line-height: 1.2;
    cursor: default;
}

a {
    text-decoration: none;
}

h2 {
    font-weight: bold;
    font-size: 4rem;
}

textarea {
    resize: none;
}

/*========== HOME PAGE ==========*/
.top_content, .image_container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.button_links {
    align-content: center;
}

.heading_container {
    color: var(--white);
    padding-bottom: 30px;
}

.text_container {
    color: var(--white);
    font-size: 1.3rem;
}

.button_home {
    background: #c0c0be;
    background-image: -webkit-linear-gradient(top, #c0c0be, #9a9a97);
    background-image: -moz-linear-gradient(top, #c0c0be, #9a9a97);
    background-image: -ms-linear-gradient(top, #c0c0be, #9a9a97);
    background-image: -o-linear-gradient(top, #c0c0be, #9a9a97);
    background-image: linear-gradient(to bottom, #c0c0be, #9a9a97);
    border: 0;
    border-radius: 20px;
    color: var(--white);
    padding: 15px 5px;
    display: inline-block;
    cursor: pointer;
    width: 90%;
    text-align: center;
}

.button_home:hover {
    background: #c0c0be;
    border: 0;
    border-radius: 20px;
    text-decoration: none;
    color: var(--white);
}

.image_container img {
    border-radius: 30px;
    object-fit: cover;
    height: 100%;
}

.content-container{
    padding-bottom: 150px;
    padding-top: 50px;
}

/*========== CONTACT FORM ==========*/
.error {
    color: red;
}

.contact_form .button_home {
    width: auto;
    padding: 10px 20px;
}

.contact_form {
    text-align: end;
    overflow-y: scroll;
    overflow-x: hidden;
}

.input_contact_form input,
.input_contact_form textarea {
    border-radius: 20px;
    border: 0;
}

.input_contact_form {
    padding-top: 15px;
}

/*========== HEADER ==========*/
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
    color: var(--lightbluetext);
}

.header_container {
    position: relative;
}

.header_container .menu_item {
    padding-left: 30px;
}

.header_container .menu_item.active {
    color: var(--blue);
}

.header_container.bg-dark{
    background-color: #363637 !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--white);
}

a.menu_item:hover {
    color: var(--lightblue);
    text-decoration: none;
}

.header-container {
    background-color: #363637;
    color: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    cursor: default;
    z-index: 999;
}

.header_container.container {
    max-width: unset;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}

/*========== FOOTER ==========*/
.footer-container {
    padding: 20px;
    background-color: #363637;
    color: var(--white);
    position: fixed;
    bottom: 0;
    width: 100%;
    cursor: default;
    font-size: 0.8rem;
}

.footer-container .container {
    max-width: unset;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}

/*========== OTHER PAGES ==========*/
.driveways_container,
.extensions_container {
    padding: 1.5rem 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.69);
    border-radius: 15px;
    background-color: var(--blue);
}

.extensions_container a {
    color: var(--white);
    text-decoration: underline;
}

/*========== GALLERY ==========*/
.gallery_image {
    border-radius: 10px;
    max-height: 300px;
    min-height: 300px;
    width: auto;
    object-fit: cover;
}

/*========== MEDIA QUERIES ==========*/
@media screen and (max-width: 576px) {
    .button_links div {
        padding: 10px;
    }

    .image_container {
        display: none;
    }

    .nav.nav-pills {
        padding-top: 10px;
    }

    .navbar {
        text-align: center;
    }

    .navbar-brand {
        margin-right: 0;
    }

    h2 {
        font-size: 2.5rem;
    }

    .text_container {
        font-size: 1.2rem;
    }

    .top_content, .heading_container {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .footer-container {
        padding: 10px;
        font-size: 0.6rem;
    }
}

@media screen and (max-width: 451px) {
    body {
        font-size: 16px;
    }
}

@media screen and (max-width: 351px) {
    body {
        font-size: 12px;
    }
}
