/* yakineczane.com — yasal sayfalar (ana sayfa kırmızı tema + Plus Jakarta logo) */
:root {
  --green: #C62828;
  --green-dark: #8E0000;
  --green-light: #FFEBEE;
  --green-mid: #FFCDD2;
  --text: #1a0a0a;
  --text-2: #4a3535;
  --bg: #FDF7F7;
  --white: #FFFFFF;
  --border: #EFD4D6;
  --radius: 16px;
  --shadow: 0 2px 20px rgba(198, 40, 40, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.8;
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.logo-text span {
  color: var(--green);
}

nav {
  display: flex;
  gap: 6px;
}

nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover,
nav a.active {
  background: var(--green-light);
  color: var(--green-dark);
}

.hero-mini {
  background: linear-gradient(135deg, #3d0a0c 0%, #7f1a1d 42%, #c62828 100%);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.hero-mini::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.hero-mini-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-mini h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.hero-mini p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-wrap h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text);
}

.legal-wrap h2:first-child {
  margin-top: 0;
}

.legal-wrap h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 10px;
  color: var(--text);
}

.legal-wrap p,
.legal-wrap li {
  color: var(--text-2);
  margin-bottom: 12px;
}

.legal-wrap ul {
  margin: 0 0 12px 1.2rem;
}

.legal-wrap a:not(.logo):not(.btn-send) {
  color: var(--green-dark);
  font-weight: 500;
}

.legal-wrap a:not(.logo):not(.btn-send):hover {
  text-decoration: underline;
}

.meta {
  color: var(--text-2);
  font-size: 13px;
  margin-bottom: 24px;
}

.mission {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--green-dark);
  padding: 16px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
  line-height: 1.55;
}

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 8px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-send {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-send:hover {
  background: var(--green-dark);
}

.hint {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 14px;
}

footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand p {
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-brand .logo .logo-text {
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  max-width: 1140px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 0 14px;
    height: 56px;
  }

  .legal-wrap {
    padding: 28px 16px 40px;
  }
}
