/* font-awesome styling */
i{
    margin-left: 15px;
    cursor: pointer;
  }
  

  /* customizing nav-bar */
  .navbar{
      background-color: white;
    }
    .navbar a{
      color:grey;
      font-size:smaller;
    }
  
    .navbar-toggler-icon{
      background-image:url('../images/toggle.jpg');
      }
    .dropdown-menu a{
      color:black;
    }



    /* section-1 styling */
    #section-1{
    background-image: url('../images/menu-1.jpg');
  height: 450px; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
    }
    #section-1 div{
        text-align:center;
        color:white;
        font-weight: bold;
        font-size: x-large;
        padding-top:15vh;
        text-decoration: underline;
    }
  



  /* section-2 styling */
  #section-2{
      margin:100px 0;   
      display:flex;
      align-items: flex-start;
      justify-content: space-around;
      letter-spacing: 2px;
      flex-wrap: wrap;
  }
  .menu{
      text-align: center;
      border:1px solid grey;
      padding:60px;
      border-radius:3px 3px 3px 3px;
  }
  #menu1{
      background:#feffeb;
  }
  #menu2{
    background:#efefef;
  }
  .menu{
      margin:8px;
  }
  .menu-det p{
font-size: 14px;
color:grey;
  }
  
  

  /* footer styling */
  footer{
    font-size: small;
    background:rgb(51, 48, 48);
    text-align: center;
    color:white;
    padding:50px;
  }
  footer #footer-part-1{
  padding:10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  }
  footer #back-to-top{
    border:4px solid black;
    border-radius: 5px 5px 5px 5px;;
    width:100px;
  }
  footer #back-to-top a{
    color:gray;
    text-decoration: none;
  }
  footer #back-to-top a:hover{
    color:white;
  }
   
  


  /* responsive design code */
    @media only screen and (max-width: 700px) {
     
    footer #footer-part-1{
      flex-direction: column;
      align-items: flex-start;
    }
    #reserve-img{
      width:100%;
      text-align: center;
  }
  footer i{
    margin:2px;
  }
  }