/* ===== Salise Ligi — Statik İçerik Sayfaları Ortak Stil ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial,
    sans-serif;
  background: #0a0a1a;
  color: #e0e0e0;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #4fc3f7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #81d4fa;
  text-decoration: underline;
}

/* ===== Header / Nav ===== */
.site-header {
  background: #111128;
  border-bottom: 1px solid #222244;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-header .logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
}
.site-header .logo-link img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
.site-header nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-header nav a {
  color: #b0b0cc;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.site-header nav a:hover,
.site-header nav a.active {
  color: #4fc3f7;
  text-decoration: none;
}

/* ===== Main Content ===== */
.content-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  flex: 1;
  width: 100%;
}

.content-main h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.content-main h2 {
  font-size: 1.4rem;
  color: #e0e0ff;
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #222244;
}
.content-main h3 {
  font-size: 1.15rem;
  color: #c0c0dd;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}
.content-main p {
  margin-bottom: 1rem;
}
.content-main ul,
.content-main ol {
  margin: 0.5rem 0 1.25rem 1.5rem;
}
.content-main li {
  margin-bottom: 0.4rem;
}
.content-main strong {
  color: #fff;
}

/* Intro paragraph */
.intro {
  font-size: 1.1rem;
  color: #b0b0cc;
  margin-bottom: 1.5rem;
}

/* Tip / highlight box */
.tip-box {
  background: #151530;
  border-left: 4px solid #4fc3f7;
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.25rem 0;
}

/* FAQ */
.faq-item {
  margin-bottom: 1.5rem;
}
.faq-item dt {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  font-size: 1.02rem;
}
.faq-item dd {
  margin-left: 0;
  color: #c8c8e0;
}

/* CTA button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1b5e20;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  transition: background 0.2s;
  text-decoration: none;
}
.cta-btn:hover {
  background: #2e7d32;
  text-decoration: none;
  color: #fff;
}

/* ===== Contact Form ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin-top: 1.5rem;
}
.contact-form label {
  font-weight: 600;
  color: #c8c8e0;
  font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #333355;
  border-radius: 6px;
  background: #111128;
  color: #e0e0e0;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4fc3f7;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #1565c0;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.contact-form .submit-btn:hover {
  background: #1976d2;
}

/* ===== Footer ===== */
.site-footer {
  background: #111128;
  border-top: 1px solid #222244;
  text-align: center;
  padding: 1.5rem 1.25rem;
  color: #777799;
  font-size: 0.85rem;
  margin-top: auto;
}
.site-footer a {
  color: #9999bb;
}
.site-footer a:hover {
  color: #4fc3f7;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 34px;
  height: 34px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ccc;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .content-main h1 {
    font-size: 1.5rem;
  }
  .content-main h2 {
    font-size: 1.2rem;
  }
  .site-header .nav-inner {
    flex-direction: row;
    align-items: center;
  }
  .menu-toggle {
    display: flex;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(17, 17, 40, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #222244;
    padding: 0.5rem 1.25rem;
    gap: 0;
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav a {
    display: block;
    padding: 0.65rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(34, 34, 68, 0.3);
  }
  .site-header nav a:last-child {
    border-bottom: none;
  }
}
