/* =========================================
   ABOUT.CSS — About page styles
   Waggy Bums Dog Groomers
   ========================================= */

/* ===== STORY SECTION ===== */
.story {
  background: var(--white);
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xxl);
  align-items: center;
}

.story__image {
  position: relative;
}

.story__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.story__img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--purple);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-sm) var(--sp-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
}

.story__img-badge small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 500;
}

.story__content {}

.story__content p {
  margin-bottom: var(--sp-md);
  font-size: 1.02rem;
}

.story__values {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}

.story__value-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.story__value-item::before {
  content: '';
  width: 28px;
  height: 28px;
  background: var(--purple-light);
  border-radius: var(--r-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ===== TEAM SECTION ===== */
.team {
  background: var(--bg-alt);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
}

.team-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  border: 2px solid transparent;
}

.team-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--r-round);
  background: var(--purple-light);
  margin: 0 auto var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--purple-dark);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--purple);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-sm);
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

.team-card__fun {
  margin-top: var(--sp-sm);
  background: var(--purple-xlight);
  border-radius: var(--r-md);
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--purple-dark);
}

/* ===== PROCESS SECTION ===== */
.process {
  background: var(--white);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: var(--r-round);
  margin: 0 auto var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 20px rgba(149, 117, 205, 0.4);
  border: 4px solid var(--white);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--purple-dark);
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== VALUES ===== */
.values {
  background: linear-gradient(135deg, var(--purple-xlight) 0%, var(--pink-xlight) 100%);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.value-item {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  background: var(--white);
  padding: var(--sp-md);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-item__icon {
  width: 52px;
  height: 52px;
  background: var(--purple-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.value-item__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.value-item__text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .story__inner { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
}

@media (max-width: 580px) {
  .team__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
}
