:root{
  --brand-dark: #121212;
  --brand-soft: #f6f7f9;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:8px;
  background:#000;
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left: 10px; }

.topbar{
  background: #fff;
}
.topbar-link{
  color: #1f1f1f;
  text-decoration: none;
}
.topbar-link:hover{ text-decoration: underline; }

.brand-title{
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--brand-dark);
  font-size: 1.05rem;
}
.brand-subtitle{
  color: #6c757d;
  font-size: .9rem;
  margin-top: 2px;
}

.search-hint{
  border-left: 3px solid #ffc107;
  padding-left: 10px;
}

/* HERO */
.hero{
  min-height: 90vh;
  position: relative;
  color: #fff;

  background-image: url("../img/banner.jpg");
  background-size: cover;        /* 🔑 ORANI KORUR */
  background-position: center;   /* ortadan kırpar */
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}
.hero{
  background-attachment: fixed;
}

@media (max-width: 992px){
  .hero{
    background-attachment: scroll;
  }
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.45)
  );
  z-index: 1;
}

.hero .container{
  position: relative;
  z-index: 2;
}

.hero-title{
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.hero-slogan{
  font-size: 1.15rem;
  opacity: .95;
}
.hero-sub{
  font-size: 1.05rem;
  opacity: .95;
}

.section-title{
  font-weight: 800;
  letter-spacing: .2px;
}

.soft-card{
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 18px;
}
.soft-card:hover{
  transform: translateY(-2px);
  transition: .2s ease;
}

.icon-chip{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
}
.icon-chip i{ font-size: 1.25rem; }

.map-placeholder{
  min-height: 320px;
  background: var(--brand-soft);
}

/* İLETİŞİM KARTI */
.contact-card{
  background: #f8f9fa;
  border: 1px solid black;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-actions{
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.article-content {
  max-width: 100%;
  line-height: 1.8;
  font-size: 1.05rem;
text-align: justify;
  word-wrap: break-word;     /* eski tarayıcılar */
  overflow-wrap: break-word; /* modern tarayıcılar */
}

.article-content p {
  margin-bottom: 1rem;
  white-space: pre-line;
}