*{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
}

.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(255, 254, 252); 
  }

  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;
  }

  /*products*/

  .product-heading{
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-left: 30px;
  }

  .product-heading, .h3-2{
    font-size: 1.56rem;
    font-weight: 700;
    color: #202020;
    letter-spacing: 0.5px;
  }

  .pro-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .products{
    width:325px;
    background-color: #ffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    margin: 20px;
    transition: 0.5s ease-in;
  }
  .products:hover{
    transform: scale(1.02);
  }

  .products img{
    width:60%;
    height: auto;
    object-position: center;
    margin-left: 50px;
  }

  .pro-content{
    padding: 16px;
  }

  .pro-content h3{
    font-size: 27px;
    margin-bottom: 8px;
  }

  .pro-content p{
    color: #666;
    font-size: 15px;
    line-height: 1.3;
  } 
  
  .pro-content .button{
    display: block;
    padding: 8px 16px;
    background-color: rgb(219, 247, 219);
    text-decoration: none;
    border-radius: 4px;
    margin-top: 14px;
    color: rgb(5, 81, 11);
    text-align: center;
    transition: 0.5s;
  }

  .pro-content .button:hover{
    background-color: rgb(254, 249, 232);
    color: black;
  }

   /*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: 25%;
    padding: 0 14px;
  }
  
  .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 
    }
    
  
  @media (max-width:574){
    .footer-col{
      width: 100%;
     
    }
  }

  }

.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;
}