/* style/about.css */

/* Custom Colors */
:root {
  --tk66-blue-dark: #113B7A;
  --tk66-blue-light: #1D5FD1;
  --tk66-button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --tk66-card-bg: #10233F;
  --tk66-text-main: #F3F8FF;
  --tk66-text-secondary: #AFC4E8;
  --tk66-border: #244D84;
  --tk66-glow: #4FA8FF;
  --tk66-gold: #F2C14E;
  --tk66-divider: #1B3357;
  --tk66-deep-navy: #08162B;
}

.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--tk66-text-main); /* Default text color for the page content */
  background-color: var(--tk66-deep-navy); /* From shared.css, assuming it's dark */
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-about__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--tk66-divider);
}

.page-about__section:last-of-type {
  border-bottom: none;
}

.page-about__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--tk66-gold);
  line-height: 1.2;
}

.page-about__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--tk66-text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO Section */
.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background-color: var(--tk66-deep-navy);
}

.page-about__hero-image {
  width: 100%;
  max-height: 600px; /* Limit height */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-about__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  max-width: 100%; /* General image responsive rule */
}

.page-about__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 15px;
}

.page-about__main-title {
  font-size: clamp(32px, 5vw, 48px); /* Using clamp for H1 font-size */
  font-weight: 700;
  color: var(--tk66-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.page-about__hero-description {
  font-size: 20px;
  color: var(--tk66-text-secondary);
  margin-bottom: 30px;
  line-height: 1.5;
}