@import url("https://fonts.googleapis.com/css?family=Poppins");

/* body {
  font-family: Poppins;
} */

.header-right a {
  color: #a0a0a0;
}
.header-right a:hover {
  color: #000000;
}
.activeHead{
  color: #ff5634 !important;
}
.header-right a:hover .img1{
  display: none;
}
.header-right a:hover .img2{
  display: block !important;
}

.header-right a:not(:last-child)::before {
  content: "";
  width: 2px;
  height: 30px;
  background-color: gray;
  margin: 0;
}
.header-right a:not(:last-child):hover::before {
  content: "";
  width: 2px;
  height: 30px;
  background-color: rgb(0, 0, 0);
  margin: 0;
}
.header-right .activeHead:not(:last-child)::before {
  content: "";
  width: 2px;
  height: 30px;
  background-color: #ff5634 !important;
  margin: 0;
}

.lang {
  background-color: #ff5634;
  color: white;
  border-radius: 0.375rem;
  /* padding: 1.25rem 1rem; */
  background-image: url("../images/Group\ 21.svg");
  background-repeat: no-repeat;
  background-position: 1rem center;
  background-size: 23px 23px;
}
/* .hero-head {
    height: 250px;
    background-image: url('../images/Mask\ group.svg');
    background-position: top ;
    background-size: cover;
} */

.about-data p {
  margin-left: 10px;
}
.about-data::before {
  content: "";
  width: 4px;
  margin: 30px;
  height: auto;
  background-color: #ff5634;
  margin: 0;
}
footer h6 {
  color: #ff5d3d;
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  padding-bottom: 8px;
}
footer ul li,
footer table tr td {
  padding: 6px 0;
}
footer li a:hover {
  color: #ff5634;
}
.fa-clock {
  color: #52ce5f;
}
.fa-clock::before {
  content: "";
  padding-left: 10px;
}
.menu-links ul li::before,
.useful-links ul li::before {
  content: "\003E";
  color: #ff5634;
  font-size: 18px;
  font-weight: 700;
  margin-right: 6px;
}



.links::before {
  content: "";
  width: 3px;
  height: auto;
  background-color: white;
  margin-right: 8px;
}

/* Popup Trigger */
.popup-trigger {
    border: 1px solid #FF694B;
    background-color: #FFF;
    color: #FF694B;
    padding: 8px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.popup-trigger:hover {
    background-color: #FF694B;
    color: #FFF;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup.show {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: #FFF;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup.show .popup-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.close-btn:hover {
    color: #FF694B;
}

.customerLogout {
    font-weight: bold; /* Example: Make the text bold */
    cursor: pointer; /* Change cursor to pointer on hover */
}

/* General styles for the user display section */
.user-display {
    border: 1px solid #FF5634;
    padding: 8px 12px;
    border-radius: 5px;
    background-color: #fff;
    color: #FF5634;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative; /* Needed for submenu positioning */
    cursor: pointer;
}

.user-display:hover {
    background-color: #FF5634;
    color: white;
}

/* Submenu styles */
.account-submenu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    min-width: 132px; /* Minimum width for the submenu */
    text-align: center;
}

.account-submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-submenu li {
    border-bottom: 1px solid #ddd;
}

.account-submenu li:last-child {
    border-bottom: none;
}

.account-submenu a {
    display: block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
}

.account-submenu a:hover {
    background-color: #FF5634;
    color: white !important;
}

/* Show the submenu on hover */
.user-display:hover .account-submenu {
    display: block;
}

/* Extra styles for better appearance */

.user-display .fa-chevron-down {
    font-size: 13px;
}

.orange-border{
    border: 1px solid #FF5634 !important;
}

/* Hide the login button and submenu on mobile screens */
@media (max-width: 1024px) {
    /*#loginBtn {
        display: none;
    }*/
}

/* Specific class to hide on mobile screens */
.hide-mobile {
    display: none;
}

@media (min-width: 1025px) {
    .hide-mobile {
        display: block;
    }
}

/*------------- Reservation -----------*/
.reservation-form input,
.reservation-form textarea,
.reservation-form select {
  background-color: #e8e8e85e;
  margin: 10px 0;
  padding: 10px 12px;
  border-radius: 6px;
}
.reservation-form input::placeholder,
.reservation-form textarea::placeholder,
.reservation-form select::placeholder {
  /* color: #ff5d3d; */
  color:rgb(122, 122, 122) !important;
  font-size: 14px;
  transition: all 1s;
}
.reservation-form input:focus,
.reservation-form textarea:focus,
.reservation-form select:focus {
  background-color: transparent;
  outline: 1px solid #ff5634;
}
.reservation-form input:focus::placeholder,
.reservation-form textarea:focus::placeholder,
.reservation-form select:focus::placeholder {
  color:rgb(122, 122, 122) !important;
  font-size: 12px;
}
.reservation-form button {
  /* background: transparent; outline: none;
  border: 2px solid #111;
  padding: 15px 50px; */
  position: relative;
  overflow: hidden;
}

/*button:before (attr data-hover)*/
.reservation-form button:hover:before {
  opacity: 1;
  transform: translate(0, 0);
}
.reservation-form button:before {
  content: attr(data-hover);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  width: 100%;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 0.8em;
  opacity: 0;
  transform: translate(-100%, 0);
  transition: all 0.3s ease-in-out;
  background-color: white !important;
  color: #ff5634 !important;
  height: 100%;
  border: 1px solid #ff5634;
  border-radius: 0.375rem;
}

.reservation-form .contact-form button:after {
  content: url("../images/send-icon-color.svg");
  position: absolute;
  left: calc(100% - 28px); /* Adjust to position the image correctly */
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, left 0.3s ease-in-out;
}

.reservation-form .contact-form button:hover:after {
  opacity: 1;
  left: calc(100% - 28px); /* Adjust to slide the image in from the right */
}
/*button div (button text before hover)*/
.reservation-form .contact-form button:hover div {
  opacity: 0;
  transform: translate(100%, 0);
}
.reservation-form .contact-form button div {
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 800;
  font-size: 0.8em;
  transition: all 0.3s ease-in-out;
}

/*------------- Contact --------------*/
/* .address-details{
  background-image: url('../images/');
} */

.contact-left {
  height: 500px;
  background-color: #ff5634;
  background-image: url("../images/Ellipse\ 1.svg"),
    url("../images/Ellipse\ 2.svg");
  background-position: top right, bottom left;
  background-repeat: no-repeat;
}
.address-box {
  background: linear-gradient(to right, white 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 1s ease-out;
  color: #fff;
}
.address-box h6 {
  font-weight: 600;
}
.address-box:hover {
  /* background-color: #fff; */
  background-position: left bottom;
  color: #000;
}
.address-box:hover h6 {
  color: #ff5634;
}
.address-box:hover i {
  color: #ff5634;
}
.address-box:hover div {
  border-color: #ff5634;
}

.custom-select {
  position: relative;
  width: 100%;
}
.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #e8e8e869;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  font-size: 15px;
}
.custom-select::after {
  /* content: "\1F893"; */
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  width: 15px;
  height: 15px;
  background-image: url("../images/down-gray.png");
  /* background-image: url("../images/down.png"); */
  background-size: contain;
  background-repeat: no-repeat;
}
.custom-select select:invalid {
  color: rgb(122, 122, 122);
}
.custom-select:focus::after {
  background-image: url("../images/down.png"); /* Image on focus */
}

.links_title{
    text-transform: capitalize;
}

/* Custom Scrollbar for Webkit Browsers */
.modal-cutomer-item-list-scrollbar::-webkit-scrollbar {
width: 0rem; /* Width of the scrollbar */
}

.modal-cutomer-item-list-scrollbar::-webkit-scrollbar-thumb {
background-color: #4a5568; /* Color of the scrollbar thumb */
border-radius: 0px; /* Rounded corners of the scrollbar thumb */
}

.modal-cutomer-item-list-scrollbar::-webkit-scrollbar-track {
background-color: #edf2f7; /* Background color of the scrollbar track */
}
