/* Hero Banner
------------------- */

.hero-banner {
  position: relative;
  background-image: url('../images/banner-pattern.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  text-align: left;
  border-radius: 20px;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(123, 65, 214, 0.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(49, 25, 69, 0.9) 0%, rgba(143, 37, 118, 0.8) 100%);
  z-index: 1;
}

.hero-overlay:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/overlay-pattern.svg');
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  padding: 3rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-banner h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.text-gradient {
  background: linear-gradient(45deg, #fff, #ffcbff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-banner h1:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.hero-banner p {
  font-size: 1.35rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
}

.hero-buttons .btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.hero-buttons .btn:hover:after {
  left: 100%;
}

.hero-buttons .btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 10px 20px rgba(216, 52, 176, 0.3);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(216, 52, 176, 0.4);
}

.hero-buttons .btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.hero-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* Hero İstatistikler */
.hero-stats {
  display: flex;
  gap: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  position: relative;
  transition: all 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
}

.hero-stat i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-count {
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(45deg, #fff, #ffcbff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animasyonlu elemanlar için */
.hero-featured-badge {
  position: absolute;
  top: 3rem;
  right: 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 3;
  animation: pulse 2s infinite;
}

.hero-featured-badge i {
  font-size: 1.25rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Duyurular Banner (Haber Şeridi)
----------------------------------- */
.news-ticker {
  background: linear-gradient(90deg, rgba(25, 15, 35, 0.9) 0%, rgba(65, 30, 85, 0.9) 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  height: 50px;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ticker-items {
  display: flex;
  animation: tickerAnimation 25s linear infinite;
  height: 100%;
}

.ticker-item {
  white-space: nowrap;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  font-weight: 500;
  opacity: 0.9;
}

.ticker-item i {
  margin-right: 10px;
  color: var(--primary-color);
}

@keyframes tickerAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Medya sorguları */
@media (max-width: 991.98px) {
  .hero-banner {
    height: 400px;
  }

  .hero-banner h1 {
    font-size: 2.75rem;
  }

  .hero-banner p {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-banner {
    height: 350px;
  }

  .hero-banner h1 {
    font-size: 2.25rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .news-ticker {
    height: 40px;
    font-size: 0.9rem;
  }
}