/* ==========================================================================
   Solaklı Arama Kurtarma (SAK) — kurumsal web sitesi
   assets/css/style.css  ·  ana tasarım dili
   Renk dengesi: koyu lacivert + SAK kırmızısı + beyaz
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fontlar (yerel / self-hosted — dış bağımlılık yok)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/roboto-condensed-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Tasarım değişkenleri
   -------------------------------------------------------------------------- */
:root {
  /* koyu zeminler */
  --navy-950: #05121b;
  --navy-900: #061722;
  --navy-800: #071c29;
  --navy-700: #0a2232;

  /* SAK kırmızısı */
  --red: #d90000;
  --red-bright: #e10600;
  --red-dark: #ad0000;

  /* nötrler */
  --white: #ffffff;
  --surface: #f4f6f8;
  --muted: #66717d;
  --border: #e4e8ec;
  --ink: #0a2232;

  --container: 1340px;
  --gutter: 24px;

  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 10px;

  --shadow-card: 0 1px 2px rgba(10, 34, 50, 0.06), 0 6px 16px rgba(10, 34, 50, 0.05);
  --shadow-card-hover: 0 12px 26px rgba(10, 34, 50, 0.14);
  --shadow-panel: 0 18px 40px rgba(3, 12, 20, 0.28);

  --font-body: "Roboto", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --font-display: "Roboto Condensed", "Arial Narrow", "Roboto", Arial, sans-serif;

  --header-h: 78px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   3. Reset / temel
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
picture {
  max-width: 100%;
}

img {
  height: auto;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid rgba(217, 0, 0, 0.75);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ekran okuyucu için görünmez yardımcı */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  z-index: 200;
  transform: translateX(-50%);
  padding: 12px 22px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   4. Yerleşim yardımcıları
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: var(--ink);
}

.section-bar {
  width: 46px;
  height: 4px;
  margin-top: 10px;
  background: var(--red);
  border-radius: 2px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}

.section-link:hover,
.section-link:focus-visible {
  color: var(--red-bright);
  gap: 11px;
}

.section-link .icon {
  width: 16px;
  height: 16px;
}

.icon {
  width: 20px;
  height: 20px;
  flex: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* --------------------------------------------------------------------------
   5. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 22px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease),
    color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(217, 0, 0, 0.28);
}

.btn--ghost {
  background: rgba(6, 23, 34, 0.45);
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--red);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--red);
}

.btn--light:hover,
.btn--light:focus-visible {
  background: #ffecec;
  border-color: #ffecec;
}

.btn--sm {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   6. Header / navigasyon
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background-color: var(--navy-900);
  background-image:
    linear-gradient(90deg, rgba(6, 23, 34, 0.97), rgba(6, 23, 34, 0.9)),
    url("../images/hero-bg.jpg");
  background-size: cover, cover;
  background-position: center, center 30%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 26px rgba(3, 12, 20, 0.35);
  background-image: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand__logo {
  display: block;
  width: auto;
  height: 62px;
}

.main-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav__link {
  position: relative;
  display: block;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.main-nav__link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s var(--ease);
}

.main-nav__link:hover,
.main-nav__link:focus-visible {
  color: var(--white);
}

.main-nav__link:hover::after,
.main-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.main-nav__link[aria-current="page"] {
  color: var(--white);
  font-weight: 700;
}

.main-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

/* mobil menü içindeki bağış butonu — masaüstünde gizli */
.main-nav__cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.92);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.icon-button:hover,
.icon-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.icon-button .icon {
  width: 21px;
  height: 21px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  color: var(--white);
}

.nav-toggle .icon {
  width: 22px;
  height: 22px;
}

.nav-toggle__close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
  display: block;
}

/* arama paneli (header) */
.search-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 18, 27, 0.97);
  padding: 14px 0 18px;
}

.search-panel.is-open {
  display: block;
}

.search-form {
  display: flex;
  gap: 10px;
  max-width: 640px;
}

.search-form input {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
  font-size: 15px;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.search-hint {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 366px;
  padding: 56px 0 32px;
  background-color: var(--navy-900);
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 18, 27, 0.95) 0%,
      rgba(5, 18, 27, 0.9) 32%,
      rgba(5, 18, 27, 0.66) 58%,
      rgba(5, 18, 27, 0.22) 100%
    ),
    linear-gradient(180deg, rgba(5, 18, 27, 0.5) 0%, rgba(5, 18, 27, 0) 45%, rgba(5, 18, 27, 0.55) 100%);
}

.hero__flag {
  position: absolute;
  top: 6%;
  left: 41%;
  z-index: -1;
  width: 168px;
  height: 168px;
  opacity: 0.13;
  fill: var(--white);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  width: 100%;
}

.hero__content {
  max-width: 588px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.004em;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero__title span {
  display: block;
}

.hero__title-line-1 {
  font-size: 45px;
}

.hero__title-line-2 {
  font-size: 80px;
  color: var(--red);
}

.hero__lead {
  max-width: 545px;
  margin-top: 18px;
  font-size: 16.5px;
  line-height: 1.44;
  color: rgba(255, 255, 255, 0.93);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.hero__actions .btn {
  min-width: 161px;
}

/* --------------------------------------------------------------------------
   8. İstatistik şeridi + acil durum bloğu
   -------------------------------------------------------------------------- */
.stats {
  position: relative;
  background-color: var(--navy-800);
  background-image:
    linear-gradient(rgba(7, 28, 41, 0.95), rgba(7, 28, 41, 0.95)),
    url("../images/hero-bg.jpg");
  background-size: cover, cover;
  background-position: center, center 65%;
  color: var(--white);
}

.stats__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0;
}

.stats__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  min-height: 98px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px 16px 0;
  position: relative;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.stat + .stat {
  padding-left: 16px;
}

.stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  color: var(--white);
}

.stat__icon .icon {
  width: 34px;
  height: 34px;
  stroke-width: 1.6;
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.stat__label {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.86);
}

.emergency {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  width: clamp(430px, 38.5vw, 660px);
  margin-right: calc(-1 * max(0px, (100vw - var(--container)) / 2 + var(--gutter)));
  padding: 18px 0 18px 78px;
  background: linear-gradient(100deg, var(--red-dark) 0%, var(--red) 34%, #f1000a 100%);
  clip-path: polygon(9.7% 0, 100% 0, 100% 100%, 0 100%);
}

.emergency::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: repeating-linear-gradient(115deg, rgba(0, 0, 0, 0.35) 0 2px, transparent 2px 14px);
  pointer-events: none;
}

.emergency__body {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
}

.emergency__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  color: var(--white);
}

.emergency__icon .icon {
  width: 36px;
  height: 36px;
  stroke-width: 1.7;
}

.emergency__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.emergency__text {
  margin-top: 3px;
  max-width: 200px;
  font-size: 13.5px;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.94);
}

.emergency .btn {
  position: relative;
  flex: none;
  min-width: 152px;
  min-height: 44px;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   9. Hakkımızda + Faaliyetlerimiz
   -------------------------------------------------------------------------- */
.intro {
  background: var(--surface);
  padding: 54px 0 58px;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 56px;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 26px;
}

.about__text p {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--muted);
}

.about__text .btn {
  margin-top: 22px;
}

.about__figure {
  margin: 0;
}

.about__figure img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: 48% 42%;
  border-radius: var(--radius);
  -webkit-mask-image: radial-gradient(
    118% 112% at 47% 47%,
    #000 54%,
    rgba(0, 0, 0, 0.92) 66%,
    rgba(0, 0, 0, 0.55) 78%,
    rgba(0, 0, 0, 0.18) 89%,
    rgba(0, 0, 0, 0) 98%
  );
  mask-image: radial-gradient(
    118% 112% at 47% 47%,
    #000 54%,
    rgba(0, 0, 0, 0.92) 66%,
    rgba(0, 0, 0, 0.55) 78%,
    rgba(0, 0, 0, 0.18) 89%,
    rgba(0, 0, 0, 0) 98%
  );
}

.activities__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.activity-card {
  padding: 20px 16px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}

.activity-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: #d8dee4;
}

.activity-card__icon {
  display: inline-flex;
  color: var(--red);
}

.activity-card__icon .icon {
  width: 38px;
  height: 38px;
  stroke-width: 1.7;
}

.activity-card__title {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.activity-card__text {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   10. Haberler + Yaklaşan Etkinlikler
   -------------------------------------------------------------------------- */
.news {
  position: relative;
  padding: 52px 0 60px;
  background-color: var(--navy-900);
  background-image:
    linear-gradient(180deg, rgba(6, 23, 34, 0.93), rgba(6, 23, 34, 0.97)),
    url("../images/hero-bg.jpg");
  background-size: cover, cover;
  background-position: center, center 78%;
  color: var(--white);
}

.news__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 42px;
  align-items: start;
}

.news .section-title,
.events .section-title {
  color: var(--white);
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(3, 12, 20, 0.28);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(3, 12, 20, 0.4);
}

.news-card__media {
  display: block;
  padding: 8px 8px 0;
}

.news-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.news-card__body {
  padding: 12px 14px 18px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.news-card__date {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.news-card__title {
  margin-top: 12px;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.34;
}

.news-card__excerpt {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.news-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* etkinlik listesi */
.events {
  min-width: 0;
}

.events__panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-panel);
  color: var(--ink);
}

.event-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.event-item:last-child {
  border-bottom: 0;
}

.event-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 14px;
  border-right: 1px solid var(--border);
  font-family: var(--font-display);
  color: var(--red);
  line-height: 1;
}

.event-item__day {
  font-size: 26px;
  font-weight: 700;
}

.event-item__month {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-item__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.event-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  margin-top: 7px;
  font-size: 14px;
  color: var(--muted);
}

.event-item__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.event-item__meta .icon {
  width: 16px;
  height: 16px;
  color: #8b959e;
}

.event-item__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: #93a0aa;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.event-item__go:hover,
.event-item__go:focus-visible {
  color: var(--red);
  transform: translateX(2px);
}

.event-item__go .icon {
  width: 22px;
  height: 22px;
}

.events__note {
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
  padding: 52px 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.site-footer__logo {
  display: block;
  width: auto;
  height: 66px;
}

.site-footer__brand-text {
  margin-top: 16px;
  max-width: 320px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__slogan {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}

.footer-title {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-list li + li {
  margin-top: 10px;
}

.footer-list a,
.footer-list span {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s var(--ease);
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.social a:hover,
.social a:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.social .icon {
  width: 19px;
  height: 19px;
}

/* --------------------------------------------------------------------------
   12. İç sayfalar
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: 52px 0 46px;
  background-color: var(--navy-800);
  background-image:
    linear-gradient(90deg, rgba(6, 23, 34, 0.95), rgba(6, 23, 34, 0.72)),
    url("../images/hero-bg.jpg");
  background-size: cover, cover;
  background-position: center, center 45%;
  color: var(--white);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.008em;
}

.page-hero__lead {
  max-width: 720px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.66);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.4);
}

.page-section {
  padding: 56px 0 64px;
}

.page-section--surface {
  background: var(--surface);
}

.page-section--dark {
  background: var(--navy-900);
  color: var(--white);
}

.prose {
  max-width: 780px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.prose h3 {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 700;
}

.prose p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--muted);
}

.prose ul {
  margin-top: 16px;
}

.prose ul li {
  position: relative;
  padding-left: 24px;
  margin-top: 10px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--red);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.info-card {
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.info-card h3 {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 700;
}

.info-card p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

.info-card__icon {
  display: inline-flex;
  color: var(--red);
}

.info-card__icon .icon {
  width: 34px;
  height: 34px;
}

.placeholder-note {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px dashed #cbd3da;
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  background: #fffdfd;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.placeholder-note .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--red);
}

.placeholder-note strong {
  color: var(--ink);
}

.emblem-figure {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 20px 34px rgba(10, 34, 50, 0.18));
}

.mt-lg {
  margin-top: 44px;
}

/* ekip */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.team-card__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #eef2f5, #e2e8ed);
  color: #b3bec8;
}

.team-card__photo .icon {
  width: 56px;
  height: 56px;
  stroke-width: 1.3;
}

.team-card__body {
  padding: 16px 14px 20px;
}

.team-card__name {
  font-size: 16.5px;
  font-weight: 700;
}

.team-card__role {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--red);
  font-weight: 500;
}

.team-card__note {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
}

/* galeri */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-800);
  cursor: zoom-in;
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  opacity: 0.88;
}

.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 16px 14px;
  background: linear-gradient(transparent, rgba(5, 18, 27, 0.85));
  color: var(--white);
  font-size: 13.5px;
  text-align: left;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 10, 16, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__figure {
  max-width: min(1100px, 100%);
  margin: 0;
  text-align: center;
}

.lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 74vh;
  margin-inline: auto;
  border-radius: var(--radius);
}

.lightbox__caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14.5px;
}

.lightbox__counter {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(6, 23, 34, 0.7);
  color: var(--white);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.lightbox__btn:hover,
.lightbox__btn:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.lightbox__btn--prev {
  left: 20px;
}

.lightbox__btn--next {
  right: 20px;
}

.lightbox__btn--close {
  top: 22px;
  right: 20px;
  transform: none;
  width: 46px;
  height: 46px;
}

.lightbox__btn .icon {
  width: 24px;
  height: 24px;
}

/* form */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: start;
}

.form-card {
  padding: 28px 26px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.form-field .req {
  color: var(--red);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217, 0, 0, 0.12);
  outline: none;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--red);
  background: #fff8f8;
}

.form-error {
  min-height: 18px;
  font-size: 12.5px;
  color: var(--red);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.6;
}

.form-status.is-visible {
  display: block;
}

.form-status--notice {
  border: 1px solid #f0d9a8;
  background: #fffaf0;
  color: #7a5a12;
}

.contact-aside {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.contact-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: rgba(217, 0, 0, 0.08);
  color: var(--red);
}

.contact-item h2,
.contact-item h3 {
  font-size: 15.5px;
  font-weight: 700;
}

.contact-item p {
  margin-top: 4px;
  font-size: 14.5px;
  color: var(--muted);
}

/* destek */
.donate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.donate-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.donate-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.donate-card p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

.donate-card dl {
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.donate-card dt {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.donate-card dd {
  margin: 2px 0 0;
  font-size: 15px;
  color: var(--ink);
}

.donate-card .btn {
  align-self: flex-start;
  margin-top: 22px;
}

/* video modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 10, 16, 0.9);
}

.modal.is-open {
  display: flex;
}

.modal__box {
  position: relative;
  width: min(560px, 100%);
  padding: 34px 30px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-panel);
  text-align: center;
}

.modal__box h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

.modal__box p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--muted);
}

.modal__close:hover,
.modal__close:focus-visible {
  background: var(--surface);
  color: var(--ink);
}

.modal__logo {
  display: block;
  width: auto;
  height: 62px;
  margin: 0 auto 18px;
}

.modal__actions {
  margin-top: 24px;
}

/* --------------------------------------------------------------------------
   13. Hafif görünür olma animasyonu
   -------------------------------------------------------------------------- */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .js-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   14. Site içi arama sonuçları (header arama paneli)
   -------------------------------------------------------------------------- */
.search-results {
  max-width: 640px;
  margin-top: 14px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.search-results[hidden] {
  display: none;
}

.search-results__item + .search-results__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.search-results__item a {
  display: block;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.search-results__item a:hover,
.search-results__item a:focus-visible {
  background: rgba(217, 0, 0, 0.2);
}

.search-results__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.search-results__desc {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.search-results__empty {
  padding: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.search-hint[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   15. Sayfanın başına dön
   -------------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(10, 34, 50, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease), visibility 0.24s var(--ease),
    background-color 0.2s var(--ease);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--red-dark);
}

.scroll-top .icon {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

/* --------------------------------------------------------------------------
   16. Footer yasal bağlantılar
   -------------------------------------------------------------------------- */
.site-footer__bottom {
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 22px;
  font-size: 13.5px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.26);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--white);
  text-decoration-color: var(--red);
}

/* --------------------------------------------------------------------------
   17. 404 ve yasal sayfa bileşenleri
   -------------------------------------------------------------------------- */
.notfound {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding: 34px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.notfound__code {
  font-family: var(--font-display);
  font-size: 112px;
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0.02em;
  color: var(--red);
  text-align: center;
}

.notfound__body p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.notfound__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.info-card--link {
  display: block;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.info-card--link:hover,
.info-card--link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(217, 0, 0, 0.35);
  box-shadow: var(--shadow-card-hover);
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface);
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.prose ol {
  margin-top: 16px;
  padding-left: 22px;
  list-style: decimal;
}

.prose ol li {
  margin-top: 10px;
  padding-left: 4px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* Butonlar (.btn) kendi renklerini korur; bu kural yalnizca metin icindeki
   baglantilara uygulanir. Aksi halde .prose a kirmizi rengi .btn--primary'nin
   beyaz yazisini eziyor ve kirmizi zemin uzerinde yazi gorunmez oluyordu. */
.prose a:not(.btn) {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media print {
  .scroll-top {
    display: none !important;
  }
}
