/* About Sayfası Stilleri */

.about {
  padding: 2rem 0;
  min-height: calc(100vh - 80px);
}

/* Hero Section */
.about-hero {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-out;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.about-hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: slideUp 0.8s ease-out 0.4s both;
}

/* Misyon & Vizyon */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.mission-card,
.vision-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out forwards;
}

.mission-card {
  animation-delay: 0.2s;
}

.vision-card {
  animation-delay: 0.4s;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(161, 118, 62, 0.15);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.mission-card h2,
.vision-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Değerlerimiz */
.values {
  margin-bottom: 4rem;
}

.values h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3rem;
  animation: slideUp 0.8s ease-out;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out forwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(161, 118, 62, 0.15);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .about-hero p {
    font-size: 1.1rem;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-card,
  .vision-card {
    padding: 2rem;
  }
  
  .values h2 {
    font-size: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 2rem 0;
  }
  
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-hero p {
    font-size: 1rem;
  }
  
  .mission-card,
  .vision-card {
    padding: 1.5rem;
  }
  
  .mission-card h2,
  .vision-card h2 {
    font-size: 1.5rem;
  }
  
  .values h2 {
    font-size: 1.8rem;
  }
  
  .value-card h3 {
    font-size: 1.3rem;
  }
}

