@import url("font/primary-iran-yekan.css");
@import url("font/secondary-pinar.css");

html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  body {
    display: flex;
    flex-direction: column;
  }

  ::-webkit-scrollbar {
    width: 5px;
  }
   
  ::-webkit-scrollbar-track {
    background: #2e2e2e;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
   
  ::-webkit-scrollbar-thumb {
    background: #dc5f00;
    border-radius: 5px;
  }


  .primary-font {
    font-family: "primary-font", "segoe ui", "tahoma" !important;
  }
  
  .secondary-font {
    font-family: "secondary-font", "primary-font", "segoe ui", "tahoma" !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "secondary-font", "primary-font", "segoe ui", "tahoma";
  }

  .header {
    background-image: url('../media/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 35vh;
    position: relative;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .header-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .header-content {
    position: relative;
    z-index: 1;
  }
  .menu-section {
    background-color: #333;
    color: white;
    padding: 30px 0;
    background-image: url('../media/Menu-header.jpg');
    background-size: cover;
    background-position: center;
    flex: 1;
  }
  .menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .menu-item {
    text-align: center;
    padding: 10px;
    max-width: 50%;
    transition: transform 0.5s ease;
  }
  .menu-item:hover {
    transform: scale(1.25); /* Scale up by 5% */
  }
  .menu-item img {
    max-width: 80px;
    width: 100%;
    height: auto;
  }
  #main-logo {
    position: fixed;
    left: 0;
    top: 30%;
    width: 100%;
    text-align: center;
    z-index: 2;
  }
  #main-logo img {
    height: 160px;
    display: block;
    margin: -105px auto 0;
  }
  .footer {
    background-color: #222;
    color: white;
    padding: 14px 0;
    text-align: center;
  }
  @media (min-width: 1200px) {
    .menu-item {
      flex: 0 0 25%;
      max-width: 25%;
    }
  }
  .responsive-logo {
    max-width: 20%; /* Default for small screens */
    height: auto;
  }

  @media (min-width: 1200px) { /* For medium and larger screens */
    .responsive-logo {
      max-width: 180px; /* Adjust this value as needed */
    }
  }
  #zone_contact {
    position: fixed;
    left: 0;
    bottom: 45px;
    z-index: 1000;
  }
  #zone_contact > span {
    padding: 5px 10px;
    font-size: 8pt;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    font-family: 'Tahoma', sans-serif;
    cursor: pointer;
    background-color: #dc5f00;
    color: white;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
  }
  #zone_contact > span:hover {
    background-color: #ffa25b;
  }
  #zone_contact > span img {
    margin-left: 10px;
    height: 20px;
  }
  .menu-item-title {
    font-size: 20pt;
    font-weight: 600;
    color: #e9e9e9;
  }
  .menu-item-description {
    font-size: 0.875rem;
    color: #6c757d;
  }
  .menu-item-price {
    font-size: 22pt;
    color: #fb903f; /* Text color */

}

  hr.dotted {
  border-top: 4px dotted #ffffff;
}

.bg-modal {
  background-image: url('../media/modal-bg.jpg');
  background-size: cover;
  
}

.bg-contact-modal {
  background-image: url('../media/contact-modal-bg.jpg');
  background-size: cover;
  
}

.bg-white-card-round{
  background-color: #ffffff;
  border: 1px solid #ccc; /* Example border */
  padding: 15px;
  border-radius: 20px;
  width: 258px;
  height: 170px;
}

.bg-white-card-address-round{
  background-color: #ffffff;
  border: 1px solid #ccc; /* Example border */
  padding: 10px;
  border-radius: 20px;
  width: 450px;


}



.float-modal-btn {
  position: fixed;
  left: 50%;
  bottom: 45px;
  transform: translateX(-50%); /* Center the button */
  z-index: 1000;
}
.float-modal-btn > span {
  font-size: 10pt;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}
.float-modal-btn > span:hover {

    color: #dc5f00;
}




.modal.fade .modal-dialog {
  transition: transform 0.7s ease, opacity 0.7s ease;
  transform: translateX(-100%); /* Start off-screen to the left */
  opacity: 0;
}

.modal.show .modal-dialog {
  transform: translateX(0); /* Move to original position */
  opacity: 1;
}

@media (max-width: 576px) {
  .balance {
      display: flex;
      flex-direction: column; /* Stack items vertically */
      justify-content: center; /* Center items vertically */
      align-items: center;     /* Center items horizontally */
      height: 100%;            /* Ensure it takes full height if needed */
  }
}