/* About Section */
#about {
  background: var(--bg-color);
  padding: 100px 5%;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 50px;
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-family: var(--font-serif);
}

.about-desc {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-highlight {
  color: var(--accent-color);
  font-weight: 600;
  font-style: italic;
}

.about-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--soft-shadow);
  max-height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 1.8rem;
  }

  .about-desc {
    font-size: 1rem;
  }

  .about-image {
    max-height: 400px;
  }
}

@media (max-width: 480px) {
  #about {
    padding: 60px 5%;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-desc {
    font-size: 0.95rem;
  }

  .about-image {
    max-height: 300px;
  }
}