/* Om Oss Page Styles - Consistent with existing design */

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 140px 0 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.hero-section h1 span {
  color: rgba(255, 255, 255, 0.7);
}

/* Our Story Section */
.text-content {
  max-width: 800px;
  margin: 0 auto;
}

.text-content p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.text-content p.font-medium {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-member-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.team-member-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.team-role {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  padding: 0.375rem 0.75rem;
  background-color: var(--color-gray-100);
  border-radius: var(--radius-full);
}

.team-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-icon-container {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

.value-icon {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-title {
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  margin-bottom: 0;
}

/* CTA Section */
.cta-container {
  background-color: var(--color-gray-100);
  color: var(--color-text-primary);
  padding: 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid var(--color-gray-200);
}

.cta-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.cta-description {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: var(--font-size-4xl);
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-container {
    padding: 2rem;
  }
  
  .cta-title {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: var(--font-size-3xl);
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Simple reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}