/* =====================================================
   ABOUT PAGE STYLES – Modern, Bold Design
   ===================================================== */

/* HERO SECTION */
.about-hero {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-hero p {
  font-size: 1.375rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.7;
}

/* STORY SECTION */
.story-section {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.story-text h2 {
  font-size: 2.75rem;
  margin-bottom: var(--spacing-lg);
  color: var(--dark-text);
}

.story-text p {
  font-size: 1.125rem;
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.story-visual {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xxl);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-red);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 900;
}

/* MISSION & VALUES */
.mission-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-bg);
}

.mission-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xxl);
}

.mission-header h2 {
  font-size: 2.75rem;
  margin-bottom: var(--spacing-md);
  color: var(--dark-text);
}

.mission-header .highlight {
  color: var(--brand-red);
}

.mission-header p {
  font-size: 1.25rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.value-card {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--brand-red);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-red);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--dark-text);
}

.value-card p {
  font-size: 1rem;
  color: var(--mid-grey);
  line-height: 1.7;
  margin: 0;
}

/* TEAM SECTION */
.team-section {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
}

.team-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.team-header h2 {
  font-size: 2.75rem;
  margin-bottom: var(--spacing-md);
  color: var(--dark-text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.team-member {
  background: var(--light-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-red);
}

.member-photo {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
}

.member-info {
  padding: var(--spacing-lg);
}

.member-info h3 {
  font-size: 1.375rem;
  margin-bottom: 4px;
  color: var(--dark-text);
}

.member-role {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-md);
}

.member-info p {
  font-size: 1rem;
  color: var(--mid-grey);
  line-height: 1.6;
  margin: 0;
}

/* DUTCH HERITAGE */
.heritage-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white);
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.heritage-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
}

.heritage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.heritage-text h2 {
  font-size: 2.75rem;
  margin-bottom: var(--spacing-lg);
}

.heritage-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.heritage-visual {
  text-align: center;
  font-size: 8rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .story-content,
  .heritage-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero p {
    font-size: 1.125rem;
  }

  .story-text h2,
  .mission-header h2,
  .team-header h2,
  .heritage-text h2 {
    font-size: 2rem;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}
