/* About Section */
.about-section {
  background-color: #f9f8f6;
  padding: clamp(3rem, 6vw, 6rem) 1rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-content {
  max-width: 600px;
  text-align: left;
}

.about-title {
  font-family: 'DM Serif Text', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #2e2e2e;
  margin-bottom: 0.5rem;
}

.about-subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #a87a4e;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-text {
  font-family: 'Poppins', sans-serif;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-btn {
  display: inline-block;
  border: 2px solid #a87a4e;
  color: #a87a4e;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #a87a4e;
  color: #fff;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
    align-items: left;
    justify-content: center;
    text-align: left;
  }

  .about-content {
    flex: 1;
  }

  .about-image {
    flex: 1;
  }
}
