@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;500&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Vazirmatn', sans-serif;
  min-height: 100vh; /* به‌جای height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
  background-size: cover;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
}
.site-header {
    width: 100%;
    padding: 15px 30px;
    position: fixed; /* همیشه بالای صفحه */
    top: 0;
    left: 0;
    z-index: 1000; /* بالاتر از منو و overlay */
    display: flex;
    justify-content: left; /* لوگو در وسط */
    align-items: center;
    background: rgba(0,0,0,0.5); /* نیم‌شفاف */
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.site-logo {
    max-height: 60px; /* ارتفاع لوگو */
    width: auto;
}

/* واکنش‌گرا */
@media (max-width: 600px) {
    .site-logo {
        max-height: 45px;
    }
}


/* 🔹 دکمه همبرگری (الان در بالاترین لایه است) */
.menu-btn {
  position: fixed;
  top: 20px;
  right: 25px;
  z-index: 99999; /* حداکثر مقدار برای اطمینان */
  cursor: pointer;
  width: 35px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  visibility: visible;
  opacity: 1;
}

.menu-btn span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.4s;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-7px, 7px);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-7px, -7px);
}

/* 🔹 منوی بازشونده */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.5s ease;
  z-index: 9999;
}
.menu.active {
  right: 0;
}
.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  margin: 15px 0;
  transition: color 0.3s;
}
.menu a:hover {
  color: #f9b4d1;
}

/* نیم‌شفاف روی بک‌گراند */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35); /* کمی روشن‌تر از قبل */
  z-index: 1; /* زیر container */
}

/* محتوای اصلی */
.container {
  position: relative;
  z-index: 2; /* بالاتر از overlay */
  background: rgba(0, 0, 0, 0.25); /* شفاف‌تر از قبل */
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(3px); /* مقدار blur کمتر */
  animation: fadeIn 2s ease;
  max-width: 90%;
  color: #fff;
}

/* محتوای اصلی */
.container {
display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.1);
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  animation: fadeIn 2s ease;
  max-width: 90%;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 500;
}

p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.8;
}

.loader {
  border: 3px solid rgba(255,255,255,0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  animation: spin 1.2s linear infinite;
}

footer {
   position: fixed;   /* فوتر همیشه ثابت */
    bottom: 0;         /* پایین صفحه */
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 15px 0;
    z-index: 1000;     /* بالاتر از محتوا */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;         /* فاصله بین متن و آیکون‌ها */
}

/* انیمیشن‌ها */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 📱 موبایل */
@media (max-width: 600px) {
  .container {
    padding: 30px 25px;
  }
  h1 {
    font-size: 1.6rem;
  }
  p {
    font-size: 0.95rem;
  }
  .loader {
    width: 35px;
    height: 35px;
  }
  footer {
    font-size: 0.8rem;
  }
}

/* 🔹 زیرمنوها */
.submenu {
  width: 100%;
  text-align: center;
  position: relative;
}

.submenu-toggle {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.submenu-toggle:hover {
  color: #f9b4d1;
}

/* محتوای زیرمنو */
.submenu-content {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-top: 5px;
  padding: 10px 0;
  animation: fadeIn 0.4s ease;
}

.submenu-content a {
  color: #ddd;
  font-size: 1.1rem;
  margin: 6px 0;
  text-decoration: none;
  transition: color 0.3s;
}

.submenu-content a:hover {
  color: #fff;
}

/* وقتی زیرمنو باز است */
.submenu.open .submenu-content {
  display: flex;
}

/* فلش کوچک کنار گزینه‌های زیرمنو */
.submenu-toggle::after {
  content: '▾';
  margin-left: 8px;
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.submenu.open .submenu-toggle::after {
  transform: rotate(180deg);
}
.menu a, .submenu-toggle {
  margin: 5px 0; /* فاصله کمتر و شکیل‌تر */
  font-size: 1.3rem; /* اندازه کمی کوچکتر */
}

.submenu-content a {
  margin: 4px 0; /* فاصله بین آیتم‌های زیرمنو */
  font-size: 1rem; /* اندازه زیرمنو */
}
.menu.rtl {
  right: -100%; /* منوی راست به چپ */
  left: auto;
  text-align: right;
  align-items: flex-end;
}

.menu.rtl.active {
  right: 0;
  left: auto;
}

.menu.ltr {
  left: -100%; /* منوی چپ به راست */
  right: auto;
  text-align: left;
  align-items: flex-start;
}

.menu.ltr.active {
  left: 0;
  right: auto;
}

/* زیرمنوها */
.menu.rtl .submenu-content {
  text-align: right;
  align-items: flex-end;
}

.menu.ltr .submenu-content {
  text-align: left;
  align-items: flex-start;
}

