/* ===================================================================
   RIVA MASAJ SPA - hakkimizda.css
   Hakkımızda sayfası: Page Hero, About Story, Values, CTA
   =================================================================== */

/* ===== Page Hero (Inner Pages Shared Pattern) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--clr-overlay);
  display: flex;
  align-items: center;
}

.page-hero__overlay h1 {
  font-size: var(--fs-h1);
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.page-hero .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero .breadcrumb-item a:hover {
  color: var(--clr-secondary);
}

.page-hero .breadcrumb-item.active {
  color: var(--clr-secondary);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .page-hero__bg {
    height: 300px;
  }
}

@media (min-width: 1200px) {
  .page-hero__bg {
    height: 400px;
  }
}

/* ===== About Story ===== */
.about-story {
  background-color: var(--clr-bg);
}

.about-story__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-story h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.about-story p {
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

/* ===== Values ===== */
.values {
  background-color: var(--clr-bg-alt);
}

.value-card {
  background-color: var(--clr-white);
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}

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

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 107, 106, 0.1);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.value-card__icon i {
  font-size: 1.5rem;
  color: var(--clr-primary);
}

.value-card:hover .value-card__icon {
  background-color: var(--clr-primary);
}

.value-card:hover .value-card__icon i {
  color: var(--clr-white);
}

.value-card h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-xs);
}

.value-card p {
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  margin-bottom: 0;
}

/* ===== CTA (reuse from index.css pattern) ===== */
.cta {
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 50%, var(--clr-primary-light) 100%);
  color: var(--clr-text-on-dark);
}

.cta h2 {
  font-size: var(--fs-h2);
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.cta__buttons .btn-outline-light-custom {
  background-color: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta__buttons .btn-outline-light-custom:hover {
  background-color: var(--clr-white);
  color: var(--clr-primary-dark);
  border-color: var(--clr-white);
}
