/* ------------------------------ */
/* GENEL AYARLAR                  */
/* ------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f7f7f5; /* Kırık beyaz */
    color: #2c2c2c; /* Koyu gri yazılar */
    line-height: 1.6;
}

/* ------------------------------ */
/* TOP BAR - HIDDEN               */
/* ------------------------------ */
.top-bar {
  display: none !important;
}

.top-bar-container,
.top-bar-left,
.top-bar-right {
  display: none !important;
}

/* ------------------------------ */
/* KONTEYNER                      */
/* ------------------------------ */
/* Menü Çubuğu - Ortalanmış ve genişliği sınırlı kapsayıcı */
.container {
  width: 90%;            /* Genişliği yüzde 90 yapar */
  max-width: 1200px;     /* Maksimum genişlik 1200px */
  margin: auto;          /* Yatayda ortalar */
  padding: 0 20px;       /* Yatayda 20px iç boşluk */
}

/* Header */
header {
  background-color: #000;  /* Menü arka plan siyah */
  box-shadow: 0 2px 5px rgba(255, 254, 254, 0.1); /* Hafif gölge efekti */
  position: sticky;       /* Sayfa kaydırılırken üstte sabit kalır */
  top: 0;                 /* Üstte sabit */
  z-index: 100;           /* Üst katman değeri (diğer elemanların üstünde) */
}

.nav-container {
  display: flex;          /* Flexbox ile yatay düzen */
  align-items: center;    /* Dikey ortalama */
  justify-content: space-between; /* Logo ve menüyü aralıklı yerleştirir */
  height: 100px;          /* Header yüksekliği */
}

.logo img {
  height: 103px;          /* Logo yüksekliği */
  width: auto;            /* Genişlik orantılı */
}

nav ul {
  list-style: none;       /* Liste madde işaretlerini kaldırır */
  display: flex;          /* Menü linklerini yatay dizer */
  gap: 30px;              /* Menü elemanları arasına 30px boşluk */
}

nav ul li a {
  text-decoration: none;  /* Link altı çizgisi kaldırılır */
  color: #efefef;         /* Açık gri renk */
  font-weight: 800;       /* Kalın yazı */
  transition: color 0.3s ease; /* Renk değişim animasyonu */
  padding: 5px 0;         /* Dikey iç boşluk */
  border-bottom: 3px solid transparent; /* Alt çizgi başlangıçta görünmez */
}


nav ul li a:hover,
nav ul li a.active {
  color: #f0f0f0;         /* Hover veya aktif linkte renk değişir */
  border-bottom-color: #007BFF; /* Alt çizgi mavi olur */
}
.nav-links p {
    color: white;
    font-weight: bold;  /* istersen yazıyı kalın yapar */
    margin: 0;          /* boşlukları sıfırlar */
}

.hero {
  display: flex;
  justify-content: center; /* Yatayda ortalama */
  align-items: center;     /* Dikeyde ortalama */
         /* Tüm ekran yüksekliği kaplasın */
  background: #f9fafc;     /* İstersen arka plan rengi ekleyebilirsin */
}

.hero img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Genel Hizmetlerimiz Bölümü */

.hizmetlerimiz {
  padding: 80px 20px;
  background: #f9fafc;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.hizmetlerimiz .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hizmetlerimiz h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  position: relative;
  display: inline-block;
}

.hizmetlerimiz h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: hsl(250, 88%, 29%);
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}

.hizmetlerimiz .description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Düzeni */
.hizmet-kategori {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* Kart Tasarımı */
.hizmet-kutu {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.hizmet-kutu:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Başlıklar */
.hizmet-kutu h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  border-left: 4px solid #0008ff;
  padding-left: 10px;
}

/* Liste Düzeni */
.hizmet-kutu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hizmet-kutu ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  position: relative;
  padding-left: 20px;
}

.hizmet-kutu ul li::before {
  content: "✔";
  color: #000000;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Responsive Düzen */
@media (max-width: 768px) {
  .hizmetlerimiz h2 {
    font-size: 2rem;
  }
  .hizmetlerimiz .description {
    font-size: 1rem;
  }
  .hizmet-kutu {
    padding: 20px;
  }
}



/* ------------------------------ */
/* FOOTER                         */
/* ------------------------------ */
.site-footer {
  background-color: #f0f0ed;
  color: #333;
  padding: 40px 20px 20px;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0a3d62;
  text-transform: uppercase;
}

.footer-column p {
  font-size: 14px;
  margin: 6px 0;
  line-height: 1.5;
}

.footer-column a {
  color: #0a3d62;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Sosyal Medya İkonları */
.social-icons a {
  display: inline-block;
  background: #dcdcdc;
  color: #0a3d62;
  padding: 8px;
  margin: 5px;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0a3d62;
  color: #fff;
}

/* Alt Çizgi Bölümü */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 13px;
  color: #666;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

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