*{
   
    padding: 0;
    margin: 0;
}
:root{
    --bodycol:#FDF0E0;
    --btnhover:#1C352D;
    --linkcol:#696614;
    --orderbtncol:#FF3E3E;
}
html {
  scroll-behavior: smooth;
}

* {
  transition: all 0.3s ease-in-out;
}

body{
    width: 100%;
     background-color: var(--bodycol);
}

/* navigation */

.nav{
    height: 10vh;
     width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    border: white solid 1px;

}

/* navitem */

.navitem{
    width: 100%;
    height: auto;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: end;
  margin-right: 10px;
  background-color:var(--navcol)
   
}
.navlis ul{
    display: flex;
    gap: 2rem;
    background-color: var(--navcol);
 
}
.navlis ul li{
   text-decoration: none;
   list-style-type: none;
  
   gap: 2rem;
}
.navlis ul li a{
    text-decoration: none;
    color: var(--linkcol);
     background-color: var(--navcol);
}
.navlis ul li a:hover {
  background: linear-gradient(to right, #FFF958, #F96A6A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.search{
    height: 6vh;
    width: fit-content;
   display: flex;
    border: solid white;
    border-radius: 50px;
    padding: 1px 5px 1px 1px;
  
}
.search input{
    background-color: var(--bodycol);
    border-radius: 50px;
   
}
 .search input {
  border: none;
  outline: none;
  background: transparent;
}
.sign_btn {
  background: linear-gradient(var(--bodycol), var(--bodycol)) padding-box,
              linear-gradient(to right, #FFF958, #F96A6A) border-box;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 10px;
  width: 100px;
  margin-right: 20px;
  color: black;
}
.sign_btn:hover{
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(249, 106, 106, 0.4);
}
.sign_btn a{
    text-decoration: none;
    color: black;
}

/* HAMBURGER */
.menu-toggle{
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px){

    /* SHOW HAMBURGER */
    .menu-toggle{
        display: block;
        font-size: 14px;
        padding-right: 20px;
    }

    /* HIDE SEARCH + BUTTON */
    
    .sign_btn{
      width: max-content;
      height: 25px;
      font-size: 12px;
        display:flex;
        padding: 3px 3px 3px 3px;
    }
    .search{
      display: none;
    }

    /* NAV MENU RIGHT SIDE POPUP */
    .navlis{
        position: fixed;
        top: 0;
        right: -100%;   /* hidden */
        width: 70%;
        height: 100vh;
       /* background: #b44e3a;
background: linear-gradient(90deg, rgba(180, 78, 58, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%); */
background-color: #ffff;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
        z-index: 1000;
    }

    /* ACTIVE MENU */
    .navlis.active{
        right: 0;
    }

    /* VERTICAL MENU */
    .navlis ul{
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
@media(max-width:768px){
.logo img {
    width: 100px;
    height: auto; 
}

.nav{
    height: 10vh;
     width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    
    border: white solid 1px;
   

}

}

/* hero section */

.hero{
    display: flex;
    flex-direction: row;
    padding: 20px 50px 20px 30px;
    gap: 10px;
    justify-content: space-between;

}
.desc{
    position: relative;
    width: 50%;
    height: 60vh;
   
}

.imagecontain img{
    position: absolute;
    width: 60vh;
    height: 50vh;
    border-radius: 10px;
    margin-left: 20px;
    left: 0;
}
.desc h1{
    font-size: 19px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
@media(max-width:748px){

.hero{
    display: flex;
    flex-direction: column;
    padding: 20px 50px 20px 30px;
    gap: 10px;
    align-items: center;
    position:static;
    

}
.desc{
   
    width: 50%;
    height: 60vh;
   
}

.imagecontain img{
    position: relative;
    width: 30vh;
    height: 40vh;
    border-radius: 10px;
    margin-left: 20px;
    
}
.desc h1{
    font-size: 19px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

}

/* footer */

.footer {
  background: #222;
  color: #fff;
}

/* TOP */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 6%;
  flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
  flex: 1;
  min-width: 200px;
}

/* HEADINGS */
.footer-col h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

/* TEXT */
.footer-col p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #ccc;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  font-size: 13px;
  margin-bottom: 6px;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}
.footer-col li  a{
    text-decoration: none;
  font-size: 13px;
  margin-bottom: 6px;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.footer-col li a:hover {
  color: #FFF958;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #111;
  font-size: 13px;
}

