body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

 
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0d6efd, #3a0ca3);
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
}
.hero-img {
    max-width: 100%; /* Kapsayıcının genişliğini aşmasını engeller */
    height: auto; /* En-boy oranını korur */
    object-fit: contain; /* Resmin tamamının görünmesini sağlar */
}

.hero-img {
  max-height: 400px;
  object-fit: cover;
}

/* Search Section */
.search-section input,
.search-section select {
  border-radius: 10px;
}

.search-section .btn {
  border-radius: 10px;
}


.events-section {
    background-color: white;
    padding: 3rem 0;
  }
  
  .event-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
  }
  
  .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  
  .event-card .card-img-top {
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
    background-color: #f8f9fa;
  }
  
  .event-card:hover .card-img-top {
    transform: scale(1.03);
  }
  
  .event-card .card-body {
    padding: 1.5rem;
  }
  
  .event-card .card-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  
  .event-card .event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .event-card .event-category {
    background-color: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
  }
  
  .event-card .event-date {
    background-color: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
  }
  
  .event-card .event-location {
    color: #7f8c8d;
    font-size: 0.9rem;
  }
  
  .event-card .card-text {
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .event-card .btn-details {
    background-color: #3498db;
    border: none;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .event-card .btn-details:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
  }
  
  .event-card .paid-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
  }
  
  .section-title {
    position: relative;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3498db, #e74c3c);
    margin: 15px auto 0;
    border-radius: 2px;
  }
  
  .btn-more-events {
    background: linear-gradient(to right, #3498db, #9b59b6);
    border: none;
    border-radius: 30px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  }
  
  .btn-more-events:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    color: white;
  }
.btn-show-more {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(110, 142, 251, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .btn-show-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(110, 142, 251, 0.4);
    color: white;
  }
  
  .btn-show-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .btn-show-more:hover i {
    transform: translateX(3px);
  }

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding: 40px 0;
  }

    .hero-img {
        margin-top: 20px;
        max-height: 250px; /* Telefon modunda daha küçük bir yükseklik belirleyebilirsiniz */
    }
  .hero-img {
    margin-top: 20px;
  }

  .d-flex.gap-3 {
    justify-content: center;
  }
      /* Hero bölümündeki buton grubunu ortala */
    .d-flex.gap-3.flex-wrap {
        justify-content: center;
        flex-direction: column; /* Butonları alt alta sırala */
        align-items: center;
    }

    /* Etkinlikleri Gör butonunun telefon modundaki görünümünü özelleştir */
    .d-flex.gap-3.flex-wrap .btn {
        width: 100%; /* Kapsayıcısını dolduracak şekilde tam genişlik ver */
        max-width: 250px; /* Çok geniş olmasını engelle */
    }
}
