html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    animation: fade-in .5s ease-in-out forwards;
}

section {
    scroll-margin-top: 50px;
}

h1 {
    color: #A27B5C;
}

h2 {
    color: #A27B5C;
    font-size: 2.5rem;
    margin-top: 0;
}

h3 {
    font-size: 1.5rem;
    color: #A27B5C;
}

p,
a,
button {
    font-family: "Roboto", sans-serif;
}

/* nav bar */

nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 1rem;
}

footer, nav {
    background-color: #196E69;
    display: flex;
    justify-content: space-between;
}


.roboto-robotoFont {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

#heroSection {
    height: 100vh;
}

.navTagsContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    margin-right: 16px;
}

.navTagsContainer a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
}

nav h1 {
    color: #DCD7C9;
    margin: 0;
}

#burgerMenu {
    display: none;
}

#mobileNav {
    display: flex;
    flex-direction: column;
    width: 300px;
    background-color: #196e68c7;
    position: fixed;
    right: 0;
    top: 90px;
    padding: 1rem;
    display: none;
}

#mobileNav a {
    text-decoration: none;
    padding: 1rem;
    color: white;
    border: solid 1px white;
    margin: .5rem;
    text-align: center;
    border-radius: .5rem;
}

/* her0 section */

.hero {
    background-image: url("./images/heroImage.webp");
    height: 100%;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heroText {
    color: white;
    background-color: rgba(0, 0, 0, 0.385);
    padding: 5rem 5rem 3rem 5rem;
    border-radius: 16px;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.heroText h1 {
    color: white;
    font-size: 4rem;
    text-align: center;
    margin: 0;
}

.heroText p {
    font-family: "Roboto", sans-serif;
    text-align: center;
}


.locationButton {
    background-color: #DCD7C9;
    padding: 1rem;
    border: none;
    border-radius: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: black;
    display: block;
    max-width: 200px;
    margin: 1rem auto;
}


/* Story */
#ourStory {
    max-width: 1080px;
    padding: 2rem;
    margin: 0 auto;
}

.storyContainer {
    max-width: 1080px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.photos {
    margin-right: 2rem;
    width: 45%;
}

.photos img {
    width: 100%;
    margin-bottom: 2rem;
}

.story {
    width: 45%;
}

.story h1 {
    margin-top: 0;
}

.greyText {
    color: #707070;
    line-height: 2rem;
}

/* menu */

#menu {
    background-color: #F5F5F4;
    padding: 2rem;
}

.menuContainer {
    max-width: 1080px;
    margin: 0 auto;

}

.menuSection {
    display: flex;
    justify-content: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.menuItem {
    width: 250px;
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    margin-top: 2rem;
    color: black;
}

/* location */

#location {
    background-color: #A27B5C;
    padding: 2rem;
}

.locationContainer h2 {
    text-align: center;
}

.locationContainer {
    max-width: 1080px;
    margin: 0 auto;
}

.whiteText {
    color: white;
}

.map {
    width: 100%;
    height: 50vh;
    margin: 2rem auto;

}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
}

.findUs {
    background-color: white;
    width: 100%;
    border-radius: 1.5rem;
}

.findUs div {
    padding: 2rem;
}

/* contact */

#contact {
    min-height: 100vh;
}

.conatactContainer {
    max-width: 1080px;
    padding: 2rem;
    margin: 0 auto;
}

.conatactContainer h2 {
    text-align: center;
}

.flexContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

label {
    display: block;
    font-family: "Roboto", sans-serif;
}

form {
    width: 40%;
    padding-right: 1rem;
}


form input {
    padding: .5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
    width: 100%;
    font-family: "Roboto", sans-serif;
}

textarea {
    width: 100%;
    min-height: 200px;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
    font-family: "Roboto", sans-serif;
    padding: 0.5rem;
}

.conatactInfo {
    width: 40%;
}

.conatactInfo h3 {
    margin-bottom: 0;
}

.conatactInfo a {
    margin-top: 1rem;
    text-decoration: none;
    font-family: "Roboto", sans-serif;

}

.conatactInfo a:hover {
    text-decoration: underline;
}

.qualityCheck {
    display: none;
}

button {
    background-color: #DCD7C9;
    padding: 1rem 2rem;
    border: none;
    border-radius: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: black;
    display: block;
    margin: 2rem 0;
}

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

    .navTagsContainer {
        display: none;
    }

    #burgerMenu {
        display: block;
    }

    .heroText h1 {
        font-size: 3rem;
    }

    .photos,
    .story {
        max-width: 100%;
        width: 100%;
        margin-right: 0rem;
    }

    .menuItem {
        width: 100%;
    }

    /* .locationContainer .menuItem {
        background-color: aqua;
    } */

    form {
        width: 100%;
        margin: 2rem 0;
    }

    .flexContainer {
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 700px) {
    .hero{
            background-image: url("./images/heroImageMobile.jpg");
    }
}

/* animations */
@keyframes fade-in {
    0% {
        opacity: 0;
    }


    100% {
        opacity: 1;
    }
}

