* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: Tahoma, "Vazirmatn", "Vazir", sans-serif;
  background:#D7D7D7;
  color:#333;
}

/* ===== هدر سایت ===== */
.site-header {
  position: relative;
}

.banner {
  position:relative;
  height:340px;
  background: linear-gradient(135deg,#6a8fe8,#a06cd5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px; 
  overflow: hidden; 
}

/* --- استایل بسم الله الرحمن الرحیم روی بنر --- */
.banner-besmellah {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  
  /* فونت بولد و زیبای نستعلیق با اندازه مناسب */
  font-family: "IranNastaliq", "Amiri", "Vazirmatn", "Tahoma", serif;
  font-size: 38px;
  font-weight: bold;
  color: #ffffff;
  
  /* ایجاد سایه متن جهت خوانایی کامل روی انواع تصاویر روشن و تاریک */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.5);
  
  /* استایل شیشه‌ای (Glassmorphism) */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  padding: 4px 45px 12px 45px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  
  z-index: 15;
  text-align: center;
  white-space: nowrap;
  pointer-events: none; /* جهت عدم تداخل در کلیک‌های احتمالی */
  direction: rtl;
}

/* استایل لوگو در هدر سایت (دایره‌ای) */
.logo-circle {
  position:absolute; top:20px; right:20px;
  width:80px; height:80px; border-radius:50%;
  background:#111; color:#fff;
  display:flex; align-items:center; justify-content:center;
  text-align:center; font-size:11px; font-weight:bold;
  border:3px solid #fff;
  overflow: hidden; 
  z-index: 12;
}
.logo-circle img { 
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.admin-login-btn {
  position:absolute; top:20px; left:20px;
  background:#fff; color:#333;
  padding:8px 16px; border-radius:20px;
  text-decoration:none; font-size:14px; font-weight:bold;
  box-shadow:0 2px 6px rgba(0,0,0,.2);
  z-index: 12; 
}

.main-menu {
  background:#1FB7DA;
  display:flex; justify-content:center; gap:40px;
  padding:14px 0;
  position: relative; 
  z-index: 10; 
  border-radius: 20px; 
  overflow: hidden;
  margin-top: 10px; /* فاصله ملایم منو با بنر بالا */
}

.main-menu a {
  color:#fff; text-decoration:none; font-weight:bold; font-size:15px;
  padding-bottom:6px; border-bottom:3px solid transparent;
  transition: border-bottom-color 0.2s;
}
.main-menu a.active,
.main-menu a:hover {
  border-bottom-color:#fff;
}

/* ===== محتوای اصلی سایت ===== */
main { max-width:1200px; margin:0 auto; padding:30px 20px; }

.intro-box {
  background:#fff; border-radius:12px;
  padding:30px; box-shadow:0 2px 10px rgba(0,0,0,.05);
  margin-bottom:40px; line-height:2; text-align:justify;
}

.section-title {
  text-align:center; margin-bottom:30px; font-size:26px; color:#222;
}

/* کارت‌های رشته */
.cards-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.field-card {
  background:#fff; border-radius:14px; overflow:hidden;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
  text-decoration:none; color:inherit;
  transition:transform .2s;
}
.field-card:hover {
  transform:translateY(-4px); 
}
.card-top {
  height:220px; display:flex; align-items:center; justify-content:center;
}
.gradient-bg { background:linear-gradient(135deg,#6a8fe8,#a06cd5); }
.card-top svg { width:70px; height:70px; }
.card-bottom { padding:24px; text-align:center; }
.card-bottom h3 { margin-bottom:10px; font-size:19px; }
.card-bottom p { color:#777; font-size:14px; }

/* گالری تصاویر */
.gallery-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
.gallery-item {
  border-radius:10px; overflow:hidden; background:#ddd;
  aspect-ratio:4/3;
}
.gallery-item img { width:100%; height:100%; object-fit:cover; }

/* ===== فوتر سایت ===== */
.site-footer {
  background:#16233b; color:#fff;
  text-align:center; padding:40px 20px; margin-top:40px;
}
.site-footer h3 { margin-bottom:10px; }
.site-footer p { color:#aaa; font-size:14px; }

/* ===== ریسپانسیو ===== */
@media (max-width:900px) {
  .cards-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px) {
  .cards-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:1fr; }
  .main-menu { flex-wrap:wrap; gap:16px; }
  .banner { height:220px; }
  
  /* هماهنگی اندازه فونت بسم الله در موبایل */
  .banner-besmellah {
    font-size: 26px;
    padding: 2px 25px 8px 25px;
    top: 15px;
  }
}
