﻿.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

hr {
    width: 50%;
    border-style: solid;
    opacity: 1;
    border-radius: 5px;
}

.header-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    font-family: Garamond;
    font-size: 64px;
}

.para-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 20px
}

.section {
    scroll-margin-top: 118px;
}

.hero {
    display: flex;
    background-image: url('../images/home images/Background_REV.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    display: flex;
    background-color: black;
    height: 450px;
    width: auto;
    padding: 20px;
    max-height: 100%;
    vertical-align: middle;
    background: transparent;
    margin-bottom: 20px;
    margin-top: 10px;
}

.bud-img {
    background-image: url('../images/home images/BudIMG.JPG');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 600px;
}

.about-us-home {
    display: flex;
    justify-content: center;
    align-content: center;
    background-image: url('../Images/Home images/Shelf.jpg');
    width: 100%;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.about-us-info {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    margin: 6%;
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.about-us-header {
    margin-top: 30px;
}

.about-us-para {
    width: 80%;
    margin: 25px 100px 100px 100px;
    font-size: 1.9rem;
    text-align: center;
}

.about-us-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid cornflowerblue;
    border-radius: 5px;
    background-color: black;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
}

.about-us-button:hover {
    background-color: white;
    color: black;
}

.brand-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(9,9,121);
    background: linear-gradient(0deg, rgba(9,9,121,1) 3%, rgba(0,212,255,1) 100%);
    width: 100%;
    flex-direction: column;
}

.brand-images {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin: 10px;
}

.brand-image-containers {
    display: flex;
    background: transparent;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 33% !important;
    height: 20vw;
    margin: 30px;
    margin-top: 0px;
}

.brand-image {
    width: 100%;
}

.contact-us-form-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contact-us-form {
    margin-top: 50px;
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    width: 100%;
}

.contact-form-info-input {
    display: flex;
    align-content: center;
    justify-content: space-evenly;
    width: 100%;
}

.input-box {
    width: 100%;
    padding: 0.5rem;
    border: solid;
    border-color: cornflowerblue;
    border-radius: 10px;
    background-color: black;
}

.message-input-box {
    margin: 10px;
}

.contact-us-thank-you {
    margin-top: 100px;
    margin-bottom: 100px;
    display: none;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}


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

    .header-container {
        margin-top: 10px;
        font-size: 60px;
    }

    .about-us-para {
        width: 90%;
        font-size: 1.4em;
        text-align: left;
        margin-bottom: 30px;
    }

    .brand-images {
        flex-direction: column;
    }

    .brand-image-containers {
        width: 100% !important;
        height: 400px;
        margin: 35px !important;
        padding: 0 !important;
    }

    .brand-image {
        width: 90%;
        height: auto;
        max-height: 400px
    }

    .contact-form-info-input {
        width: 80%;
        flex-direction: column;
        align-items: center;
    }
}