.website-history {
  padding: 3rem 1rem;
  background: #1f1e18;
}

.history-title {
  text-align: center;
  color: #f5c147; /* golden mustard */
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.history-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  background: #2a291f; /* dark warm brown */
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 4px 14px #00000044;
  transition: transform 0.2s, box-shadow 0.2s;
}
.history-item:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 18px #00000066;
}

.history-img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #f5c147;
  box-shadow: 0 2px 8px #00000033;
}

.history-content h3 {
  margin: 0 0 0.5rem;
  color: #f0e3bc; /* soft gold-cream */
  font-size: 1.3rem;
}

.history-content p {
  color: #e0dccd;
  font-size: 1rem;
  line-height: 1.6;
}

.show-more-btn {
  margin-top: 0.7rem;
  background: #b8860b;
  color: #fffbe6;
  border: none;
  border-radius: 8px;
  padding: 0.4rem 1.1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  display: block;
}
.show-more-btn:hover {
  background: #a0760b;
}
.history-desc {
  border-left: 4px solid #11100c;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px #d6d2c822;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px);}
  to { opacity: 1; transform: translateY(0);}
}
@media (max-width: 700px) {
  .history-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .history-img {
    width: 100%;
    height: auto;
  }
  .history-desc {
    padding: 0.7rem;
    font-size: 0.98rem;
  }
  .show-more-btn {
    width: 100%;
    font-size: 0.98rem;
  }
}
