/* --- About Me Section (Image Left, Text Right) --- */
.about-me-section {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 0 10%;
}

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

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.about-text {
  flex: 1;
  font-family: 'Proxima Nova', sans-serif;
}

.about-text h2 {
  font-family: 'Alegreya', serif;
  color: #a47d5e;
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideFadeIn 1s forwards;
  animation-delay: 0.3s;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #56534c;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideFadeIn 1s forwards;
  animation-delay: 0.5s;
}

/* Slide fade-in animation */
@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Section */
.about-gallery {
  padding: 80px 10%;
  text-align: center;
}

.about-gallery h2 {
  font-family: 'Alegreya', serif;
  color: #a47d5e;
  font-size: 32px;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 1100px) {
  .about-me-content {
    flex-direction: column;
    text-align: center;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .about-text h2 {
    font-size: 2rem;
  }

  header.hero h1 {
    font-size: 2.5rem;
  }

  header.hero p {
    font-size: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
