/* ================= About Section ================= */
.about-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #1b2d1b, #556b2f);
  color: #f8fafc;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-section h2 {
  text-align: center;
  font-size: 28px;
  color: #eab308;
  margin-bottom: 35px;
}

/* Content Flex */
.about-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.about-text {
  flex: 1 1 450px;
  font-size: 15px;
  line-height: 1.8;
}

.about-text a {
  color: #eab308;
  text-decoration: underline;
}

.about-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.about-buttons .btn-follow,
.about-buttons .btn-share {
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  background: linear-gradient(135deg, #6b8e23, #556b2f);
  color: #fff;
  transition: transform 0.3s ease;
}

.about-buttons .btn-follow:hover,
.about-buttons .btn-share:hover {
  transform: scale(1.05);
}

/* Media Section */
.about-media {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-media img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  object-fit: cover;
}

/* Footer */
.about-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}
