/* Genel Ayarlar */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 60px; /* header yüksekliğin kadar boşluk bırak yeni ekle*/
  /* background: linear-gradient(135deg, #f5f7fa, #c3cfe2); */

  color: #1a202c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  position: fixed; /* Sayfanın üstünde sabit durur */
  top: 0; /* Üstten sıfır boşluk */
  width: 100%; /* Tam genişlik */
  z-index: 1000; /* Diğer içeriklerin üstünde göster */
  background-color: rgba(255, 255, 255, 0.1); /* Yarı şeffaf beyaz arka plan */
  backdrop-filter: blur(10px); /* Cam efekti bulanıklığı */
  -webkit-backdrop-filter: blur(10px); /* Safari için destek */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Hafif gölge */
  transition: background-color 0.3s ease; /* Arka plan rengi geçişi */
  display: flex; /* Esnek kutu */
  align-items: center; /* Dikey ortala */
  height: 60px; /* Header yüksekliği */
}
header:hover {
  background-color: rgba(255, 255, 255, 0.3); /* Hoverda daha opak arka plan */
}

.header-container {
  display: flex; /* Esnek kutu */
  justify-content: space-between; /* Elemanlar arasında boşluk */
  align-items: center; /* Dikey ortala */
  width: 100%; /* Tam genişlik */
}

.logo img {
  height: 40px; /* Logo yüksekliği */
  filter: drop-shadow(0 0 1px #4c51bf); /* Hafif gölge efekti */
  cursor: pointer; /* Üzerine gelince işaretçi değişir */
  -webkit-user-drag: none;/* Zeyn bunu güvenlik için ekledi */
  user-select: none;
  pointer-events: auto;
}

/* Hamburger Menü Butonu */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #1a202c;
  cursor: pointer;
  padding: 0 10px;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Sadece mobilde görünür */
  }

  .main-nav {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: white;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
    gap: 16px;
  }

  .main-nav.active {
    display: block;
  }
}/* Mobil görünüm */

.main-nav ul {
  list-style: none; /* Liste işaretlerini kaldır */
  display: flex; /* Listeyi yatay sırala */
  gap: 25px; /* Elemanlar arası boşluk */
  margin: 0; /* Dış boşluk sıfır */
  padding: 0; /* İç boşluk sıfır */
}

.main-nav ul li a {
  text-decoration: none; /* Link alt çizgisi kaldır */
  color: #1a202c; /* Link rengi */
  font-weight: 600; /* Yarı kalın */
  padding: 8px 12px; /* İç boşluk */
  border-radius: 6px; /* Köşeleri yuvarlat */
  transition: background-color 0.3s ease, color 0.3s ease; /* Renk ve arka plan geçişleri */
  user-select: none; /* Metin seçimini engelle */
}

.main-nav ul li a:hover {
  background-color: #4c51bf; /* Hoverda bu ana sayfaya mouse getirdigimzde cıkan arka plan mavi */
  color: white; /* Hoverda yazı beyaz Buraya kadar kod eklendiDiğerprojeden */
}


/* Hoş Geldiniz Bölümü */
.welcome-section {
  padding: 6rem 0 4rem;
  text-align: center;
}

.welcome-section h2 {
  font-size: 3.75rem;
  color: #4c51bf; /* indigo-600 */
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 6px rgba(76,81,191,0.7);
}

.welcome-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.75rem;/* 1.25 di başda */
  color: #2d3748; /* gray-800 */
  line-height: 1.6;
  user-select: text;
}

/* Paketler Bölümü */
.packages-section {
  padding: 4rem 0 6rem;
  background: #f9fafb;
  box-shadow: inset 0 0 30px #e0e7ff;
  border-radius: 2rem 2rem 0 0;
  user-select: none;
}

.packages-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Paket Kartları */
.package-card {
  background: white;
  border-radius: 1.5rem;
  width: 260px;
  padding: 2rem 1.8rem;
  box-shadow: 0 6px 20px rgba(100, 116, 139, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  color: #1a202c;
  position: relative;
  overflow: visible;
}

.package-card:hover {
  transform: scale(1.12) translateY(-12px);
  box-shadow:
    0 20px 40px rgba(76, 81, 191, 0.4),
    0 0 20px rgba(76, 81, 191, 0.35);
  background: #ebf0ff;
  border: 2px solid #4c51bf;
  z-index: 5;
}

/* Başlık */
.package-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #4c51bf;
  user-select: none;
}

/* Detay */
.package-detail {
  font-size: 1rem;
  color: #151618;
  flex-grow: 1;
  margin-bottom: 2rem;
  user-select: text;
}

/* Fiyat */
.package-price {
  font-weight: 900;
  font-size: 2.4rem;
  color: #5a67d8;
  margin-bottom: 1.8rem;
  user-select: none;
}

/* Buton */
.btn-buy {
  background: #5a67d8;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  transition: background 0.3s ease;
  user-select: none;
}

.btn-buy:hover {
  background: #434190;
  cursor: pointer;
}

@keyframes rainbowGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.bigg-boss {
  background: linear-gradient(270deg,
    rgba(167, 139, 250, 0.4),  /* pastel mor */
    rgba(110, 231, 183, 0.4),  /* pastel yeşil */
    rgba(147, 197, 253, 0.4),  /* pastel mavi */
    rgba(249, 168, 212, 0.4),  /* pastel pembe */
    rgba(167, 139, 250, 0.4)
  );
  background-size: 400% 400%;
  animation: rainbowGradient 8s ease infinite;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari uyumu */

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  color: white;
  box-shadow:
    0 0 20px rgba(167, 139, 250, 0.3),
    0 0 30px rgba(110, 231, 183, 0.3),
    0 0 40px rgba(147, 197, 253, 0.3);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bigg-boss:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow:
    0 0 25px rgba(167, 139, 250, 0.6),
    0 0 35px rgba(110, 231, 183, 0.6),
    0 0 45px rgba(147, 197, 253, 0.6);
  border-color: rgba(255, 255, 255, 0.25);
  z-index: 10;
}


/* Rainbow animasyon tanımı */
@keyframes rainbowGradient {
  0% { background-position: 0% 50%; }
  30% { background-position: 100% 50%; }
  60% { background-position: 0% 50%; }

}

/* WhatsApp Kart */
.whatsapp-card {
  background-color: #25D366; /* WhatsApp yeşili */
  color: white; /* Yazı beyaz */
  border-radius: 1.5rem; /* Yuvarlak köşeler */
  width: 260px; /* Kart genişliği */
  padding: 2rem 1.8rem; /* İç boşluk */
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); /* Hafif yeşil gölge */
  display: flex; /* Esnek kutu */
  flex-direction: column; /* Dikey sıralama */
  justify-content: center; /* Ortala */
  text-align: center; /* Metin ortala */
  cursor: pointer; /* El imleci */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Geçiş efektleri */
  user-select: none; /* Metin seçimini engelle */
  flex-shrink: 0; /* Daralmayı engelle */
}

.whatsapp-card:hover {
  transform: scale(1.1); /* Hoverda büyüt */
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7); /* Daha güçlü gölge */
}

.whatsapp-card .btn-buy {
  background: white; /* Buton beyaz arka plan */
  color: #25D366; /* Yeşil yazı */
  font-weight: 700; /* Kalın yazı */
  border-radius: 1rem; /* Yuvarlak köşeler */
  padding: 0.75rem 1.5rem; /* İç boşluk */
  margin-top: 1rem; /* Üst boşluk */
  border: none; /* Kenarlık yok */
}

.whatsapp-card .btn-buy:hover {
  background: #13a54b; /* Buton hover koyu yeşil */
  color: white; /* Yazı beyaz -----bURAYA KADAR */
}


.glow-card {
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 0 20px rgba(128, 0, 255, 0.2),
            0 0 40px rgba(128, 0, 255, 0.2),
            0 0 60px rgba(128, 0, 255, 0.2);
transition: box-shadow 0.3s ease;
}
.glow-card:hover {
box-shadow: 0 0 30px rgba(192, 0, 255, 0.6),
                0 0 60px rgba(0, 204, 255, 0.4),
                0 0 80px rgba(128, 0, 255, 0.6);
}

/* /* Responsive 
@media (max-width: 900px) {
  .packages-container {
    justify-content: center;
  }
} */

/* Responsive - Orta boyut ekranlar */
@media (max-width: 992px) {
  .packages-container {
    flex-wrap: wrap; /* Kartlar sarmalı */
    justify-content: center; /* Ortala */
    overflow-x: visible; /* Taşan kısım görünür */
  }

  .package-card {
    flex-shrink: 1; /* Daralabilir */
  }
}

/* Responsive - Küçük ekranlar (mobil) */
@media (max-width: 600px) {
  .welcome-section h2 {
    font-size: 2.25rem; /* Başlık küçültüldü */
  }
  .welcome-section p {
    font-size: 1.1rem; /* Yazı küçültüldü */
  }
  .package-card {
    width: 90%; /* Kart genişliği dar ekranlarda %90 */
  }
  .main-nav ul {
    flex-direction: column; /* Menü dikey olur */
    gap: 12px; /* Aralık artar */
  }
}



/* @media (max-width: 600px) {
  .welcome-section h2 {
    font-size: 2.25rem;
  }
  .welcome-section p {
    font-size: 1.1rem;
  }
  .package-card {
    width: 90%;
  }
}
 */

  .glow-card {
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 0 20px rgba(128, 0, 255, 0.2),
            0 0 40px rgba(128, 0, 255, 0.2),
            0 0 60px rgba(128, 0, 255, 0.2);
transition: box-shadow 0.3s ease;
}
.glow-card:hover {
box-shadow: 0 0 30px rgba(192, 0, 255, 0.6),
                0 0 60px rgba(0, 204, 255, 0.4),
                0 0 80px rgba(128, 0, 255, 0.6);
}

.faq-section {
  padding: 80px 20px;
  background-color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}
.faq-section h2{

  color:#4c51bf ;

}

.faq-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.faq-item {
  margin-bottom: 20px;
  background-color: #fefeff;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.faq-item details summary {
  font-weight: bold;
  cursor: pointer;
  font-size: 18px;
  color: #000000;
}

.faq-item details[open] summary {
  color: #4c51bf;
}

.faq-item p {
  margin-top: 10px;
  color: #000000;
  font-size: 15px;
}
.footer-support {
  background: radial-gradient(circle at top left, #1a1a2e, #121212);
  padding: 60px 20px;
  color: white;
}

.support-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  backdrop-filter: blur(10px);
}

.support-info {
  flex: 1;
  min-width: 250px;
}

.support-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.support-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

.support-email {
  margin-top: 20px;
  color: #4c51bf;
  font-weight: bold;
}

.support-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.support-form input,
.support-form textarea {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.support-form input:focus,
.support-form textarea:focus {
  border-color: #4c51bf;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.support-form button {
  background-color: #4c51bf;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.support-form button:hover {
  background-color: #3c41a1;
}


/* .support-section {
  background-color: #f9fafb;  açık gri arka plan 
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  margin-top: 4rem;
}*/
 
/* .support-text {
  font-size: 1.125rem;
  color: #1f2937; /* koyu gri metin 
  margin-bottom: 1rem;
}
 */
/* .support-btn {
  display: inline-block;
  background-color: #4c51bf; /* senin istediğin mor ton 
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
 */
/*
 .support-btn:hover {
  background-color: #373aa0; /* biraz daha koyusu, hover efekti 
}

/* .support-section {
  background-color: #ffffff;
  text-align: center;
  padding: 50px 20px;
}

.support-text {
  font-size: 23px;
  color: #000000;
  margin-bottom: 20px;
} */

/* .support-btn {
  background-color: #ffffff ;
  color: rgb(0, 0, 0);
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.support-btn:hover {
  background-color: #ffffff;
}

.black-section {
  background-color: rgb(255, 255, 255);
  color: white;
  position: relative;
  overflow: hidden;
} */

.torn-top,
.torn-bottom {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.torn-top img,
.torn-bottom img {
  width: 100%;
  display: block;
}

.section-content {
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.main-nav ul {
  list-style: none;
  display: flex;         /* bu satır vardı ama aşağıda yeniden yazılmış */
  gap: 25px;
  margin: 0;
  padding: 0;
}

/* Aşağıdaki media query'de yeniden override et */
@media (max-width: 768px) {
  .main-nav ul {
    display: flex;             /* EKSİKTİ: ekle */
    flex-direction: column;
    padding: 1rem;
    gap: 16px;
  }
}
