/* Ümumi section */
.about-section {
  padding: clamp(30px, 4vw, 60px) 16px;
  background: #f9f9f9;
  color: #333;
  font-family: "Poppins", sans-serif;
}

/* Başlıq */
.about-section h2 {
  text-align: center;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #222;
  margin-bottom: 24px;
  position: relative;
}

.about-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d4af37;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Məzmun konteyneri */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Loqo */
.about-content .imgkontentyazi {
  margin-bottom: 20px;
}

.about-content .imgkontentyazi img {
  max-width: 160px;
  width: 100%;
  height: auto;
}

/* Məzmun mətni */
.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #555;
}

/* Əlavə mətn (başlanğıcda gizli) */
.more-text {
  display: none;
  margin-top: 16px;
}

/* JS ilə show class-ı gələndə görünür */
.more-text.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Fade-in effekti */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Düymə */
.read-more-btn {
  padding: 10px 20px;
  background: #d4af37;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  max-width: 150px;
}

.read-more-btn:hover {
  background: #b8932b;
  transform: translateY(-1px);
}

.read-more-btn:active {
  transform: translateY(1px);
}

/* Mobil */
@media (max-width: 600px) {
  .about-content p {
    font-size: 15px;
  }
  .read-more-btn {
    width: 100%;
    font-size: 14px;
  }
}
