
body {
    background-color: #0B1D3A;
    color: #FFD700;
    font-family: tahoma, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #0B1D3A;
}
.header-left a, .header-right a {
    color: #FFD700;
    font-size: 1.5em;
    text-decoration: none;
}
.header-left a:hover, .header-right a:hover {
    color: white;
}
.site-logo {
    max-width: 150px;
    height: auto;
}
.call-button {
    padding: 5px 10px;
    border: 1px solid #FFD700;
    border-radius: 5px;
}
main img {
    max-width:20%;
    height: auto;
    margin: 10px 0;
}

body { background-color: #0B1D3A; color: #FFD700; }
a, button { color: #FFD700; }
button, .btn { background-color: #FFD700; color: #0B1D3A; }

.insta-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.menu-button {
.menu-button {
  display: inline-block;
  padding: 18px 35px;
  border: 2px solid #FFD700;
  border-radius: 10px;
  background-color: #FFD700;
  color: #0B1D3A;
  font-size: 2.5em;      /* 👈 از 1.4em به 1.8em افزایش دادیم */
  font-weight: bold;
  text-decoration: none;
  margin: 25px auto;
  transition: all 0.3s ease;
}
.menu-button:hover {
  background-color: white;
  color: #0B1D3A;
  transform: scale(1.05); /* 👈 انیمیشن لطیف روی هاور */
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  padding: 20px;
}
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.map {
  margin-top: 30px;
}


.gallery img {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 5px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    justify-items: center;
}


.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    padding: 20px 0;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.section-separator {
    border: none;
    height: 2px;
    background-color: #FFD700;
    margin: 20px auto;
    width: 80%;
}

/* --- Social Icons Updated (Luxurious Style) --- */
.insta-icon, .whatsapp-icon, .call-icon {
  width: 42px;
  height: 42px;
  vertical-align: middle;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.social-icons img {
  width: 42px;
  height: 42px;
  filter: brightness(1.1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
  filter: brightness(1.4);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 👑 درخشش طلایی لطیف */
.fade-in.visible {
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
   /* 🎇 Bojan Cafe Golden Gallery Style */
   .gallery {
     display: flex;
     flex-wrap: nowrap;
     overflow-x: auto;
     gap: 20px;
     padding: 30px 0;
     justify-content: center;
     scroll-behavior: smooth;
   }

   .gallery::-webkit-scrollbar {
     height: 8px;
   }
   .gallery::-webkit-scrollbar-thumb {
     background: linear-gradient(90deg, #c5a100, #ffd700);
     border-radius: 10px;
   }

   .gallery img {
     flex: 0 0 auto;
     width: 320px;
     height: 210px;
     object-fit: cover;
     border-radius: 10px;
     border: 2px solid #FFD700;
     transition: all 0.3s ease-in-out;
     box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
   }

   .gallery img:hover {
     transform: scale(1.08);
     box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
   }

   @media (max-width: 768px) {
     .gallery img {
       width: 240px;
       height: 160px;
     }
     .gallery {
       gap: 12px;
       padding: 20px 0;
     }
   }
