/* KARTLAR */

.featured-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 50px 0;
  font-family: 'Poppins', sans-serif;
}


.featured-cards .card {
  background: linear-gradient(135deg, #1a1a1a, #222);
  color: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  transform: translateY(50px);
  opacity:1;
}

.featured-cards .card img {
  width: 250px;
  height: 140px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.featured-cards .card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #FF9800;
}

.featured-cards .card p {
  font-size: 0.9rem;
  color: #ccc;
}

.featured-cards .card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 25px rgba(255, 152, 0, 0.5);
}

/* Yeni Kart */

.hcard-container {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Kartlar eşit yüksek olsun */
    padding: 20px;
    gap: 20px; /* Kartlar arası boşluk */
    margin-top: 100px;
    margin-bottom: 150px;
    flex-wrap: wrap; /* Küçük ekranlarda alt satıra geçmesi için */
}

.hcard {
    width: 350px;
    height:auto; /* içeriğe göre yükseklik */
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #e0e0e0; /* paragraf rengi */
    background: linear-gradient(135deg, #1c1c1c, #2b2b2b, #383838); /* koyu gri-siyah gradient */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 165, 0, 0.2); /* ince turuncu border */
    padding: 20px;
    transition: all 0.5s ease-in-out;
    transform: translateY(50px);
    opacity:0;
}



.hcard h1 {
    color: orange; /* başlıklar turuncu */
    margin-bottom: 15px;
}

.hcard p {
    color: #e0e0e0; /* paragraf rengi */
    
    line-height: 1.6;
}

.hcard:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 165, 0, 0.4); /* turuncu glow */
}

.number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF9800; /* Parlak vurgu rengi */
}

.hcard.show {

  opacity:1;
  
}


