/* =========================
   ABOUT HERO
========================= */
.about-hero {
  position: relative;
  background-image: url("/images/home-hero.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.about-hero * {
  position: relative;
  z-index: 2;
}

/* =========================
   ABOUT US SECTION
========================= */
.about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 80px 60px;
  background: #f7f5f2;
  font-family: "DM Sans", sans-serif;
}

.about-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.about-card {
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: white;
  border: 1px solid #ece9e3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.11);
  border-color: #c0873f44;
}

.about-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #c0873f22, #c0873f11);
  border: 1px solid #c0873f33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #c0873f;
}

.about-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.about-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin: 0;
  flex-grow: 1;
}

/* =========================
   TEAM SECTION
========================= */
.team {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 80px 60px;
  background: black;
  font-family: "DM Sans", sans-serif;
}

.team-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 0;
  width: 100%;
  max-width: 1200px;
}

.team-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 16px 4px 24px;
  scrollbar-width: none;
}

.team-container::-webkit-scrollbar {
  display: none;
}

.team-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 220px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: #ffffff;
  box-shadow: 0 0 6px #fff, 0 0 14px rgba(255, 255, 255, 0.5),
    0 0 28px rgba(255, 255, 255, 0.2), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.team-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-img img {
  transform: scale(1.05);
}

.team-card-info {
  padding: 16px 18px 20px;
  text-align: center;
  border-top: 3px solid #c0873f;
}

.team-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 5px;
}

.team-role {
  font-size: 12px;
  color: #999;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.scroll-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #e8e0d4;
  background: #fff;
  color: #c0873f;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  z-index: 2;
}

.scroll-btn:hover {
  background: #c0873f;
  color: #fff;
  border-color: #c0873f;
  transform: scale(1.08);
}

/* =========================
   QUOTE ICON
========================= */
.quote-icon {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  color: #c0873f22;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .scroll-btn {
    display: none;
  }
}

@media (max-width: 900px) {
  .about-us,
  .team {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .about-us,
  .team {
    padding: 50px 20px;
  }

  .about-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
  }
  .about-card h2 {
    font-size: 1.4rem;
  }
  .about-card p {
    font-size: 14px;
  }

}

@media (max-width: 600px) {
  .about-us,
  .team {
    padding: 40px 16px;
  }

  .about-card {
    gap: 0.8rem;
  }
  .about-card-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .quote-icon {
    font-size: 60px;
  }
}

@media (max-width: 460px) {
  .about-us,
  .team {
    padding: 32px 12px;
  }

  .about-card {
    padding: 1.5rem 1.2rem;
    border-radius: 12px;
  }
  .about-card h2 {
    font-size: 1.2rem;
  }
  .about-card p {
    font-size: 13px;
    line-height: 1.7;
  }
  .about-card-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 10px;
  }

  .quote-icon {
    font-size: 50px;
    top: 6px;
    left: 12px;
  }
}
