/* =====================
   About Me Section
===================== */
#about-me {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Century Gothic', sans-serif;
  color: #333;
  background: linear-gradient(135deg, #f8f8f8 0%, #eaeaea 100%);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* Container: image left, text right on desktop */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Photo */
.about-photo {
  flex: 0 0 250px;
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #808080;
  margin-right: 2rem; /* spacing from text */
}

/* Text */
.about-text {
  flex: 1 1 500px;
}

.about-text h1 {
  font-size: 2rem;
  color: #b2975a;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

/* Pull Quote */
.about-quote {
  font-style: italic;
  color: #b2975a;
  border-left: 4px solid #b2975a;
  margin: 2rem 0;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  padding: 1rem;
}

/* Expertise / Services */
.about-services {
  margin-top: 2rem;
  text-align: center;
}

.about-services h2 {
  font-size: 1.5rem;
  color: #b2975a;
  margin-bottom: 1rem;
}

.about-services ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-services li {
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
}

.about-services li i {
  color: #b2975a;
  font-size: 1.2rem;
}

/* CTA Box */
.about-cta {
  text-align: center;
  margin-top: 2rem;
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.about-cta a {
  color: #b2975a;
  text-decoration: underline;
  font-weight: bold;
}

/* Fade-in class for JS */
.about-container.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-photo {
    margin-bottom: 1.5rem;
    margin-right: 0;
  }

  .about-text {
    text-align: center;
  }

  .about-services ul {
    flex-direction: column;
    gap: 1rem;
  }
}




