@charset "utf-8";
/* CSS Document */


/* Table of Contents
=================================

    1. Styling text
    2. Navigation
    3. Hero Image
    4. Menu Gallery Nav
    5. Flip Box / Menu
    6. Footer
    7. Responsive Styles

================================

*/

/* -------- Styling text -------- */

h2, h3, h4 {
    font-family: Poppins, sans-serif;
}

h1 {
    font-family: "Encode Sans", sans-serif;
    font-size: 70px;
    text-align: center;
}


h2 {
    text-transform: uppercase;
    font-size: 50px;
}

h3 {
    font-weight: 600;
    text-align: center;
    font-size: 40px;

}

h4 {
    font-weight: 700;
    font-size: 20px;
    color: #53DB50;
}

body {
    font-family: "Poppins";
    margin: 0;
}
.header {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

/* -------- Navigation -------- */

.logo {
    width: 150px;
    padding: 10px 20px;
}
.nav {
    padding: 10px 20px;
    display: flex;
}
.nav ul {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.nav ul li {
    padding: 0 20px;
    list-style-type: none;
}
.nav a {
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 32px;
}
.nav a:hover {
    color: #FF8E00;
}

/* -------- Hero Image -------- */

.hero-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/hero-image.jpg);
    height: 100vh;
}

.hero-text {
    color: #FFFFFF;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 100%;
}
.arrows {
    height: 80px;
}

/* -------- Menu Gallery Nav -------- */

#main-menu {
    text-align: center;
}

.gallery {
    display: flex;
    justify-content: center;
}

.gallery div {
    width: 480px;
    position: relative;

}

.gallery div img {
    height: auto;
    width: 100%;
}
.gallery div img:hover  {
    height: auto;
    width: 100%;
    filter: blur(3px);
}

.gallery div h3 {
    position: absolute;
    bottom: 42%;
    color: #FFFFFF;
    width: 100%;
}

/* Main Menu Gallery & Sides List */

.menu-gallery {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: auto auto auto auto;
    justify-content: center;
}

.sides {
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 55px;
    width: 300px;
}
.sides li {
    list-style-image: url(../images/leaf.png);
    padding: 5px 0;
}


/* -------- Flip Card / Menu -------- */

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
  margin: 10px auto;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 280px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #eee;
    border-radius: 25px;
}

.flip-card-front img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.flip-card-back {
    background-color: #FFFFFF;
    width: 300px;
    color: #000000;
    border-radius: 25px;
    transform: rotateY(180deg);
    padding: 10px 5px;
}

/* -------- Footer -------- */

footer {
    display: flex;
    flex-wrap: wrap-reverse;
    background-color: #159E31;
}

.contact_us {
    margin-left: 32px;
    color: #FFFFFF;
}
.menu li a:hover {
    color: #E7B142;
}
#menu-btn {
    display: none;
}
button {
    border-radius: 25px;
    padding: 10px 20px;
    background-color: #E7B142;
    font-weight: 700;
    font-size: 20px;
    border: none;
    color: #FFFFFF;
}




/* -------- Responsive Styles -------- */

@media (max-width: 800px){

.gallery {
    flex-wrap: wrap;
}
footer  {
    justify-content: center;

}
.contact_us {
    margin: 0px;
}
.nav   , .nav ul, .logo{
    flex-direction: column;
    padding: 0px;
    text-align: center;
}
.menu-gallery {
    display: flex;
    flex-direction: column;
}


}
