 /* فونت وزیر لوکال */
  @font-face {
    font-family: 'Vazir';
    src: url('fonts/Vazir-Bold-FD-WOL.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Vazir';
    src: url('fonts/Vazir-Black-FD-WOL.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }

  /* اعمال فونت وزیر روی تمام عناصر و override کردن CSS های دیگر */
  body, html, h1, h2, h3, h4, h5, h6, p, span, a, li, div, section, article, footer, header, nav, button, input, textarea, select {
    font-family: 'Vazir', Tahoma, sans-serif !important;
  }

/* ==============================
   پس‌زمینه و لایه شیشه‌ای
============================== */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* بهتره برای اسکرول */
  align-items: center;
  background: linear-gradient(135deg, #cce9ff, #e6f5ff);
  position: relative;
}

/* لایه شیشه‌ای روی کل صفحه */
body::before {
  content: "";
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
  pointer-events: none; /* اطمینان از اینکه لایه روی تعامل کاربر تاثیری ندارد */
}

/* ==============================
   هدر نوا آرا – حرفه‌ای و ریسپانسیو
============================== */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #cce9ff, #e6f5ff);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  box-sizing: border-box;
  height: 154px; /* ارتفاع واقعی هدر */
}

/* فاصله دادن main از هدر ثابت */
main {
  padding-top: 154px; /* برابر ارتفاع هدر */
}

/* اگر از anchor link استفاده می‌کنید */
section {
  scroll-margin-top: 154px; /* جلوگیری از مخفی شدن محتوا زیر هدر */
}

/* ریسپانسیو موبایل */
@media (max-width: 992px) {
  header {
    height: 154px;
  }
  main {
    padding-top: 154px;
  }
  section {
    scroll-margin-top: 154px;
  }
}

/* لوگو */
header .logo h1 {
  font-size: 1.8rem;
  color: #0077cc;
  margin: 0;
}
header .logo p {
  margin: 2px 0 0 0;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}



/* منوی دسکتاپ */
header .main-menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 25px;
}
header .main-menu ul li a {
  display: block;
  padding: 8px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
header .main-menu ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #0077cc;
  transition: 0.3s;
}
header .main-menu ul li a:hover::after {
  width: 100%;
}





/* مخفی کردن منوی دسکتاپ روی موبایل با کلاس اصلی */
@media (max-width: 992px) {
  .main-menu {
    display: none !important;
  }
}




/* ==============================
   فوتر نوا آرا – شیشه‌ای و مدرن
============================== */
footer {
  flex-shrink: 0;
  width: 100%;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 50px 20px 20px;
  box-sizing: border-box;
  font-family: 'Vazirmatn', sans-serif;
  color: #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column { flex: 1 1 220px; min-width: 220px; }

.footer-logo h2 {font-family: 'Vazir', Tahoma, Arial, sans-serif;font-size: clamp(1.2rem, 1.8vw, 1.5rem); color: #333;font-weight: 700; margin-bottom: 15px; }
.footer-logo p { font-size: 0.95rem; line-height: 1.6; color: #444; }

.footer-column h3 { font-family: 'Vazir', Tahoma, Arial, sans-serif;font-size: 1.2rem; color: #333; margin-bottom: 15px; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a {font-family: 'Vazir', Tahoma, Arial, sans-serif; text-decoration: none; color: #333; transition: 0.3s; }
.footer-column ul li a:hover { color: #333; }










.social-icons { display: flex; gap: 15px; margin-top: 10px; }
.social-icons a {
  font-family: 'Osam', sans-serif;
  font-size: 1.6rem;
  color: #0077cc;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-icons a:last-child { margin-right: 0; }
.social-icons a:hover { color: #005fa3; transform: scale(1.2); }

.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input[type="email"] {
  font-family: 'Vazirmatn', sans-serif;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 0.95rem;
}
.newsletter-form button {
  font-family: 'Osam', sans-serif;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  background-color: #0077cc;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter-form button:hover { background-color: #005fa3; }
.newsletter-message { display: none; margin-top: 10px; padding: 10px; border-radius: 8px; background-color: #d4edda; color: #155724; font-size: 0.95rem; }

.footer-bottom { text-align: center; margin-top: 30px; font-size: 0.85rem; color: #555; }

/* ریسپانسیو فوتر */
@media (max-width: 992px) {
  .footer-container { flex-direction: column; gap: 25px; }
  .footer-column { min-width: auto; } /* اطمینان از نمایش صحیح ستون‌ها */
}




/* ==============================
   دکمه سفارش فوری شناور واتس‌اپ
============================== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

.cta-button {
  position: fixed;
  left: 20px;
  bottom: 50px;
  background-color: #25D366;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
  z-index: 9999;
}

.cta-button:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

/* ریسپانسیو موبایل */
@media (max-width: 768px) {
  .cta-button {
    padding: 12px 16px;
    font-size: 16px;
    bottom: 30px;
    left: 15px;
  }
}

/* -------------------------------
   بخش معرفی کوتاه
-------------------------------- */
#about-intro {
    background: linear-gradient(135deg, #cce9ff, #e6f5ff);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-in-out;
}

#about-intro h2 {
    text-align: center;
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 20px;
    position: relative;
}

#about-intro h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #0077b6;
    margin: 10px auto;
    border-radius: 5px;
}

#about-intro p {
    text-align: justify;
    color: #444;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* -------------------------------
   بخش ثبت سفارش سریع
-------------------------------- */
#quick-order {
    text-align: center;
    margin: 40px auto;
    padding: 30px 20px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    background: linear-gradient(135deg, #cce9ff, #e6f5ff);
    animation: fadeInUp 1.2s ease-in-out;
}

#quick-order h3 {
    font-size: 1.8rem;
    color: #023e8a;
    margin-bottom: 15px;
}

#quick-order p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}

/* دکمه واتس‌اپ */
#quick-order a {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #cce9ff, #e6f5ff);
    color: #023e8a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#quick-order a:hover {
    background: linear-gradient(135deg, #e6f5ff, #cce9ff);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* -------------------------------
   انیمیشن‌ها
-------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------------------
   ریسپانسیو
-------------------------------- */
@media (max-width: 768px) {
    #about-intro {
        padding: 30px 15px;
    }
    #about-intro h2 {
        font-size: 1.6rem;
    }
    #quick-order h3 {
        font-size: 1.4rem;
    }
    #quick-order a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* استایل خط جداکننده */
.divider {
  border: none;
  height: 2px;
  background:#FFB347;/* رنگ خط */
  margin: 30px auto; /* فاصله بالا و پایین */
  width: 90%; /* طول خط */
  opacity: 0.7; /* کمی شفافیت */
}

/* مخفی کردن منوی موبایل روی دسکتاپ */
@media (min-width: 769px) {
  .mobile-nav, .hamburger-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* فقط موبایل نمایش */
@media (max-width: 768px) {
  .mobile-nav, .hamburger-menu {
    display: block !important; /* یا flex */
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* about.css */

/* تیتر اصلی درباره ما */
#about-intro h1 {
  font-family: 'Vazir', Tahoma, Arial, sans-serif;
  color: #333;
  font-weight: bold;
  text-align: center;
}

/* پاراگراف‌ها در بخش درباره ما */
#about-intro p {
  font-family: 'Vazir', Tahoma, Arial, sans-serif;
  color: #333;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: center;
}

/* پاراگراف با متن بولد */
#about-intro p strong {
  font-weight: bolder;
  color: #000;
}
/* quick-order.css */

/* تیتر بخش ثبت سفارش سریع */
#quick-order h3 {
  font-family: 'Vazir', Tahoma, Arial, sans-serif;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

/* پاراگراف توضیح */
#quick-order p {
  font-family: 'Vazir', Tahoma, Arial, sans-serif;
  color: #333;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* دکمه واتس‌اپ */
#quick-order a {
  font-family: 'Vazir', Tahoma, Arial, sans-serif;
  font-weight: bold;
  background-color: #25D366; /* رنگ سبز واتس‌اپ */
  color: #333;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

#quick-order a:hover {
  background-color: #1ebe57;
}

/* ================================
   اعمال فونت روی همه عناصر
   ================================ */
html, body {
  font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
}

/* اطمینان از اعمال روی تیترها */
h1, h2, h3, h4, h5, h6, p, span, a, li, input, button, textarea {
  font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
}




/* اگر از فونت آیکون مثل Font Awesome استفاده می‌کنی */
i, [class*="fa-"], [class*="icon"] {
  font-family: FontAwesome !important; /* یا فونت آیکون تو */
}
/* تعریف فونت وزیر */
@font-face {
  font-family: 'Vazir';
  src: url('fonts/Vazir-Black-FD-WOL.ttf') format('woff2'),
       url('/fonts/Vazir-Bold-FD-WOL.ttf') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* برای لودینگ بهتر */
}

@font-face {
  font-family: 'Vazir';
  src: url('fonts/Vazir-Black-FD-WOL.ttf') format('woff2'),
       url('/fonts/Vazir-Bold-FD-WOL.ttf') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* اعمال فونت به تمام المان‌ها */
body, 
body *:not(i):not(.fa):not([class*="icon"]):not([class*="Icon"]) {
  font-family: 'Vazir', Tahoma, sans-serif !important;
}

/* برای ریسپانسیو و خوانایی بهتر */
body {
  text-align: right;
  direction: rtl;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* تنظیم سایز فونت پایه */
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}