/*
 * ZİYARETÇİ TEMELİ
 * Bootstrap reset/grid yerine projeye ait küçük, açık ve responsive temel katman.
 * Eski içerik kayıtlarındaki col-* sınıfları veri göçü gerektirmeden bu katmanda
 * karşılanır; çalışma zamanında Bootstrap kodu kullanılmaz.
 */

:root {
  --site-header-height: 80px;
  --site-logo-height: 46px;
  --site-content-width: 1180px;
  --site-gutter: clamp(20px, 4vw, 32px);
  --site-radius-sm: 8px;
  --site-radius-md: 12px;
  --site-shadow-sm: 0 6px 20px rgba(0, 7, 78, 0.07);
  --site-shadow-md: 0 14px 38px rgba(0, 7, 78, 0.12);
  --hero-content-width: 780px;
  --hero-edge-space: clamp(32px, 8vw, 128px);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--brand-white);
  color: var(--brand-text);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.mobile-nav-active {
  overflow: hidden;
}

main,
header,
footer,
nav,
section {
  display: block;
}

main {
  min-height: 45vh;
}

section,
[id] {
  scroll-margin-top: calc(var(--site-header-height) + 20px);
}

a {
  color: var(--brand-action);
  text-decoration: none;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-accent);
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
}

button,
input,
textarea,
select {
  margin: 0;
  font: inherit;
}

button,
[role="button"] {
  touch-action: manipulation;
}

img,
svg,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

p {
  padding: 0;
  margin: 0 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0 0 20px;
  color: var(--brand-heading);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.25;
}

address {
  font-style: normal;
}

.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--site-gutter);
  padding-left: var(--site-gutter);
}

.container {
  max-width: var(--site-content-width);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.row > [class*="col-"] {
  position: relative;
  width: 100%;
  min-width: 0;
  padding-right: 12px;
  padding-left: 12px;
}

.img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}

.text-center,
.legacy-center {
  text-align: center;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.section-bg {
  background: var(--brand-surface);
}

.wow {
  visibility: visible !important;
  animation-name: none !important;
}

.clearfix::after {
  display: table;
  clear: both;
  content: "";
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 991px) {
  :root {
    --site-header-height: 70px;
    --site-logo-height: 42px;
  }
}

@media (max-width: 768px) {
  :root {
    --hero-edge-space: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
