/* about.css - SwimSmart Themed Styles */

:root {
  --primary-color: #00b3b8;
  --secondary-color: #1b1f3a;
  --accent-color: #faae2b;
  --light-bg: #f9faff;
  --text-color: #333;
  --text-light: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: var(--light-bg);
  color: var(--text-color);
}

.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-light);
  text-align: center;
  padding: 100px 20px 80px;
  clip-path: ellipse(100% 100% at 50% 0%);
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: auto;
  font-weight: 300;
}

section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 1;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.story, .highlight {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 60px;
  transition: transform 0.3s;
}

.story:hover, .highlight:hover {
  transform: translateY(-5px);
}

.story p, .highlight p {
  font-size: 18px;
  margin-bottom: 20px;
}

.highlight {
  background: #e0f7ff;
  border-left: 6px solid var(--primary-color);
}

blockquote {
  font-style: italic;
  font-size: 18px;
  border-left: 4px solid var(--primary-color);
  padding-left: 16px;
  color: #444;
  margin: 30px 0;
}

ul {
  padding-left: 20px;
  margin-top: 10px;
}

ul li {
  margin-bottom: 10px;
  font-size: 17px;
}

.team {
  text-align: center;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.team-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  max-width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  border: 4px solid var(--primary-color);
}

.team-card h4 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: var(--secondary-color);
}

.team-card p {
  font-size: 15px;
  color: #555;
}

.mission {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.mission h2 {
  font-size: 36px;
  font-weight: 800;
}

.mission p {
  font-size: 18px;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.8;
}
