/*Global setting for all element*/
/*Default web layout*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/*Body setting*/
body {
    font-family: Helvetica, sans-serif;
    font-size: 22px;
    background-color: #000000;
    color: seashell;
    opacity: 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: scroll;
}


/*Header setting*/
/*all in header part*/
header {
    width: 100%;
    height: 69px;
    border-bottom: solid 1px seashell;
    position: sticky;
    top: 0;
    background-color: #000000;
    z-index: 1000;
    display: flex;
    justify-content: space-between; 
}
/*logo part*/
header section.logo {
    display: flex;
    align-items: center;
    position: relative;
    left: 10px;
}
/*navigation bar part*/
header .navigation {
    display: flex;
    align-items: center;
    position: relative;
    right: 10px;
}
header .navigation li {
    display: inline;
    margin-left: 10px;
}
header .navigation li a {
    color: seashell;
}
/*hover nav change color*/
header .navigation li a:hover {
    color:aqua;
    font-weight: bold;
    text-decoration: none;
}


/*Main setting*/
/*main all setting*/
main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
/**mission part*/
main .mission {
    width: 1200px;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
/*mission background setting*/
main .mission img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 800;
}
/*mission artcle setting*/
main .mission article {
    width: 100%;
    padding: 20px;
    background-position: center;
    background-color: #000000;
    background-size: 1200px;
    z-index: 900;
    text-align: center;
}
main .mission h2 {
    margin-bottom: 20px;
}
/*feature-tea part*/
main .featured-tea {
    width: 1000px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin: 80px 0;
}
main .featured-tea h2 {
    margin-bottom: 20px;
}
main .tea-of-month {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}
main .tea-of-month figure img {
    width: 300px;
    height: 200px;
    margin: 10px;
}
main .tea-of-month figcaption {
    text-align: center;
    font-weight: bold;
    margin: 10px 0;
}
/*location part*/
main .locations {
    width: 1200px;
    height: 500px;
    background-image: url("resources/img-teacup.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
main .location-map {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
/*each location position setting*/
main .location-map aside {
    width: 300px;
    background-color: black;
    margin-top: 15px;
    margin-right: 40px;
    margin-bottom: 30px;
    padding: 5px 10px;
    line-height: 3;
}

/*Footer part*/
footer {
    width: 100%;
}
footer .footer-header {
    height: 200px;
    margin-top: 15px;
    margin-bottom: 80px;
    text-align: center;
}
footer .footer-header h5 {
    margin-top: 30px;
    line-height: 4;
}
footer .footer-copy {
    width: 100%;
    position: relative;
    left: 20px;
    display: flex;
    justify-content: flex-start;
}

