/* =========================
   ABOUT CARD SECTION
========================= */
.about-card-section {
  position: relative;
  margin-top: -100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: transparent;
  z-index: 20; /* ✅ ensures it appears above hero */
}


.about-card {
  background-color: #ffffff;
  border: 2px solid var(--color-accent);
  border-radius: 0;
  max-width: 800px;
  padding: 40px 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-card p {
  font-size: var(--font-base);
  line-height: var(--lh-loose);
  color: var(--color-body);
}


/* BUTTON */
.about-button {
  display: inline-block;
  margin-top: 40px;
  background-color: var(--color-accent);
  color: #fff;
  text-decoration: none;
  font-size: var(--font-md);
  font-weight: var(--fw-semibold);
  padding: 14px 36px;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.about-button:hover {
  background-color: #b8952f;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
