/* Genel ayarlar */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  text-align: center; /* Sayfa metinlerini ortalar */
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo h1 {
  font-size: 28px;
  color: #ffffff;
}

header .logo span {
  color: #ff4c00;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #ff4c00;
  text-shadow: 0 0 10px rgba(255, 76, 0, 0.7);
}

nav a.active {
  border-bottom: 2px solid #ff4c00;
}

/* Hero Bölümü */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 150px 20px;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #dddddd;
  line-height: 1.5;
}

/* Hero butonlar */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .btn {
  padding: 14px 35px;
  background: #ff4c00;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #ff7533;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 76, 0, 0.4);
}

.hero .btn-secondary {
  background: #0a74b7;
}

.hero .btn-secondary:hover {
  background: #0e9ae8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 154, 232, 0.4);
}

/* About Bölümü */
.about {
  padding: 60px 20px 120px 20px; /* Üst paddingi biraz azalttık, alt paddingi artırdık */
  text-align: center;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 15px; /* Başlığı metne biraz daha yakın yaptık */
}

.about p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto; /* Paragrafın altına boşluk ekledik */
  line-height: 1.6;
  color: #cccccc;
}

.about .btn-secondary {
  margin-top: 30px; /* Butonu biraz aşağıya itti */
}


/* Genel Buton Stilleri */
.btn, .btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}

.btn {
  background-color: #ff4c00; /* Turuncu ana renk */
  color: #ffffff;
}

.btn:hover {
  background-color: #ff751a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 76, 0, 0.4);
}

.btn-secondary {
  background-color: #0a74b7; /* Mavi ton */
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #0e9ae8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 154, 232, 0.4);
}



/* Footer */
footer {
  padding: 30px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
}


/* --- Görsel büyütme (Lightbox) --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 25px #e50914;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.gallery-item img {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #e50914;
}

.serverfiles {
  text-align: center;
  padding: 50px 20px;
}

.serverfiles h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #e50914;
}

.serverfiles p {
  color: #ccc;
  margin-bottom: 40px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1a1a1a;
  border-radius: 15px;
  padding: 30px;
  width: 350px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(229, 9, 20, 0.5);
}

.product-card img {
  width: 160px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-content h3 {
  color: #fff;
  margin-bottom: 10px;
}

.product-content p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.product-card button {
  background: #e50914;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.product-card button:hover {
  background: #ff4040;
}

/* Services Bölümü */
.services {
  padding: 80px 20px;
  background: rgba(15, 32, 39, 0.9); /* Koyu ama hafif transparan arka plan */
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ffffff;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.05); /* Hafif şeffaf beyaz */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px 20px;
  width: 250px;
  color: #ffffff;
  transition: 0.3s;
}

.card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  line-height: 1.5;
  color: #dddddd; /* Beyazdan hafif gri */
}

/* Notice Bölümü - Services ile aynı stil */
.notice {
  padding: 80px 20px;
  background: #1a1a1a; /* services gibi koyu zemin */
  text-align: center;
}

.notice h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ffcc66; /* başlık dikkat çekici */
}

.notice-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.notice-item {
  background: rgba(255, 255, 255, 0.05); /* hafif transparan */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px 20px;
  width: 260px;
  color: #ffffff;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.notice-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.3);
}

.notice-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.notice-item p {
  font-size: 16px;
  line-height: 1.5;
  color: #dddddd; /* yazı rengi okunabilir */
}

.discord-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7289DA;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  animation: float 2s ease-in-out infinite;
  transition: transform 0.3s;
}

.discord-btn:hover {
  transform: scale(1.1);
}

.discord-btn img {
  width: 32px;
  height: 32px;
}

@keyframes float {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.prices {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.price {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  margin: 0 20px;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  animation: blink 1s infinite alternate;
  cursor: default;
}

.price.source {
  background-color: #ff4d4d; /* Kırmızı arka plan */
}

.price.no-source {
  background-color: #4d79ff; /* Mavi arka plan */
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}
