*{
    margin:0;
    padding:0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(246, 241, 229);
    padding: 15px;
    
  }
  
  .logo {
    font-size: 0; /
  }
  
  .logo img {
    max-height: 100px; 
  }
  
  .nav-links {
    display: flex;
    list-style-type: none;
    padding: 0;
  }
  
  .nav-item {
    margin-right: 20px;
  }
  
  .nav-link {
    text-decoration:none;
    color: black;
    transition: color 0.3s ease;
    font-weight: 500;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font: bold;

  }
  
  .nav-link:hover {
    color: rgb(156, 230, 156);
  }
  
  .search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px solid lightgray;
    padding: 5px;
    border-radius: 200x;
  }
  
  .search-bar input[type="text"] {
    border: none;
    outline: none;
    padding: 5px;
    font-size: 14px;
  }

  /* Cart Icon */
.cart-icon {
  margin-left: 10px; 
}

.cart-img {
  max-height: 40px; 
  transition:1.0s ease-in-out;
}

.cart-img:hover {
  transform: scale(1.1);
}

  /*Main Image*/

  .main-col{
    flex-basis: 32%;
    margin-bottom: 1px;
    position: relative;
    overflow: hidden;
  }
  
  .main-col img{
    width: 100%;
    height: 75vh;
    display: block;
  }
  
  .layer{
    background: transparent;
    height: 75vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1.0s;
  }
  
  .layer:hover{
    background:rgba(94, 93, 91, 0.7) ;
  }
  
  .layer h3 {
    font-size: 50px;
    text-align: center;
    width: 100%;
    font-weight: 500;
    color: #f8f3ec;
    font-style: 26px;
    font-family: arial black;
    bottom: 0;
    left:0%;
    transform: translateX(-0%);
    position: absolute;
    opacity: 0;
    transition: 1.0s;
  }
  
  .layer:hover h3{
    bottom: 45%;
    opacity: 1 ;
  }

    /* intro */
    .intro{
      width: 100%;
      margin: auto;
      text-align: center;
      padding-top: 50px;
      background-color:rgb(253, 249, 241); 
    }
  
    h1{
      font-size: 30px;
      font-weight: 550;
      font-style: italic;
      color: #52392F;
      transition: 0.6s;
    }
  
    p{
      color:black;
      font-size: 16px;
      font-weight: 500;
      line-height: 22px;
      padding:10px;
      transition: 0.5s;
      font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    }
    p:hover{
      color:green;
    }
  
    hr{
      border: none; 
      border-top: 2px solid black; 
      margin: 10px 0;
    }
  
    .h3-2{
      text-align: left;
      font-family: Arial, Helvetica, sans-serif;
      font-style: bold;
      font-size: 22px;
    }

    /*Venues*/

    .venue{
      width: 85%;
      margin: 50px auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 25px;
    }

    .venue-cont{
      background-color: #fcf6f0;
      box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);
      transition: 0.4s ease-in;
    
    }

    .venue-cont:hover{
      transform: scaleX(1.02);
      
    }

    .img-sec{
      height: 225px;
      background-color: #ac9a89;
    }

    .venue-cont .img1{
      background-image: url(../Images/dole.jpg);
      background-size: cover;
      background-position: center;
    }
    .venue-cont .img2{
      background-image: url(../Images/yas.jpg);
      background-size: cover;
      background-position: center;
    }
    .venue-cont .img3{
      background-image: url(../Images/tropikal.jpg);
      background-size: cover;
      background-position: center;
    }
    /*products*/

    #popular-product{
      display: grid;
      grid-template-columns: column;
      max-width: 1000px;
      margin: 50px auto;
    }
  
    .product-heading{
      justify-content: space-between;
      align-items: center;
    }
  
    .product-heading, .h3-2{
      font-size: 1.56rem;
      font-weight: 700;
      color: #202020;
      letter-spacing: 0.5px;
    }
  
  
    #popular-product{
      margin: 80px auto;
    }
  
    .product-container{
      display: grid;
      grid-template-columns: 1fr 1fr 1fr ;
      grid-gap: 30px;
      margin: 40px 0;
    }
  
    .product-box{
      width: 90%;
      border: 1px solid #eeeeee;
      background-color: #ffffff;
      padding:20px;
      border-radius: 20px;
      display: grid;
      grid-template-columns: column;
      position: relative;
      transition: 0.5s ease-in;
      }

      .product-box:hover{
        transform: scale(1.02);
      }
  
    .product-box img{
      width: 90%;
      height: 180px;
      object-fit: contain;
      object-position: center;
      margin: auto;
    }
  
    .product-box b{
      color: #202020;
      font-size: 1.1rem;
      letter-spacing: 1px;
      font-weight: 600;
      margin-top: 10px;
      text-align: left;
    }
  
    .product-box .quantity{
      color: #393838;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-align: left;
    }
  
    .product-box .price{
      margin-top: 10px;
      font-size: 1.4rem;
      font-weight: 600;
      color: #393939;
      text-align: left;
    }
  
    .product-box .cart-button {
      width: 100%;
      height: 40px;
      background-color: #e5f9e9;
      color: #05380c;
      display: grid;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
      text-decoration: none;
      transition: 0.5s;
    }
  
    .product-box .cart-button:hover{
      background-color: #faf9e4;
      color: #fff;
      transition: 0.5s;
    }
    
    .p{
      color:#052d0b;
    }

    /*footer styling*/

   .container1{
    max-width: 1100px;
    margin: auto;
  }
  
  .row1{
    display: flex;
    flex-wrap: wrap;
  }
  
  .list{
    list-style: none;
  }
  
  .footer{
    background-color: #ac9a89;
    padding: 60px 0;
  }
  
  .footer-col{
    width: 22%;
    padding: 0 14px;
    text-align: left;
  }
  
  .footer-col h4{
    font-size: 18px;
    color: #412206;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
  }
  
  .footer-col h4::before{
    content: '';
    position: absolute;
    left: 0px;
    bottom: -10px;
    background-color: rgb(89, 46, 9);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }
  
  .footer-col ul li{
    margin-bottom: 10px;
  }
  
  .footer-col ul li a{
    font-size: 16px;
    font-weight: 300;
    color: #311c01;
    text-decoration: none;
    display: block;
    transition: all 0.5s ease;
  }
  
  .footer-col ul li a:hover{
    color: rgb(33, 119, 38);
    padding-left: 8px;
  }
  
  .footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(19, 18, 18, 0.2);
    margin:0 10px 10px 0;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color:#fff;
    transition: all 0.5s ease;
  }
  
  .footer-col .social-links a:hover{
    color: #acf096;
    background-color: #000;
  }

  @media(max-width:930px){
    html, body {
    overflow-x: hidden;
    }
    .navbar {
      flex-direction: column;
      width: 100%;
    }
  
    .nav-links {
      flex-direction: column;
      align-items: center;
    }
  
    .nav-item {
      margin-right: 0;
      margin-bottom: 10px;
    }
  
    .search-bar {
      width: 100%;
    }
    .main-col img{
      width: 100%;
      height: 45vh;
      display: block;
    }
    
    .layer{
      height: 45vh;
      width: 100%;
    }
    .layer h3 {
      font-size: 30px;
    }

    .footer-col{
      width: 50%;
      margin-bottom:30px 
    }

    .venue{
      margin: 20px auto;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
    }

    .product-container{
      display: grid;
      grid-template-columns: 1fr ;
    }
 
    .product-box{
      width: 70%;
      margin-left: 10%;
      }
  }

  .dropdown-menu {
    list-style-type: none;
    display: none;
    position: absolute;
    background-color: rgb(246, 241, 229);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-item:hover{  
    color: #acf096;
  }