/*! Fonts */

@font-face {
    font-family: 'script';
    src: url('../fonts/regular_brush/webfontkit-20241118-134301/regular_brush-webfont.woff2') format('woff2'),
         url('../fonts/regular_brush/webfontkit-20241118-134301/regular_brush-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  
  }
  
  @font-face {
    font-family: 'afacad';
    src: url('../fonts/Afacad_Flux/transfonter.org-20241202-183111/AfacadFlux-ExtraBold.woff2') format('woff2'),
        url('../fonts/Afacad_Flux/transfonter.org-20241202-183111/AfacadFlux-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'medium';
    src: url('../fonts/Avenir/webfontkit-20241118-133501/avenirltstd_medium-webfont.woff2') format('woff2'),
         url('../fonts/Avenir/webfontkit-20241118-133501/avenirltstd_medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  
  }
  
  @font-face {
    font-family: 'bold';
    src: url('../fonts/Avenir/webfontkit-20241118-133501/avenirltstd_black-webfont.woff2') format('woff2'),
         url('../fonts/Avenir/webfontkit-20241118-133501/avenirltstd_black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  
  }
  * {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    padding: 0;
  }

  .gallery img {
    width: 20%;
    height: auto;
    margin-right: 10px;
  }
  
  .gallery {
    padding-top: 10%;
    text-align: center;
  }

  /*! Header */
  
  header {
    background-color: #3e512e;
    width: 100%;
    padding-top: 200px;
    position: relative;
  }
  
  a:link {
    color: white;
    text-decoration: none;
  }
  
  a:visited {
    color: white;
    text-decoration: none;
  }
  
  a:active {
    color: white;
    text-decoration: none;
  }
  
  button {
    border: none;
  }
  .menuBtn {
    cursor: pointer;
    appearance: none;
    background-color: inherit;
    position: absolute;
    top: 3rem;
    right: 3rem;
    margin-bottom: 10%;
    width: 100px;
  }

  
  .topmenu {
    background-color: #59ab45;
  }
  .topmenu div {
    display: grid;
    grid-column: auto;
    grid-row: 1fr;
    font-family: 'bold';
    color: white;
    font-size: 1.2rem;
    padding-inline: 1%;
    padding-block: .5em;
    grid-template-columns: 1fr 1fr 1fr 1fr 15% 1fr 1fr 1fr 1fr;
    text-align: center;
  }
  .logo {
    width:100%;
    position: relative;
    overflow: visible;
  }
  .topmenu h1 {
    position: absolute;
    margin:0;
    background-image: url(../links/logo.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width:100%;
    color: transparent;
    aspect-ratio: 1 / 1;
    top:10%;
    transform: translateY(-50%);
    left:0;
  }

  .mlogo {
    width: 22%;
    top: 100%;
    position: absolute;
    overflow: visible;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
  }

  .mlogo h1 {
    position: absolute;
    margin:0;
    background-image: url(../links/logo.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width:100%;
    color: transparent;
    aspect-ratio: 1 / 1;
    top:10%;
    transform: translateY(-50%);
    left:0;
  }

  h2 {
    font-family: 'script';
    font-size: 6rem;
    color: #3e512e;
    text-align: center;
  }
  
  h3 {
    font-family: 'afacad';
    font-size: 10rem;
    text-align: center;
    line-height: 8rem;
    color:#59ab45;
    margin-top: -7rem;
  }


  /*! Items */

.items {
  width: 90%;
  margin: auto;
  }

.items h1 {
    font-family: 'afacad';
    font-size: 6rem;
    color: #662317;
    text-align: center;
}

.items .appetizers h1 {
    margin-bottom: 5%;
    margin-top: 10%;
}

.items h2 {
    font-family: 'bold';
    color: black;
    font-size: 1.5rem;
    text-align: left;
}

.items p {
    font-family: 'medium';
    color: black;
    font-size: 1rem;
}

.items ol {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    gap: 4%;
}

.items li {
  flex: 1 1 46%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.items li p, .items li h2 {
  margin-bottom: 0;
}

.items li h2 {
  width: fit-content;
}

.items li p h2+p {
  display: inline-block;
  text-align: right;
  width: fit-content;
}

.items li p+p {
  width: 100%;
}


  /*! Footer */

footer {
    display: flex;
    flex-flow: row wrap;
    background-color: #e6dcc9;
    margin-top: 200px;
    padding-block: 3% 5%;
  }
  
  form {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
  }

  footer legend {
    color: black;
    font-size: 5rem;
    text-align: left;
    font-family: 'afacad';
    line-height: 4.2rem;
    width: fit-content;
  }

  footer span {
    display: block;
  }
  
  form div {
    width: calc(70% - 6rem);
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    gap: 20px;
  }
  
  form .full-name {
    width: calc(50% - 10px);
    padding-block: .2em;
    margin-top: 2rem;
  }
  
  form .email {
    width: calc(50% - 10px);
    padding-block: .2em;
    margin-top: 2rem;
  }
  
  form .message {
    padding-block: 2em;
    width: 100%;
  }

  /*! Media */


  .mlogo {
  display: none;
  }

  .slicknav_menu {
    display:none;
  }

  @media screen and (max-width: 830px) {

    .items h1 {
      font-size: 5rem;
    }

    .topmenu .snav{
      display:none;
    }
    
    .slicknav_menu {
      display:block;
    }

    .mlogo {
      display: block;
      }
  
    header {
      padding-top: 12%;

    }
  
    .logo h1 {
      display: none;
    }

    .items li {
      flex: 100%;
    }

    .gallery {
      padding-top: 20%;
    }

    form {
      width: 100%;
      flex-flow: column wrap;
    }
    
    footer span {
    display: inline;
    }
    
    
    form div {
      width: 100%;
    }
    
  
    input[type="submit"] {
      margin: auto;
    } 
  }

  @media screen and (max-width: 1280px) {

    .topmenu div {
      font-size: 1rem;
    }
  }