/**
 * About Page - CSS Variables and Base Styles
 * Defines color palette, typography, spacing, shadows, and transitions
 */

:root {
  /* Color Palette */
  --primary-color: #000;
  --secondary-color: #434343;
  --accent-color: #c9a77c;
  --accent-gradient: linear-gradient(135deg, #c9a77c 0%, #b8956b 100%);
  --success-color: #22c55e;
  --text-color: #333;
  --text-light: #777;
  --text-muted: #999;
  --bg-primary: #fff;
  --bg-secondary: #fafafa;
  --bg-gradient: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);

  /* Typography */
  --serif-font: Georgia, "Times New Roman", Times, serif;
  --sans-font: "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --section-spacing: 100px;
  --container-padding: 40px;
  --border-radius: 0;
  --border-radius-lg: 0;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

.about-page-wrapper {
  width: 100%;
  max-width: 100%;
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Styles */
.about-hero-section,
.about-vision-section,
.about-principles-section,
.about-timeline-section,
.about-team-section,
.about-cta-section {
  padding: var(--section-spacing) 0;
  position: relative;
}

.about-vision-section,
.about-timeline-section {
  background: var(--bg-gradient);
}

.about-principles-section,
.about-cta-section {
  background: var(--bg-primary);
}

/* Section Headers */
.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-title,
.modern-section-title {
  font-family: var(--serif-font);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
  position: relative;
  text-transform: uppercase;
}

.section-title::after,
.modern-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 0;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-light);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--sans-font);
}
