/* === MEZUNLARIMIZ BÖLÜMÜ === */

.graduates-section {
  background: linear-gradient(to bottom, #fff, #fff5f5);
  padding: 80px 20px;
  text-align: center;
}

.graduates-container {
  max-width: 1200px;
  margin: 0 auto;
}

.graduates-section h1 {
  font-size: 2.5em;
  color: #c70000;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.05);
  animation: fadeInDown 0.8s ease-out forwards;
  opacity: 0;
}

.intro-text {
  font-size: 1.1em;
  color: #444;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.graduate-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  padding: 0 10px;
}

.graduate-card {
  background: #fff;
  border-left: 6px solid #c70000;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.graduate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.graduate-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.graduate-card h3 {
  font-size: 1.2em;
  color: #c70000;
  margin-bottom: 8px;
}

.graduate-card p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
}

/* Call-to-action mesaj kutusu */
.callout {
  background-color: #fff0f0;
  padding: 30px;
  border-radius: 16px;
  border-left: 6px solid #c70000;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.callout p {
  font-size: 1.1em;
  color: #444;
  line-height: 1.6;
}

.callout a {
  color: #c70000;
  font-weight: bold;
  text-decoration: underline;
}

/* Basit fade animasyonları */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil uyumluluk */
@media (max-width: 600px) {
  .graduates-section h1 {
    font-size: 2em;
  }
  .intro-text {
    font-size: 1em;
    padding: 0 10px;
  }
  .callout {
    padding: 20px;
  }
}
