@import "../icons/css/all.css";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
html{
    scroll-behavior: smooth;
}
p{
    color: #182B2B;
    font-size: 14px;
}
h4{
     color: #182B2B;
}
a{
    text-decoration: none;
    color: #182B2B;
}
.active{
    color: #EB9633;
}
.button{
    padding: 5px 10px;
    background-color: transparent;
    border: 3px solid #000; 
    border-radius: 0 20px 0 20px; 
    font-size: 15px;
    color: #182B2B;
    cursor: pointer;
    box-shadow: 2px 2px 0 #000;
    transition: all 0.3s ease;
}
header{
    background-color: #F5EDDC;
    position: sticky;
    top: 0;
    left: 0;
}
header .header-container{
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .header-logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .header-logo img{
    width: 65px;
    height: 65px;
}
header .header-li{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .li{
    padding: 0 25px;
    cursor: pointer;
}
header .li p:hover{
    color: #EB9633;
}
header .header-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
}
header .header-buttons button:hover{
    background-color: #EB9633;
}
header .header-buttons i{
    padding: 0 15px;
    font-size: 18px;
    cursor: pointer;
}
header .header-buttons i:hover{
    color: #EB9633;
}

#hero{
  background-color: #F5EDDC;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#hero .hero-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15%;
    width: 90%;
    margin: auto;
}
#hero .hero-right h3{
    font-weight: bold;
    font-size: 35px;
    padding-bottom: 5px;
}
#hero .hero-right .p-div{
    padding: 10px 0;
}
#hero .hero-right .hero-button{
    padding: 5px 10px;
    background-color: transparent;
    border: 3px solid #000; 
    border-radius: 0 20px 0 20px; 
    font-size: 15px;
    color: #182B2B;
    cursor: pointer;
    box-shadow: 2px 2px 0 #000;
    transition: all 0.3s ease;
    background-color: #EB9633;
    padding: 8px 20px;
    font-size: 18px;
    letter-spacing: 5px;
    margin-top: 30px;
}
#hero .hero-right .hero-button:hover{
    background-color: transparent;
}

#service{
    background-color: #F5EDDC;
}
#service .service-container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3% 20px;
    box-sizing: border-box;
}
#service .service-container h4{
    color: #182B2B;
    text-align: center;
    letter-spacing: 2px;
    font-size: 25px;
    padding-bottom: 15px;
}
#service .service-body{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding: 2% 0;
}
#service .service-pic {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}
#service .service-pic img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0 30px 0 30px; 
}
#service .service-boxes{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    flex: 1;
    gap: 30px;
}
#service .service-box{
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 300px;
}
#service .icone{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #204759;
    background-color: #EB9633;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #182B2B;
}
#service .text{
     margin-top: 5px;
    font-size: 0.9rem;
}

#booking{
    background-color: #E5DECF;
    padding: 50px 20px;
}
#booking h3{
    text-align: center;
    padding-bottom: 3%;
    letter-spacing: 2px;
    font-size: 36px;
}
#booking .booking-container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
#booking .booking-form{
    border: 1px solid #182B2B;
    border-radius: 10px;
    padding: 10px 25px;
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#booking .booking-form form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#booking .form-box{
   display: flex;
   justify-content: flex-start;
   align-items: center;
   gap: 10px;
}
#booking .form-row label {
  width: 90px;
  font-weight: bold;
  color: #182B2B;
  font-size: 15px;
}
#booking .booking-form input{
    flex: 1;
    padding: 8px;
    font-size: 15px;
    border: none;
    background-color: transparent;
    outline: none;
    border-bottom:2px solid #182B2B ;
}
#booking .booking-image{
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}
#booking .booking-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 50px 0 50px; 
}
#booking button{
    background-color: #EB9633;
    padding: 2px;
    border: 2px solid #000;
    font-weight: bolder;
    margin: 5px;
}
#booking button:hover{
    background-color: transparent;
}

footer{
    background-color: #F5EDDC;
}
footer .footer-container{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    width: 95%;
    margin: 0 auto;
    padding: 25px 20px;
}
footer .sumbit-form{
    max-width: 280px;
}
footer .button{
    padding: 0;
    height: 35px ;
    overflow: hidden;
    margin-bottom: 15px;
}
footer .button:hover{
    background-color: transparent;
}
footer .button input{
    border: none;
    outline: none;
    width: 100%;
    background-color: transparent;
    padding: 0 10px;
}
footer .button button{
    cursor: pointer;
    border: none;
    outline: none;
    width: 50%;
    height: 100%;
    background-color: #EB9633;
    border-left: 2px solid #182B2B;
}
footer .button button:hover{
    background-color: transparent;
}
footer .Location{
    margin-top: 12px;
}
footer .footer-box h3{
    margin-bottom: 12px;
    font-size: 15px;
}
footer .footer-box p , a{
    font-size: 13px;
    line-height: 1.6;
}
.footer-box a:hover {
  text-decoration: underline;
}
footer .footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 95%;
    margin: 0 auto;
    padding: 10px 0;
}
footer .footer-bottom p , a{
    font-size: 10px;
}


#menu {
    background-color: #E5DECF;
    padding: 60px 0;
}
#menu .title{
    text-align: center;
    margin-bottom: 40px;
}
#menu .title h3{
    padding-bottom: 10px;
    font-size: 32px;
}
#menu .title p{
    font-size: 16px;
}
#menu .menu-container{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px , 1fr));
    gap: 30px;
}
.box{
    cursor: pointer;
    background-color: #F5EDDC;
    border: 2px solid #204759;
    border-radius: 0 20px 0 20px; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    
    transition: transform 0.3s ease;
}
.box:hover{
    transform: translateY(-5px);
}
.img{
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img img{
    border-radius: 10px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.box-title h3{
    font-size: 16px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
     overflow: hidden;
}
.menu-container .menu-button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
     margin-top: 15px;
}
.menu-container .button{
    width: 100%;
    background-color: #EB9633;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.menu-container .button:hover{
    background-color: transparent;
}
.menu-button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
    margin: auto;
    margin-top: 40px;
}
.button{
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.button:hover{
    background-color: #EB9633;
}

#fullmenu{
    background-color: #e5decf;
    min-height: 100vh;
}
#fullmenu .fullmenu-container{
    width: 90%;
    margin: auto;
}
#fullmenu .category-container{
  text-align: center;
  padding-top:25px ;
}
#fullmenu .category-container h3{
    padding-bottom: 25px;
}
#fullmenu .categories{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: center;
}
#fullmenu .catbox{
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #20475942;
    border-radius: 0 20px 0 20px; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 130px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    transition: all 0.3s ease;
}
#fullmenu .catbox:hover{
    background-color: #EB9633;
}
#fullmenu .catbox .img{
   width: 60px;
   height: 60px;
   margin-top: 20px;
}
#fullmenu .catbox .img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#fullmenu .catbox h3{
    font-size: 14px;
    font-weight: 600;
    margin: 2px 0;
}
#fullmenu .menu{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.search-input{
    display: none;
    background-color: transparent;
    outline: none;
    border: 1px solid #20475942;
    border-radius: 0 20px 0 20px; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 10px 50px;
}
.search-input:focus {
  border-color: #EB9633;
  box-shadow: 2px 2px 8px rgba(235, 150, 51, 0.3);
}
.search-input::placeholder{
    color: #182b2ba6;
    letter-spacing: 1px;
}
.search-area.toggle .search-input{
    display: inline-block;
}
.search-area{
    display: flex;
    justify-content: center;
    align-items: center;
}
#close-icon{
    display: none;
}
.search-area.toggle #close-icon{
    display: inline-block;
    color: #EB9633;
}
.search-area.toggle #open-icon{
    display: none;
}

#cart{
    background-color: #E5DECF;
    width: 100%;
    min-height: 50vh;
}
#cart .cart-container{
    padding: 3%;
    overflow-x: auto;
}
#cart table{
    width: 90%;
    min-width:700px ;
    margin: auto;
    border-collapse: collapse;
    table-layout: fixed;
    padding: 15px;
}
#cart thead{
    border-top: 1px solid #182B2B;
    border-bottom: 1px solid #182B2B;
}
#cart thead th{
    text-transform: uppercase;
    font-size: 13px;
    padding: 15px 10px;
    font-weight: 700;
}
#cart tbody td {
  font-size: 14px;
  text-align: center;
  padding: 15px 10px;
  vertical-align: middle;
  border-bottom: 1px solid #204759;
}
#cart table td:nth-child(1) {
  width: 80px;
}

#cart table td:nth-child(2) {
  width: 100px;
}

#cart table td:nth-child(3) {
  width: 200px;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
  width: 130px;
}
#cart table button{
    border: none;
    background-color: transparent;
    color: #EB9633;
    font-size: 20px;
    cursor: pointer;
}
#cart table button:hover{
    color: #182B2B;
}
#cart table img{
    width: 80px;
    height: auto;
    border-radius: 5px;
}
#cart .cart-input {
  width: 60px;
  padding: 8px 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
}
#empty-cart-message {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-top: 20px;
  display: none;
}
#total{
    background-color: #E5DECF;
}
#total .total-container{
    padding-bottom: 3%;
    width: 90%;
    max-width: 400px;
    margin: auto;
}
#total table{
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 0 40px 0 40px;
    box-shadow: 0 0 10px rgba(41, 41, 41, 0.119);
}
#total th{
    border-bottom: 2px solid #182B2B;
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 5px;
}
#total td {
  font-size: 18px;
  font-weight: bold;
  color: #EB9633;
  padding-top: 10px;
}

header .responsive{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    z-index: 999;
    background-color: rgba(245, 237, 220, 0.9);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    align-items: flex-start;
}
header .responsive .header-li{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
header .responsive .header-li .li{
    padding: 20px;
}
header .cross-menu{
    font-size: 22px;
    cursor: pointer;
    padding: 20px;
}
header .cross-menu:hover{
    color: #EB9633;
}
header .bar-menu{
    display: none;
    font-size: 20px;
    cursor: pointer;
}
header .bar-menu:hover{
    color: #EB9633;
}

/* responsive */
@media only screen and (max-width: 768px){
  header .bar-menu{
    display: block;
  }
  header .header-li,
  header .header-buttons {
    display: none;
}
  #hero {
    height: auto;
    padding: 40px 0;
  }

  #hero .hero-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  #hero .hero-right h3 {
    font-size: 26px;
  }

  #hero .hero-right .p-div p {
    font-size: 14px;
    line-height: 1.6;
  }

  #hero .hero-right .hero-button {
    font-size: 16px;
    padding: 10px 20px;
    letter-spacing: 2px;
    margin-top: 20px;
  }

  #hero .hero-left img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .menu-button {
    width: 100%; 
    padding-bottom: 40px;
  }
  #menu .title h3 {
   font-size: 26px;
  }
  #menu .title p {
    font-size: 14px;
  }
  #menu {
     padding: 0;
}
#menu .title {
    width: 90%;
    padding: 30px 10px;
    margin: auto;
}
#service .service-box {
    justify-content: center;
    align-items: center;
    text-align: center;
}
#service .service-pic {
    max-width: 400px;
    margin: auto;
}
#booking .booking-container {
    gap: 30px;
}
  #booking .booking-form,
  #booking .booking-image {
    width: 90%;
    max-width: 500px;
  }
  #booking .form-box input {
    width: 100%;
  }
  #booking h3 {
    font-size: 26px;
    padding-bottom: 50px;
  }
  #booking .booking-image img {
    border-radius: 0 20px 0 20px;
}
#fullmenu .menu {
    padding-bottom: 25px;
}
#fullmenu .menu-container > h3 {
  padding: 30px 0;
}
#cart .cart-container ,
#total .total-container
{
    padding: 7%;
}
}