/* Auxiliary Pages Styles */

/* Two Column Layout for About Page */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  align-items: center;
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.about-two-col.reverse {
  direction: rtl;
}

.about-two-col.reverse > * {
  direction: ltr;
}

.about-col-text h2 {
  margin-top: 0;
}

.about-col-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-illustration {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: calc(var(--spacing-unit) * 2);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--sakura-pale) 0%, var(--vanilla-cream) 100%);
  padding: calc(var(--spacing-unit) * 10) 0 calc(var(--spacing-unit) * 8);
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--charcoal);
  margin-bottom: calc(var(--spacing-unit) * 2);
  font-weight: 700;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--charcoal-light);
}

/* Page Sections */
.page-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background-color: var(--white);
}

.page-section.alt-bg {
  background-color: var(--linen);
}

.content-block {
  max-width: 900px;
  margin: 0 auto;
}

.content-block h2 {
  color: var(--charcoal);
  margin-bottom: calc(var(--spacing-unit) * 4);
  font-size: 2rem;
}

.content-block h3 {
  color: var(--charcoal);
  margin-top: calc(var(--spacing-unit) * 4);
  margin-bottom: calc(var(--spacing-unit) * 2);
  font-size: 1.5rem;
}

.content-block p {
  color: var(--charcoal-light);
  margin-bottom: calc(var(--spacing-unit) * 3);
  line-height: 1.8;
}

.content-block ul,
.content-block ol {
  margin-left: calc(var(--spacing-unit) * 4);
  margin-bottom: calc(var(--spacing-unit) * 3);
  color: var(--charcoal-light);
}

.content-block li {
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  line-height: 1.8;
}

.content-block strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Values Grid (About Page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
  margin-top: calc(var(--spacing-unit) * 4);
}

.value-item {
  padding: calc(var(--spacing-unit) * 4);
  background-color: var(--white);
  border-radius: calc(var(--spacing-unit) * 2);
  border: 1px solid var(--sakura-light);
}

.value-item h3 {
  color: var(--sakura-pink);
  margin-top: 0;
  margin-bottom: calc(var(--spacing-unit) * 2);
  font-size: 1.25rem;
}

.value-item p {
  color: var(--charcoal-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Page CTA */
.page-cta {
  background: linear-gradient(135deg, var(--sakura-pink) 0%, var(--matcha-green) 100%);
  padding: calc(var(--spacing-unit) * 10) 0;
  text-align: center;
}

.page-cta h2 {
  color: var(--white);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.page-cta p {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.page-cta .btn {
  background-color: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.page-cta .btn:hover {
  background-color: var(--vanilla-cream);
  border-color: var(--vanilla-cream);
}

/* Footer Links Section */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 2);
}

.footer-links h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: calc(var(--spacing-unit) * 1);
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.footer-links a {
  color: var(--sakura-light);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .content-block h2 {
    font-size: 1.75rem;
  }

  .content-block h3 {
    font-size: 1.25rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    padding: calc(var(--spacing-unit) * 3);
  }

  .about-two-col {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 4);
  }

  .about-two-col.reverse {
    direction: ltr;
  }

  .about-illustration {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: calc(var(--spacing-unit) * 6) 0 calc(var(--spacing-unit) * 5);
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-section {
    padding: calc(var(--spacing-unit) * 5) 0;
  }

  .content-block {
    padding: 0 calc(var(--spacing-unit) * 2);
  }
}
