@import url("https://fonts.googleapis.com/css2?family=Ek+Mukta:wght@400;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
   background-color: #FFFFFF;
   color: white;
   font-family: Arial, Helvetica, sans-serif;
   line-height: 1.3em;
   font-size: calc(15px + 0.390625vw);
}

h2 {
   font-family: 'Ek Mukka', sans-serif;
}

a {
   text-decoration: none;
   color: #ffa000;
}

.navbar {
   position: relative;
   z-index: 100;
}

header a {
  text-decoration: none;
}

header {
   padding: 0 20px;
   height: 100px;
   justify-content: space-between;
   background-color: #333333;
   display: flex;
   color: #FFFFFF;
}

header img {
   margin: 10px;
}

#menu ul {
   padding: 30 0px;
   list-style: none;
   height: 100%;
   display: flex;
   align-items: left;
   justify-content: space-around;
   font-family: 'Ek Mukta', sans-serif;
}

#menu ul a {
   color: white;
}

#menu ul a:hover {
   color: #ffa000;
}

#menu ul li {
  padding: 5px;
  margin-left: 10px;
}

#menu ul li:hover {
   transform: scale(1.02);
   transition: 0.3s;
   color: #ffa000;
}

#hamburger-icon {
  margin: auto 0;
  cursor: pointer;
  display: none;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
  display: flex;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-menu {
   display: none;
   background-color: #333333;
   position: absolute;
   top: 100px;
   left: 0;
   width: 100%;
   height: calc(100vh - 100px);
   list-style: none;
   text-align: center;
   z-index: 100;
}

.mobile-menu a {
   color: #FFFFFF;
}

.mobile-menu li {
   margin-bottom: 10px;
   width: 100%;
}

.m-subnav {
   width: 100%;
   text-align: center;
}

.m-subnav-content {
   display: none;
   width: 100%;
   text-align: center;
   line-height: 2em;
}

.m-subnav:hover .m-subnav-content {
   display: flex;
   flex-direction: column;
}

.subnav-content {
   background-color: #333333;
   padding: 20px 10 ;
   display: none;
   width: 100%;
}

.subnav-content a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 0;
    margin: 5px 0;
}

.subnav:hover .subnav-content {
    display: flex;
    flex-direction: column;
}

.section {
   position: relative;
}

.text-container {
   position: absolute;
   top: 5%;
   left: 5%;
   color: #FFFFFF;
   width: 50%;
   line-height: 1.4em;
   text-shadow: 2px 2px 5px grey;
}

.text-container ul {
   padding-left: 30px;
}

.text-container li {
   margin: 20px 0px;
}

.doublebox {
   display: flex;
   color: #000000;
   width: auto;
   flex-direction: row;
}

.sidebyside {
   width: 50%;
   margin: 1em;
   padding: 2.5em 1em 1em 1em;
   background-color: #F9E79F;
   background-image: url("../images/honeycomb_outline.png");
   background-repeat: no-repeat;
}

.sidebyside p {
   margin-bottom: 1.3em;
   margin-top: 1.3em;
}

.sidebyside2 {
   margin: 1em;
   width: 50%;
}

.sidebyside2 li {
   margin-left: 1.2em;
}

.sidebyside2 p {
   margin-bottom: 1.3em;
   margin-top: 1.3em;
}

.sidebyside3 {
   background-image: url("../images/eggs.jpg");
   background-color: rgba(255, 255, 255, 0.6);
   background-blend-mode: overlay;
   margin: 1em;
   width: 50%;
   color: #000000;
   padding: 1em; 
}

.sidebyside3 li {
   margin-left: 1.2em;
}

.calendarbox {
   width: 100%;
   margin: 1em;
   padding: 2.5em 1em 1em 1em;
   background-color: #F9E79F;
   background-image: url("../images/honeycomb_outline.png");
   background-repeat: repeat-x;
   color: #000000;
}

.calendarbox p {
   margin-bottom: 1.3em;
   margin-top: 1.3em;
}

.calendarbox li {
   margin-left: 2em;
}


.fullwidth {
   color: #000000;
   margin: 1em;
   padding: 1em;
}

.fullwidth p {
   margin-bottom: 1.3em;
   margin-top: 1.3em;
}

.fullwidth h2 {
   color: #000000;
}

.photos {
   display: flex;
   flex-wrap: wrap;
   color: #000000;
   margin: 1em;
   padding: 1em;
}

.photos img {
   margin: 0.5em;
}

.button {
   color: #FFFFFF;
   width: auto;
   padding: 8px;
   line-height: 1.5em;
}

.button span {
   background-color: #D68910;
   padding: 8px;
}

.button a {
   color: #FFFFFF;
}

.button a:hover {
   color: #000000;
}

#footer {
   background-color: #333333;
   color: #FFFFFF;
   padding: 15px;
   font-size: calc(11px + 0.390625vw);
   display: flex;
   justify-content: space-between;
}

#footer a:hover {
   color: #FFFFFF;
}

@media only screen and (max-width: 700px) {
   header nav {
     display: none;
   }

   #hamburger-icon {
     display: block;
     margin-left: auto;
   } 

   .text-container {
      width: auto;
      margin: 1em;
      line-height: 1.2em;
   }

   .text-container h2 {
      line-height: 1.3em;
   }

   .text-container li {
      margin: 0px;
   }
   
   .doublebox {
      flex-direction: column;
   }
   .sidebyside {
      width: auto;
   }
   .sidebyside2 {
      width: auto;
   }

   .sidebyside3 {
      width: auto;
   }

   .fb-page {
      data-width=200px;
   }
}
