/* زبان فعال */
.lang-switch .active {
    background-color: black;
    color: white;
  }
  
  /* بک‌گراند */
  .hero {
    background-image: url("images/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* لایه روی بک‌گراند */
  .overlay {
    width: 100%;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* دکمه‌ها در دسکتاپ */
  .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
  }
  
  /* دکمه‌ها */
  .buttons a,
  .buttons button,
  .dropbtn {
    display: inline-block;
    width: 200px;
    padding: 12px 20px;
    background-color: #d4af37;
    color: black;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
  }
  
  /* خدمات آبشاری */
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    flex-direction: column;
    background-color: #d4af37;
    border-radius: 10px;
    overflow: hidden;
    width: 200px;
  }
  
  .dropdown-content a {
    padding: 10px;
    color: black;
    text-decoration: none;
    display: block;
    text-align: center;
  }
  
  .dropdown:hover .dropdown-content {
    display: flex;
  }
  
  /* فوتر */
  footer {
    margin-top: 30px;
    text-align: center;
    color: #444;
    font-size: 0.9rem;
  }
  
  /* موبایل */
  @media (max-width: 600px) {
    .buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .buttons a,
    .buttons button,
    .dropbtn {
      width: 90%;
      max-width: 300px;
      text-align: center;
    }
  
    .dropdown-content {
      left: 50%;
      transform: translateX(-50%);
      right: auto;
      width: 90%;
      max-width: 300px;
      text-align: center;
    }
  }
  .lang-switch {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .lang-switch a {
    padding: 10px 20px;
    background-color: #d4af37;
    color: black;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
  }
  
  .lang-switch .active {
    background-color: black;
    color: white;
  }
  #music-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-image: url('images/speaker-on.png');
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1000;
  }
  .success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.6s ease-in-out;
}

.success-message i {
  color: #28a745;
  font-size: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
html {
  scroll-behavior: smooth;
#reservation-form {
  display: none;
  margin-top: 50px;
  text-align: center;
}
.slideshow-container {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
}

#random-slide {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
body {
  background-image: url('images/bg.jpg'); /* مسیر دقیق بک‌گراند */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  font-family: sans-serif; /* یا فونت دلخواهت */
}