*{
    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: 60px;
  }
  
  .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);
  }

  /* 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);
}


  /*intro*/

  .order{
    background-color: #fdf6df;
    width: 100%;
    height: 270vh;
  }

  h1{
    text-align: center;
    font-family: 'cursive', sans-serif;
    font-style: italic;
    font-weight: 100;
    font-size: 30px;
    color: rgb(87, 45, 3);
  }

  p{
    color:black;
    font-size: 15.5px;
    text-align: center;
    font-weight: 400;
    margin-top: 10px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }

  .form-order{
    background-color: rgb(253, 250, 240);
    width: 85%;
    height: 90vh;
    margin-left: 7%;
    margin-top: 18px;
    border-radius: 13px;
    box-shadow: 0 0 0 2px white, 0.3em 0.3em 1em rgba(43, 43, 43, 0.6);
  }

  h3{
    font-size: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-left: 30px;
    font-weight: 100;
    color: #3a3939;
  }

  /*form*/
  .form-style{
    margin-left: 5%;
    font-size: 19px;

  }

  .legend{
    border-radius: 10px;
    margin-right: 10%;
    height: 20vh;
  }

  legend{
    font-size: 25px;
    color: rgb(87, 57, 20);
  }

  fieldset{
    border: 2px solid #362802;
  }

  input[type="text"] {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    margin-left: 10px;
  }

 ::placeholder{
  color: #8a8686;
 }

 form {
  font-size: 50px;
 }

 .label{
  margin-left: 11.1%;
 }

 select{
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    margin-left: 10px;
 }

 .form{
        background-color: rgb(253, 250, 240);
        width: 100%;
        height: 150vh;
        margin-top: 100px;
        border-radius: 13px;
        box-shadow: 0 0 0 2px white, 0.3em 0.3em 1em rgba(43, 43, 43, 0.6);
 }

 .legend1{
    border-radius: 10px;
    margin-right: 10%;
    height: 60vh;
  }

  .address {
    background-color: transparent;
    display: block;
    margin-top: 5px;
    width: 90%;
    height: 10vh;
    border-radius: 10px;
  }

  input[type="tel"] {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    margin-left: 10px;
  }

  input[type="number"] {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    margin-left: 10px;
  }

  input[type="radio"] {
    accent-color: rgb(70, 30, 3); /* Change the color of the radio button */
  }
 
  .label{
    margin-left: 13%;
   }

   #Pay {
    background-color: #c0a694;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease-in;
    margin-top: 10px;
    margin-left: 83%;
    font-size: 18px;
  }
  
  #Pay:hover {
    background-color: #200c01;
  }

    /*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:767px){
      .footer-col{
        width: 50%;
        margin-bottom:30px 
      }
      
    }
    
    @media (max-width:574){
      .footer-col{
        width: 100%;
       
      }
      
    }

    @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;
      }

      .order{
        height: 200vh;
      }

      .legend{
        height: 15vh;
        margin-right: 2%;
      }

      .legend1{
        height: 47vh;
      }
      .form-order{
        height: 60vh;
      }

      .form{
        height: 114vh;
     }

     #Pay {
      margin-left: 50%;
    }

    input[type="text"] {
      width:50%;
    }

    .label{
      margin-left: 38%;
     }

    }

    /*iphoNe SE*/

    @media (max-width:375px) {
      .order{
        height: 290vh;
      }

      .legend{
        height: 20vh;
      }

      .legend1{
        height: 63vh;
      }
      .form-order{
        height: 83vh;
      }

      .form{
        height: 158vh;
     }
    }

    /*surface duo*/

    @media (max-width:540px){
      .order{
        height: 280vh;
      }

      .legend{
        height: 20vh;
      }

      .legend1{
        height: 63vh;
      }
      .form-order{
        height: 83vh;
      }

      .form{
        height: 158vh;
     }
    }

    /*azuz*/

    @media (max-width:853px){
      .order{
        height: 160vh;
      }

      .legend{
        height: 10vh;
      }

      .legend1{
        height: 40vh;
      }
      .form-order{
        height: 43vh;
      }

      .form{
        height: 100vh;
     }
    }

    .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;
    }

    /*buy now order page*/

    .bg{
      background-color: #f9f6f3;
      height: 100vh;
    }