*{
   
    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;
    position: sticky;
    top: 0;
    justify-content: start;
    border: white solid 1px;
 

}

/* navitem */

.navitem{
    width: 100%;
     position: relative;
    height: auto;
    display: flex;
   flex-direction:row;
    align-items: center;
   justify-content: end;
  margin-right: 10px;
  gap: 2rem;
  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: 60px;
      height: 25px;
      font-size: 12px;
        display:flex;
        text-align: center;
        padding: 3px 3px 3px 9px;
    }
    .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: 10000;
    }

    /* 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;
   

}

}

/* contact style */
.contacts{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

}
.cardcontainer{
    width: 200px;
    height: 250px;
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
   
  
    border-radius: 20px;
    margin: 50px 10px ;
}
.logo{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.title{
    padding: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   margin-top: 40%;
}
.title h1{
    font-size: 20px;
    margin: 5px 0px;
}
.title h2{
    font-size: 15px;
    font-family:Arial, Helvetica, sans-serif;
}
.title h3{
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.title h3{
    font-size: 15px;
    font-family: Arial, Helvetica, 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;
}


