/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

/* Genel Ayarlar */
body.body-bg {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: linear-gradient(to bottom, #000000 0%, #1a1a1a 33%, #2e2e2e 66%, #3f3f3f 100%);
  color: #ffffff;
}

/* Header */
header {
    background-color: rgba(20, 20, 20, 0.85);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    padding: 24px 0;
    height: 50px;
    max-height: 50px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .header-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
  }
  
  nav a.nav-link {
    margin-left: 1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
  }
  
  nav a.nav-link:hover {
    color: #60a5fa;
  }

/* Main About Section */
.about-section {
  padding: 6rem 0;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(24, 24, 24, 0.85); /* saydam kutu, arka plan gradient ile uyumlu */
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #42A5F5;
  text-align: center;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.highlight {
  color: #42A5F5;
  font-weight: 700;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  padding: 24px 0;
  margin-top: 3rem;
}
