/* ========================================
   Kamp Bilgilendirme – Tamamen farklı tasarım
   (Ana siteden bağımsız görünüm)
   ======================================== */

.page-kamp {
  background: #0c0f14;
}

.page-kamp .site-header {
  background: rgba(12, 15, 20, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-kamp .nav-menu a {
  color: #e2e8f0;
}

.page-kamp .nav-menu a:hover {
  color: #f59e0b;
}

.page-kamp .cta-nav {
  background: #f59e0b !important;
  color: #0c0f14 !important;
}

.page-kamp .site-footer {
  background: #080a0d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-kamp .kamp-main {
  font-family: 'Outfit', system-ui, sans-serif;
}

/* ----- Hero ----- */
.kamp-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(165deg, #0c0f14 0%, #131920 40%, #0f1419 100%);
  position: relative;
  overflow: hidden;
}

.kamp-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.kamp-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.kamp-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.kamp-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.kamp-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.kamp-hero-desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.kamp-cta {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0c0f14;
  background: #f59e0b;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.kamp-cta:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.35);
}

/* ----- Section ----- */
.kamp-section {
  padding: 4rem 1.5rem;
}

.kamp-section--alt {
  background: rgba(255, 255, 255, 0.02);
}

.kamp-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.kamp-wrap--narrow {
  max-width: 620px;
  text-align: center;
}

.kamp-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.kamp-lead {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.kamp-text {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ----- Cards ----- */
.kamp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.kamp-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.kamp-card:hover {
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

.kamp-card-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 1rem;
}

.kamp-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.kamp-card p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.kamp-btn-outline {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #f59e0b;
  background: transparent;
  border: 2px solid #f59e0b;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.kamp-btn-outline:hover {
  background: #f59e0b;
  color: #0c0f14;
}

@media (max-width: 768px) {
  .kamp-cards {
    grid-template-columns: 1fr;
  }

  .kamp-hero {
    min-height: 60vh;
  }
}
