/* ===========================
   About Section
   =========================== */
.about {
  padding: 5rem 0;
  background-color: #fafafa;
}

.about-content {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: center;
}

/* About Text */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  padding-right: 2rem;
}

.about-title {
  font-size: 2.75rem;
  font-weight: 700;
  /* color: #1a1a1a; */
  line-height: 1.2;
  margin-bottom: 0.25rem;
  font-family: "Marcellus", serif;
  /* font-size: 2rem; */
  /* font-weight: 400; */
  color: #382a25;
  /* line-height: 1.4; */
  /* margin-bottom: 0.75rem; */
}

.about-subtitle {
  font-family: "Marcellus", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #7a5c44;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #666;
  margin: 0;
  text-align: justify;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  background-color: var(--primary-color);
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.75rem;
}

.about-btn:hover {
  background-color: #8b7355;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(163, 133, 101, 0.3);
}

/* About Image */
.about-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  height: 100%;
  min-height: 450px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Decorative Element */
.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 5px;
  z-index: -1;
}

/* Responsive */
@media (max-width: 1024px) {
  .about {
    padding: 5rem 0;
  }

  .about-content {
    gap: 3rem;
  }

  .about-title {
    font-size: 2.25rem;
  }

  .about-subtitle {
    font-size: 1.35rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 4rem 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-text {
    order: 2;
    padding: 0;
  }

  .about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    min-height: 130px;
    position: absolute;
    right: 0;
    top: 8%;
  }
  .about-image img {
    width: auto;
    height: 100%;
  }
  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1.25rem;
  }

  .about-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 3rem 0;
  }

  .about-content {
    gap: 2rem;
    position: relative;
  }

  .about-title {
    font-size: 1.75rem;
  }

  .about-subtitle {
    font-size: 1.15rem;
  }

  .about-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}
