* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Style Script", cursive;
  line-height: 1.5;
  background: peru;
}

.title-text {
  font-size: 20px;
  text-align: center;
}

/*=====Navbar======*/
#menu-bar {
  width: 50px;
  height: 10px;
  margin: 50px 10px 10px 20px;
  position: fixed;
  z-index: 1;
  cursor: pointer;
}

.bar {
  background: goldenrod;
  border-radius: 10%;
  transition: 4s;
  float: right;
}

#bar1 {
  width: 40px;
  height: 10px;
  transform: translateY(-4px);
  float: right;
}

#bar2 {
  width: 40px;
  height: 10px;
}
#bar3 {
  width: 40px;
  height: 10px;
  transform: translateY(4px);
}

.change .bar {
  background: rgb(190, 115, 44);
}

.change#bar1 {
  transform: translateY(6px);
  rotate: z(45deg);
}

.change#bar3 {
  transform: translateY(-15px);
  rotate: z(-45deg);
}

.change#bar2 {
  opacity: 0;
}

.nav li a {
  text-decoration: none;
  color: #000;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
  background: chocolate;
  width: 180px;
}

.nav li:hover {
  color: #000;
  background: #000;
  padding-left: 10px;
}

.nav li {
  margin: 20px 10px 10px 20px;
  padding-top: 10px;
  list-style-type: none;
}

.nav {
  display: none;
}

.change-btn {
  display: block;
}

/*=====End Navbar======*/

/*=====Header======*/

.header {
  min-height: 100vh;
  background: linear-gradient(rgb(0, 0, 0, 0.3), rgb(0, 0, 0, 0.4)),
    url("images/menu55.JPG") center/cover no-repeat ;
 

  

}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
}

.hero .title {
  font-family: "#4267b2", 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, monospace;
  font-family: "Style Script", 'Courier New', Courier, monospace;
  font-weight: bolder;
  

  color: #fff;
  font-size: 40px;
}

.hero-button {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 200px;
  font-weight: bold;
  background: orange;
  color: #fff;
  cursor: pointer;
  border: 2px solid orange;
  margin-top: 10px;
}

.hero-button:hover {
  background: #fff;
  color: orange;
  border: none;
}

.pulsate {
  animation: pulsate 3s ease-in-out;
  animation-iteration-count: infinite;
  opacity: 0.3;
  color: black;
}
@keyframes pulsate {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

/*=====Edn of Header======*/

/*=====About======*/
#about {
  padding: 40px;
  background: rgb(44, 43, 43);
}
.about {
  margin: 30px 0;
  display: flex;
}
.about-icon .fa {
  font-size: 60px;
  color: orange;
  margin-right: 20px;
}

.about-icon .fas {
  font-size: 60px;
  color: orange;
  margin-right: 20px;
}

#about .title-text{
  color: #fff;
  font-style: oblique;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 23px;
}

.about-subtitle {
  text-transform: capitalize;
  color: orange;
  font-size: 25px;
  
}

.about-info {
  margin-top: 10px;
  margin-left: 5px;
  line-height: 1.5;
  color: #fff;
  font-style: oblique;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 15px;
}

.about-icon:hover .fa,
.about-subtitle:hover {
  transition: transform 2s ease-in, color 2s ease-in;
  transform: translateY(-10px);
  color: #cd6100;
  cursor: pointer;
}

.about-icon:hover .fas {
  transition: transform 2s ease-in, color 2s ease-in;
  transform: translateY(-10px);
  color: #cd6100;
  cursor: pointer;
}

@media screen and (min-width: 576px) {
  .about-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about {
    flex: 0 0 calc(50% -16px);
  }
}

@media screen and (min-width: 972px) {
  .about {
    flex: 0 0 calc(33.3% - 16px);
  }
}

/*===== End About======*/

/*===== Menu======*/
.menu-image {
  min-height: 80vh;
  background: url("images/jomomenu.jpeg") center/cover no-repeat;
}
.menu-text {
  min-height: 80vh;
  align-items: center;
  background: orange;
  columns: #000;
  padding: 40px 0;
  font-style: oblique;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 15px;
}

.menu-text-center {
  width: 90%;
  margin: 0 auto;
}

.menu-text h1 {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.menu-text p {
  margin: 20px 0;
  line-height: 2;
}

.menu-text a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 200px;
  font-weight: bold;
  background: rgb(10, 10, 10);
  color: orange;
  cursor: pointer;
  border: 2px solid black;
}

.menu-text a:hover {
  color: orange;
  background: white;
  border: none;
}

@media screen and (min-width: 776px) {
  .menu {
    display: flex;
  }
  .menu-text {
    flex: 0 0 30%;
  }

  .menu-image {
    flex: 0 0 70%;
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
  }
  .menu {
    background: orange;
  }
}

/*===== End Menu======*/

/*===== social icons======*/

#social-icons {
  height: 150px;
  background: white;
  text-align: center;
  padding: 50px 0 50px 0;
}
#social-icons a {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 5px;
  font-size: 40px;
  border-radius: 5px;
  transition: transform 2s ease, color 2s ease;
}

#social-icons a:hover {
  transform: translateY(-20px);
}

.facebook {
  color: #3b5998;
}

.phone {
  color: black;
}

.instrgram {
  color: #e1306c;
}

/*===== End social icons======*/

/*=====numbers======*/
.number {
  text-align: center;
  background: linear-gradient(rgb(0, 0, 0, 0.3), rgb(0, 0, 0, 0.4)),
    url("images/dessert.jpg") center/cover no-repeat scroll;
  padding: 60px 0;
  color: #fff;
}

.number p {
  font-size: 30px;
  font-weight: bold;
}

.number:hover {
  color: orange;
}

.number .fas {
  font-size: 60px;
  margin: 20px 0;
}

.number h3 {
  text-transform: uppercase;
}

@media screen and (min-width: 576px) {
  #numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 992px) {
  #numbers {
    grid-template-columns: repeat(4, 1fr);
  }
}
/*===== End numbers======*/

/*===== Card======*/
#food {
  padding: 20px;
}

.food-container {
  max-width: 90vw;
  margin: 0 auto;
}

.food-card {
  position: relative;
  background: linear-gradient(rgba(205, 96, 0, 0.7), (rgba(205, 96, 0, 0.7)));
  margin: 20px 0;
  color: #000;
  overflow: hidden;
  padding: 3px;
  border-radius: 16px;
  border: 1px solid orange;
  box-shadow: 2px 3px 1px 1px #cd6100;
}

#food-img {
  width: 100%;
  min-height: 100%;
  display: block;
  transition: transform 4s;
}

.img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: opacity 4s;
}

.img-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px;
  font-size: 20px;
  opacity: 0;
  color: #000;
  transition: opacity 4s;
}

.img-text h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

.food-card:hover img {
  opacity: 0.4;
  transform: scale(1.3);
}

.food-card:hover .img-text,
.food-card:hover .img-footer {
  opacity: 1;
}

.food-btn {
  display: inline-block;
  background: #000;
  text-decoration: none;
  text-transform: capitalize;
  padding: 12px 32px;
  color: #fff;
  font-weight: bold;
  border-radius: 180px;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  outline: none;
}

.food-btn:hover {
  color: orange;
  background: #fff;
  border: #000;
  outline: none;
}

.fas {
  font-size: 30px;
}

@media screen and (min-width: 576px) {
  .food-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
  }
}

@media screen and (min-width: 992px) {
  .food-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 16px;
  }
}

/*===== End Card======*/

/*===== gallery======*/

.gallery p {
  color: orange;
  font-size: 30px;
}

#gally {
  text-align: center;
  background: rgb(44, 43, 43);
  padding: 60px 0;
  color: #fff;
}

.gallery-pic {
  max-width: 100%;
  height: 50px;
}

.gallery img {
  padding-top: 2%;
  width: 200px;
  height: auto;
  padding: 5px;
  filter: grayscale(50%);
  transition: 1s;
  border: 2px solid orange;
  margin-top: 3px;
  
  
}

.gallery img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
  border: 2px solid orange;
  
}

.gallery-row {
  padding-top: 5px;
  font-size: 100px;
  color: orange;
  font-style: oblique;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.gallery-row .data-lightbox {
  background-color: transparent;
}

.gallery-row h2 {
  font-size: 50px;
  background: rgb(75, 73, 73);
}
/*===== End gallery======*/

/*===== Catering======*/

#cateringview {
  background: linear-gradient(rgb(0, 0, 0, 0.3), rgb(0, 0, 0, 0.4)),
    url("images/mamiflavourslogo.jpeg") ;
  padding-bottom: 50px;
}

#cateringview .caterheading {
  text-align: center;
  color: orange;
  padding-top: 45px;
  font-size: 30px;
  font-weight: bold;
  font-style: oblique;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

#cateringview .about-info {
  text-align: center;
  color: orange;
  padding-top: 15px;
  font-size: 15px;
  background: rgb(75, 73, 73);
  font-style: oblique;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

#cateringview .title {
  color: orange;
}

#cateringview .vid {
  padding-left: 30px;
  border-bottom: 1px dashed orange;
  
}

@media screen and (min-width: 576px) {
  .cateringview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
  }
}

@media screen and (min-width: 992px) {
  .cateringview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 16px;
  }
}
/*=====End Catering======*/

/*===== Footer-bottom======*/
.footer-bottom {
  width: 100%;
  height: auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: black;
  background-color: gray;
  text-align: center;
}
.footer-bottom > p {
  margin-top: 2px;
}

/*Start abouther*/
#social-icons {
  padding-top: 0px;
  font-style: oblique;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 25px;
}
.abouther {
  margin-bottom: 5rem;
  background-color: orange;
}

.abouther .container1 {
  display: flex;
  align-items: center;
  justify-content: right;
}

.abouther .container1 .img {
  border-radius: 50%;
}

.abouther-heading {
  text-align: center;
  text-transform: uppercase;
  line-height: 0;
  margin-bottom: 3rem;
}

.abouther-heading h1 {
  font-size: 10rem;
  opacity: 0.3;
  font-style: oblique;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.abouther-heading h6 {
  font-size: 2rem;
  font-weight: 300;
  color: rgb(64, 11, 88);
  font-style: oblique;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.profile-img1 {
  flex: 1;
  margin-right: 5rem;
}

.abouther img {
  border-radius: 50%;
}

.abouther-details {
  flex: 1;
  font-style: oblique;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.social-media {
  margin-top: 5rem;
}

.social-media i {
  font-size: 3rem;
  transition: color 650ms;
}

.facebook:hover {
  color: #4267b2;
}

.whatsapp:hover {
  color: green;
}

.instagram:hover {
  color: #ea4c89;
}

.container1 {
  width: 90%;
  max-width: 120rem;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.abouther .container1 {
  display: flex;
  align-items: center;
  justify-content: right;
}

.abouther .container1 {
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  body {
    background-size: cover;
  }
}

.abouther-heading h1 {
  font-size: 8rem;
}

.abouther-details li {
  margin: 0 2rem;
}

@media screen and (max-width: 600px) {
  .profile-img1 {
    margin: 4rem 7rem 5rem;
  }
}

/*End abouther*/

/*===== Menumain======*/

.menu-text {
  min-height: 80vh;
  align-items: center;
  background: orange;
  columns: #000;
  padding: 40px 0;
}

.menu-text-center {
  width: 90%;
  margin: 0 auto;
}

.menu-text h1 {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.menu-text p {
  margin: 20px 0;
  line-height: 2;
}

.menu-text a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 200px;
  font-weight: bold;
  background: rgb(10, 10, 10);
  color: orange;
  cursor: pointer;
  border: 2px solid black;
}

.menu-text a:hover {
  color: orange;
  background: white;
  border: none;
}

@media screen and (min-width: 776px) {
  .menu {
    display: flex;
  }
  .menu-text {
    flex: 0 0 30%;
  }

  .menu-image {
    flex: 0 0 70%;
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
  }
  .menu {
    background: orange;
  }
}

/*===== End Menu======*/

/*===== contact tab======*/
/*Start contact*/
#contact {
  background: linear-gradient(rgb(0, 0, 0, 0.3), rgb(0, 0, 0, 0.4)),
    url("images/mamiflavourslogo.jpeg") center/cover no-repeat fixed;
  padding-bottom: 35px;
}
.contact-area h2,
.contact-area p,
.contact-area h3 {
  color: #fff;
}
.contact {
  margin-top: 5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

form {
  width: 70%;
  margin: 0 auto;
}

form label {
  font-size: 1.5rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 5px;
  outline-color: orange;
}

input[type="submit"] {
  width: initial;
  background-color: orange;
  color: black;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: background-color 65ms;
}

input[type="submit"]:hover {
  background-color: olivedrab;
  transition: ease-in-out 0.5s;
}

.section-heading {
  text-align: center;
}

div.success {
  margin-top: 20px;
  display: none;
  border-radius: 30px;
  background-color: green;
  color: #f8fdff;
}

#social-iconscat {
  padding-top: 0px;
  padding-bottom: 0px;
}
#social-iconscat {
  height: 150px;
  background: white;
  text-align: center;
  padding: 50px 0 50px 0;
}
#social-iconscat a {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 5px;
  font-size: 40px;
  border-radius: 5px;
  transition: transform 2s ease, color 2s ease;
}

#social-iconscat a:hover {
  transform: translateY(-20px);
}
#social-iconscat {
  padding-top: 0px;
  padding-bottom: 0px;
}
#social-iconscat {
  height: 150px;
  background: white;
  text-align: center;
  padding: 50px 0 50px 0;
}
#social-iconscat a {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 5px;
  font-size: 40px;
  border-radius: 5px;
  transition: transform 2s ease, color 2s ease;
}

#social-iconscat a:hover {
  transform: translateY(-20px);
}
/*=====End contact tab======*/
#social-iconscont {
  padding-top: 0px;
  padding-bottom: 0px;
}
#social-iconscont {
  height: 150px;
  background: white;
  text-align: center;
  padding: 50px 0 50px 0;
}
#social-iconscont a {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 5px;
  font-size: 40px;
  border-radius: 5px;
  transition: transform 2s ease, color 2s ease;
}

#social-iconscont a:hover {
  transform: translateY(-20px);
}
#social-iconscont {
  padding-top: 0px;
  padding-bottom: 0px;
}
#social-iconscont {
  height: 150px;
  background: white;
  text-align: center;
  padding: 50px 0 50px 0;
}
#social-iconscont a {
  display: inline-block;
  padding: 5px 10px;
  margin: 0 5px;
  font-size: 40px;
  border-radius: 5px;
  transition: transform 2s ease, color 2s ease;
}

#social-iconscont a:hover {
  transform: translateY(-20px);
}

/*==
