 /* Multiple Pages Code Start */
*{
    margin: 0;
    padding: 0;
  }

  body{
    background-image: url('images/background.png');
    min-height: 100vh;
    background-color: #dddad3;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
  }

  .logo{
    font-size: 20px;
    font-weight: bold;
  }

  .logo a{
    color: #683719;
  }

  .logo .fi::before {
    font-size: 30px;
    padding-left: 5px;
    color: #d2c3ba;;
  }

  nav{
    background-color:#e48714;
    box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.1);
  }
  nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  nav li{
    height: 50px;
  }
  nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: Black;
  }
  nav a:hover{
    background-color:#d2c3ba;;
  }
  nav li:first-child{
    margin-right: auto;
  }
 
  .sidebar{
    position: fixed;
    top: 0; 
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: #e1d7d1;
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 1000;
  }
  .sidebar li{
    width: 100%;
  }
  .sidebar a{
    width: 100%;
  }
  .menu-button{
    display: none;
  }

  .copyright-footer{
    font-size: 8px;
    padding: 20px;
    color: #683719;
  }
  /* Multiple Pages Code End */

  /* Main Page Start */
  .highlight-section{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px;
    min-height: 80vh;
  }
  
  .card-container {
    position: relative;
    min-width: 60%;
    max-width: 90%;
  }
  
  .card {
    background-color: #dddad3;
    position: relative;
    box-shadow: 0 0 5px rgba(75, 75, 75, .07);
    z-index: 1;
    display: inline-flex;
    justify-content: center;
  }
  
  .card-body {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    min-width: 50%;
  }
  
  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    font-weight: 300;
    line-height: 50px;
    margin: 10px 0;
    color: #683719;
  }
  
  .card-description {
    font-family: 'Cormorant Garamond', serif;
    color: #878484;
    font-weight: 100;
    line-height: 22px;
    margin: 10px 0;
  }

  .card-description-2 {
    font-family: 'Cormorant Garamond', serif;
    color: #683719;
    font-weight: 100;
    line-height: 22px;
    margin: 10px 0;
    padding-top: 5px;
    font-size: 15px;
  }

  .card-media {
    width: 50%;
    float: right;
  }
  
  .card-shadow {
    background-color: #fff;
    box-shadow: 0 2px 25px 2px rgba(0, 0, 0, 1), 0 2px 50px 2px rgba(0, 0, 0, 1), 0 0 100px 3px rgba(0, 0, 0, .25);
    height: 1px;
    margin: -1px auto 0;
    width: 80%;
    z-index: -1;
  }

  .featured-section{
    min-height: 50vh;
    margin: 10px;
    justify-content: space-around;
    align-items: center;
    display: flex;
    padding: 10px;
    flex-direction: column;
  }

  .featured-section h1{
    font-family: 'Cormorant Garamond', serif;
    color: #683719;
  }

  .food-container{
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
  }

  .food-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px;
    padding: 10px;
  }

  .content{
    min-height: 50px;
  }

  .food-img{
    height: 150px;
  }

  .item-title{
    font-family: 'Cormorant Garamond', serif;
    margin-top: 5px;
    font-size: 1.1em;
    color: #333;
  }
  /* Main Page End */


  /* Menu Page Start */
  .menu-middletext{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-size: 10px;
    text-align: center;
    line-height: 1.5;
  }
  /* Menu Page End */

  /* Locations Page Start */
  .map-container{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-self: center;
    flex-direction: column;
  }

  .map-container h1{
    color: #683719;
    margin-top: 50px;
    margin-bottom: 10px;
  }

  .map-container h2{
    margin-bottom: 50px;
  }

  iframe{
    width: 80%;
    height: 500px;
  }
  /* Locations Page End */


  /* Contacts Page Start */
  .email-text{
    padding-top: 10px;
  }

  .email-text h5{
    font-style: normal;
  }

  .wrapper{
    padding-top: 10px;
  }

  .button{
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #f1f1f1;
    border-radius: 50px;
    line-height: 60px;
    text-align: center;
    box-shadow: opx 10px 10px rgba(0,0,0,0.1);
  }

  .wrapper .button .icon{
    font-size: 30px;
  }

  .wrapper .button:hover{
    width: 100px;
    transition: 0.7s;
  }

  .wrapper .fab{
    color: #962fbf;
  }

  .wrapper .button:nth-child(1):hover .icon{
    color: #E1306C;
  }

  .section-heading {
    padding: 0 0 15px 0;
  }

  .section-heading h3 {
    font-size: 20px;
    font-weight: bold;
    color: #683719;
    letter-spacing: 2px;
    padding-bottom: 10px;
    text-align: center;
  }

  .section-heading h2{
    font-size: 40px;
  }

  hr{
    border: none;
    height: 3px;
    background-color: #683719; 
    margin: 20px 0;
    width: 70%;
  }

  .contact-page a{
    color: #683719;
    text-decoration: none;
    cursor: default;
  }

  .contact-page h5{
    text-decoration: none;
    text-align: center;
  }

  .contact-page p{
    padding-top: 20px;
    text-align: center;
  }

  .contact-page{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }

  .about-middletext h1{
    color: #683719;
  }

  .about-middletext{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 50px;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
    max-width: 70%;
  }

  .developer{
    padding-bottom: 5px;
    color: black;
  }
  /* Contacts Page End */

  
  /* Mobile Device Setup Start */
  @media(max-width: 950px){
      .hideOnMobile{
        display: none;
      }
      .menu-button{
        display: block;
      }

      .middletext{
        font-size: 10px;
      }

      .logo{
        font-size: 15px;
      }

      .logo .fi::before {
        font-size: 20px;
      }

      .food-container{
        display: inline;
      }

      .card-title {
        font-size: 40px;
      }

      .card-description {
        font-size: 10px;
      }

      .card-description-2{
        font-size: 10px;
      }
    
      .sidebar{
        width: 100%;
      }
    }
    /* Mobile Device Setup End */