/* Header Stilleri (Sade ve Öz) */
body {
  padding-top: 75px; /* İçeriğin header altında kalmasını engeller */
}

.header {
  background: rgba(13, 17, 28, 0.95);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .brand h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  color: #888888;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffc107;
}

@media (max-width: 600px) {
  .header-content {
    flex-direction: row;
    padding: 0.8rem 1rem;
  }
  .header .brand h1 {
    font-size: 0.9rem;
  }
  .nav-menu {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.65rem;
  }
}

@media (max-width: 400px) {
  .header-content {
    gap: 8px;
    padding: 10px;
  }
  .header .brand h1 {
    letter-spacing: 1px;
  }
}

/* Orijinal Sayfa İçi Başlık Yapısı */
.headerbaslik {
  text-align: center;
  background: #1a1e2a;
  border: 1px solid rgba(255, 193, 7, 0.2);
  margin: 6px 0;
  padding: 6px;
  border-radius: 6px;
}

.headerbaslik h1 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffc107;
  margin: 0;
}

.headerbaslik .subtitle {
  color: #aaaaaa;
  font-size: 0.7rem;
}
