*{
    padding: 0;
    margin: 0;
    background-color: #3c0d0d;
    color: white;
}
nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #3c0d0d;

}
.logo{
    display: flex;
    flex-direction: row;
    gap: 5px;
   padding: 10px;
   margin-left: 40px;
}
.logo_image{
  
    height: 55px;
    width: 60px;
   
}
.logo_text{
    font-family: "Playwrite HU", cursive;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  padding: 16px;
  font-size: large;
}
nav ul{
    display: flex;
    list-style: none;
    gap: 35px;
    flex-direction: row;
   align-items: flex-end;
   margin: 0;
   padding: 35px;
   margin-right: 40px;
   font-weight: light;
   font-family: "Roboto", sans-serif;
}
nav ul li:hover{
    color: orangered;
    text-decoration: underline;
    cursor: pointer;
}


.image img{ 
        height: 200px;
        width: 200px;
}/* 
____________________main section ______________________ */

main{
    padding: 40px;
    margin-left: 100px;
    display:flex;
    flex-direction: row;
}
.text{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.head_text{
  font-family: "Playwrite HU", cursive;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  color: rgb(225, 173, 31);
  font-size: 5vh
}
.middle_text{
    font-family: "Playwrite AU QLD", cursive;
  font-optical-sizing: auto;
  font-weight: light;
  font-style: normal;
  width: 480px;
}
.end_text{
   font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: light;
  font-style: normal;
    width: 410px;
}
.image img{
    height: 400px;
    width: 400px;
    margin-left: 90px;
}
/* _________________________button section _______________________________ */
.button{
    display: flex;
    gap: 10px;
    height: 35px;
   margin-top: 20px;
}
.order_now, .contact_us {
  padding: 10px 30px;
  width: 148px;
  height: 50px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Specific styles for each button */
.order_now {
  background-color: rgb(225, 173, 31); /* coffee brown */
  color: white;
}

.order_now:hover {
  background-color: #a0522d;
  transform: scale(1.05);
}

.contact_us {
  border-color: white;
  color: white;
  margin-left: 20px;
  border: 2px solid white
}

.contact_us:hover {
  background-color: #5e2d2d;
  transform: scale(1.05);
}
/* ______________________________trying i dont know how to do hamburger menu _______________________ */
.hamburger{
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span{
  height: 3px;
  width: 25px;
  background-color: aliceblue;
  border-radius: 2px;
}

/* -----------------------------responsive------------------------------ */
@media(max-width: 430px){
  nav ul{
    display: none;
    flex-direction: column;
    gap: 30px;
    background-image: url(background.jpg);
    position: absolute;
    top: 100px;
    border-radius: 15px;
    height: 100%;
    width: 50%;
    padding: 10px;
  }
  nav ul li{
    color: white;
    background-color: rgb(225, 173, 31);
    justify-self: center;
    text-align: left;
    align-self: flex-start;
    border: none;
  border-radius: 50px;
    padding: 5%;
    margin-left: 10%;
    
  }
  nav ul.active{
    display: flex;
  }
  .logo {
    display: flex;
  height: 100%;
  width: 1000%;
    gap: 1px;
  }
  .logo_image{
    width: 15vw;        
    max-width: 100px;    
    height: auto;        
    align-self: center;
    justify-self: center;
    margin-left: 0;
   }
   .logo_text{
    font-size: 30px;
    align-self: center;
    justify-self: center;
    margin-top: 17px;
   
    
    height: auto;
    width: auto;
   }
   main{
     margin-left: 0;
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
   }
   .image img{
     margin-left: 0;
     margin-right: 0;
    height: auto;
    width: 100%;
    max-width: 400px;
   
   }
   .text{
    margin-left: 0;
    height: auto;
    width: 100%;
    max-width: 100%;
    
   }
   .head_text, .middle_text, .end_text{
    width: 100%;
    max-width: 400px;
    
   }
   .button{
    display: flex;
    flex-direction: column;
    gap: 30px;
     margin: 20%;
   }
   .contact_us,.order_now{
    margin-left: 0;
    align-self: center;
   
   }
   .hamburger {
    display: flex;
   margin-left: 10%;
   margin-top: 15%;
   }
}