/* global Style Rules */

body {
    color: black;
    font-family: "Montserrat", sans-serif;
}

/* header */

header {
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #333333;
    color: #8f612d;
    font-weight: bold;
}

.logo {
    height: auto;
    width: 11em;
}

header h1 {
    font-size: 3em;
}

/* dropdown btn */

.dropdown {
    position: relative;
    display: inline-block;
    width: 11em;
}

.dropbtn {
    background-color: #333;
    color: #99602a;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 3em;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #555;
}

/* hero section */

.hero {
    background-image: url(../images/OIP.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3em;
    height: 70vh;
    margin-top: .5em;
}

.hero h1 {
    font-size: 4em;
    font-weight: 1000;
    margin: 1.7em 0 0 1.5em;
    color: #8f612d;
}

/* weekly menu section */

.weekly_menu {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #fff;
}

.weekly_menu h1 {
    font-size: 4em;
}

/* img carousel */

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: 2em auto 0em auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #99602a;
    font-weight: bold;
    font-size: 26px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "prev button" to the left */
.prev {
    left: 0;
    border-radius: 3px 0 0 3px;

}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: black;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #8f612d;
    background-color: rgba(128, 128, 128, 0.5);
    font-size: 18px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


/* weekly menu section continued */

.weekly_menu .btn {
    text-decoration: none;
    color: #8f612d;
    font-weight: 700;
    font-size: 2em;
    margin: 1em auto 0 auto;
    border: 1px solid black;
    border-radius: 5px;
    padding: 0 .75em;
}

.weekly_menu .btn:hover {
    border: 2px solid #8f612d;
}

.weekly_menu h1 {
    font-size: 4em;
}

.weekly_menu p {
    font-size: 2em;
    margin-bottom: 3em;
}


/* who are we section */

.who-container {
    display: flex;
}

.who-container h1 {
    text-align: left;
    border-bottom: .75px solid #8f612d;
}

.who-container p {
    font-weight: 400;
}

.about {
    padding: 0 4em 0 7em;
}

.catalyst {
    padding: 0 7em 0 4em;
}


/* footer */

footer {
    background-color: #333;
    color: white;
    text-align: center;
}

footer a {
    text-decoration: none;
    color: white;
}

footer ul {
    list-style-type: none;
    padding: 0;
}

footer i {
    font-size: 3em;
    margin: 0 auto;
}