/* =======================
   About Section — Modern Layout & Style
   ======================= */
.about-section {
  background: linear-gradient(120deg, #f6f7fb 60%, #ece8e0 100%);
  min-height: 100vh;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(80, 60, 10, 0.10);
  max-width: 1100px;
  width: 90%;
  display: flex;
  gap: 48px;
  padding: 48px 36px 40px 36px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  border: 2px solid #ede1d1;
}

.about-text {
  flex: 2 1 320px;
  min-width: 260px;
  color: #2d2a26;
  font-family: 'Montserrat', sans-serif;
}
.about-text h2 {
  font-size: 2.2rem;
  color: #6e5c3c; /* Use #222 for dark gray, #6e5c3c for a warm brown */
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}
.about-text h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 8px 0 0 0;
  background: linear-gradient(90deg, #bda98e 60%, #6e5c3c 100%);
  border-radius: 2px;
}
}
.about-text p {
  font-size: 1.18rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #3f3526;
  text-shadow: 0 1px 0 #f8f8f8;
  letter-spacing: 0.01em;
}
.about-text p:last-child {
  margin-bottom: 0;
}

.about-photo {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.about-photo img {
  width: 100%;
  max-width: 340px;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(189,169,142,0.16);
  object-fit: cover;
  border: 2px solid #ece8e0;
  background: #e8e4dd;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}
.about-photo img:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 40px rgba(80,60,10,0.17);
}

/* Responsive adjustments */
@media (max-width: 950px) {
  .about-container {
    flex-direction: column;
    padding: 32px 12px;
    gap: 28px;
  }
  .about-photo {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .about-section {
    padding: 32px 0 24px 0;
margin-top: 80px; /*
  }
  .about-container {
    padding: 16px 2vw;
  }
  .about-text h2 {
    font-size: 1.35rem;
  }
  .about-text p {
    font-size: 1rem;
  }
}