/* Font import zaten Home.css'te var: Playfair Display & Poppins */

.team-page {
  padding-top: 20px;
  min-height: 100vh;
  background-color: #FDF6F0;
  font-family: 'Poppins', sans-serif;
  color: #3E3E3E;
}

/* Header */
.team-header {
  background: linear-gradient(135deg, #FADADD 0%, #A0526F 100%);
  color: #FDF6F0;
  padding: 3rem 2rem 2rem;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  color: #FFF0F5;
}

.page-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
  color: #FDF6F0;
}

/* Content */
.team-content {
  padding: 4rem 2rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.team-card {
  background: #FFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(160, 82, 111, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #FADADD;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(160, 82, 111, 0.2);
}

/* Member Image */
.member-image {
  background: linear-gradient(135deg, #E8DFF5 0%, #FDF6F0 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #FADADD;
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-emoji {
  font-size: 5rem;
  z-index: 1;
}

/* Member Info */
.member-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 250px;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #A0526F;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.member-position {
  font-size: 1.1rem;
  color: #D8A7B1;
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-description {
  color: #6D6875;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  flex-grow: 1;
}

.linkedin-link {
  align-self: center;
  background-color: #A0526F;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
  width: fit-content;
}

.linkedin-link:hover {
  background-color: #D8A7B1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(160, 82, 111, 0.3);
}

/* RESPONSIVE DÜZENLEME */
@media (max-width: 1200px) {
  .team-grid {
    gap: 1.5rem;
  }

  .team-card {
    border-radius: 18px;
  }
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-header {
    padding: 4rem 1.5rem 3rem;
  }
  
  .page-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-header {
    padding: 3rem 1rem 2rem;
  }
  
  .page-title {
    font-size: 2.2rem;
  }
  
  .page-description {
    font-size: 1rem;
  }
  
  .team-content {
    padding: 2rem 1rem;
  }

  .linkedin-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.8rem;
  }
  
  .page-description {
    font-size: 0.9rem;
  }
  
  .member-name {
    font-size: 1.2rem;
  }
  
  .member-position {
    font-size: 1rem;
  }
  
  .member-description {
    font-size: 0.9rem;
  }
  
  .linkedin-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}
