/* Osman Kara Profil */
.profile {
  text-align: center;
  margin-bottom: 60px;
  
}

.profile img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 8px; /* Hafif yuvarlak köşeler */
  filter: grayscale(100%);
}

.profile h2 {
  margin: 20px 0 5px;
  font-size: 24px;
  color: #333333;
  font-weight: 600; /* Daha modern ve belirgin */
}

.profile h3 {
  margin: 0;
  font-size: 18px;
  color: #555555;
  font-weight: 400;
}

/* Team Section */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px; /* Genel boşluk */
}

.team-member, .worker-member {
  text-align: center;
  padding: 20px;
  border: 2px solid #8ca58c;
  border-radius: 10px; /* Hafif yuvarlak köşeler */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px; /* Minimum yükseklik ayarlandı */
  height: 150px; /* Sabit yükseklik */
}
.team-member:hover, .worker-member:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Hover gölge */
}

.team-member h4, .worker-member h4 {
  color: #333333;
  margin: 5px 0;
  font-size: 18px;
  font-weight: 500;
}

.team-member p, .worker-member p {
  margin: 0;
  font-size: 16px;
  color: #666666;
  font-weight: 400;
}

/* Yönetim Kurulu Başlığı */
.managing-board-header {
  background-color: #4a5042; /* Dark green-gray background */
  color: #ffffff;
  text-align: center;
  padding: 25px 20px;
  font-weight: 300;
  border-bottom: 3px solid #8ca58c;
  margin-top: 60px;
}

.managing-board-header h1 {
  margin: 0;
  font-size: 26px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .team {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-member, .worker-member {
    width: 100%;
    padding: 15px;
    min-height: 180px; /* Mobilde biraz daha yüksek */
    height: auto; /* Mobilde içeriğe göre yüksekliği ayarlayın */
  }

  .worker-member h4, .team-member h4 {
    margin-top: 0;
  }

  .team:last-child {
    justify-content: center;
  }
}

@media screen and (max-width: 400px) {
  .profile h2 {
    font-size: 22px;
  }
  
  .profile h3 {
    font-size: 16px;
  }
  
  .team-member h4, .worker-member h4 {
    font-size: 18px;
  }
  
  .team-member p, .worker-member p {
    font-size: 15px;
  }
}
