/* ===============================
   استایل صفحه درباره ما | زرند احداث
   طراحی هماهنگ با سایت اصلی
   =============================== */

/* فونت و تنظیمات کلی */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: "Vazirmatn", sans-serif;
  direction: rtl;
  background-color: #ffffff;
  color: #222;
  line-height: 1.9;
}

/* ===============================
   هدر سایت
   =============================== */
header {
  background: linear-gradient(90deg, #d4af37 0%, #b9962f 100%);
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* محتوای داخلی هدر */
header .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* لوگو */
header h1 {
  font-weight: 700;
  font-size: 1.6rem;
  color: #000;
  margin: 0;
}

/* منوی پایین هدر */
nav {
  background-color: #000;
  border-top: 2px solid #d4af37;
  width: 100%;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 0;
  padding: 12px 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 0.95rem;
}

nav a:hover,
nav a.active {
  color: #d4af37;
}

/* ===============================
   بخش درباره ما
   =============================== */
.about-section {
  padding: 80px 0;
  background-color: #fafafa;
}

.about-section .container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

/* عنوان صفحه */
.about-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  position: relative;
}

.about-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d4af37;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* پاراگراف‌ها */
.about-section p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

/* لیست‌ها */
.about-section ul {
  margin: 20px 0;
  padding-right: 25px;
  color: #333;
}

.about-section ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  position: relative;
}

.about-section ul li::before {
  content: "•";
  color: #d4af37;
  position: absolute;
  right: -18px;
  font-size: 1.2rem;
  top: -1px;
}

/* بولدها */
.about-section strong {
  color: #000;
}

/* ===============================
   فوتر
   =============================== */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  border-top: 3px solid #d4af37;
}

footer p {
  margin: 0;
}

/* ===============================
   واکنش‌گرا
   =============================== */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .about-section .container {
    padding: 25px;
  }

  .about-section h2 {
    font-size: 1.7rem;
  }
}
