/* استایل‌های صفحه تاریخ - طراحی آرشیو، آرام و کلاسیک */

.history-page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  background-color: #faf9f7;
}

.history-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #d4c5b0;
}

.history-header h1 {
  font-size: 2.8rem;
  color: #5a4a3a;
  margin: 0 0 15px 0;
  font-weight: 700;
  font-family: 'Vazirmatn', serif;
}

.history-subtitle {
  font-size: 1.15rem;
  color: #7a6a5a;
  margin: 0;
  font-style: italic;
}

/* فیلترها */
.history-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}

.history-filter-btn {
  padding: 10px 22px;
  background-color: #e8e0d5;
  border: 1px solid #d4c5b0;
  color: #5a4a3a;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.history-filter-btn:hover,
.history-filter-btn.active {
  background-color: #5a4a3a;
  color: #faf9f7;
  border-color: #5a4a3a;
}

/* محتوای تاریخ */
.history-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* روایت تاریخی */
.history-narrative {
  background: white;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-right: 4px solid #8b7355;
  transition: transform 0.3s, box-shadow 0.3s;
}

.history-narrative:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.history-narrative-date {
  color: #8b7355;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.history-narrative-title {
  margin: 0 0 15px 0;
  font-size: 1.4rem;
  color: #3a2f25;
  line-height: 1.5;
}

.history-narrative-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.history-narrative-title a:hover {
  color: #8b7355;
}

.history-narrative-excerpt {
  color: #5a4a3a;
  line-height: 1.8;
  margin: 0;
  font-size: 0.95rem;
}

/* تصاویر و اسناد */
.history-archive-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.history-archive-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.history-archive-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #e8e0d5;
}

.history-archive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-archive-content {
  padding: 20px;
}

.history-archive-title {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  color: #3a2f25;
}

.history-archive-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.history-archive-title a:hover {
  color: #8b7355;
}

.history-archive-date {
  color: #8b7355;
  font-size: 0.85rem;
}

/* شخصیت‌های تاریخی */
.history-figure {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.history-figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.history-figure-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: #e8e0d5;
}

.history-figure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-figure-content {
  padding: 25px;
}

.history-figure-name {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  color: #3a2f25;
  font-weight: 700;
}

.history-figure-years {
  color: #8b7355;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}

.history-figure-bio {
  color: #5a4a3a;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.loading {
  text-align: center;
  padding: 60px;
  color: #7a6a5a;
  font-size: 1.1rem;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  grid-column: 1 / -1;
}

.empty-state h3 {
  color: #5a4a3a;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.empty-state p {
  color: #7a6a5a;
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .history-content {
    grid-template-columns: 1fr;
  }
  
  .history-header h1 {
    font-size: 2rem;
  }
  
  .history-filters {
    flex-direction: column;
  }
  
  .history-filter-btn {
    width: 100%;
    text-align: center;
  }
}

