/* ==========================================
   1. GENEL RENK DEĞİŞKENLERİ & TEMEL AYARLAR
   ================================---------- */
:root {
  --bg-navy: #0b132b;          /* Derin Lacivert Arka Plan */
  --bg-darker-navy: #060913;   /* Daha Koyu Lacivert (Alt Telif Alanı) */
  --dropdown-navy: #1c2541;    /* Açılır Menü Arka Planı */
  --accent-brown: #c5a059;     /* Logodaki Şık Mat Altın/Bronz Tonu */
  --accent-hover: #d4b26f;     /* Hover Durumu İçin Açık Bronz Tonu */
  --text-white: #ffffff;       
  --text-gray: #b2bec3;        /* Yumuşak Gri Metin Rengi */
  --text-dark: #334155;        /* Genel İçerik Metin Rengi (Okunabilir Koyu Gri) */
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8fafc;
  color: var(--text-dark);
}

/* Tüm Sayfalar İçin Genel Paragraf ve Başlık Standartları */
p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-align: justify;
}

h1, h2, h3, h4 {
  color: var(--bg-navy);
  font-weight: 700;
}


/* ==========================================
   2. NAVBAR (ÜST MENÜ) STİLLERİ
   ================================---------- */
.site-header {
  background-color: var(--bg-navy);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}

.logo-img {
  height: 85px;         
  width: auto;          
  max-width: 280px;     
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #e2e8f0;         
  font-size: 16px;        /* Okunabilirlik için artırıldı */
  font-weight: 500;       
  letter-spacing: 0.3px;  
  transition: color 0.3s ease;
  padding: 10px 0;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent-brown);
}

/* Dropdown (Açılır Menü) */
.dropdown {
  position: relative;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--dropdown-navy);
  min-width: 260px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-top: 3px solid var(--accent-brown);
  border-radius: 0 0 4px 4px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-gray);
  white-space: nowrap;
  font-size: 15px;         /* Okunabilirlik için artırıldı */
}

.dropdown-menu li a:hover {
  background-color: rgba(197, 160, 89, 0.15);
  color: var(--accent-brown);
}


/* ==========================================
   3. SAYFA ÜST BANNER (ORTAK KOMPAKT BANNER)
   ================================---------- */
.page-mini-banner {
  background-color: var(--bg-navy);
  padding: 55px 20px;
  text-align: center;
  border-bottom: 3px solid var(--accent-brown);
  margin-bottom: 50px;
}

.page-mini-banner h1 {
  font-size: 34px;
  color: var(--accent-brown);
  margin: 0 0 8px 0;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.page-mini-banner p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
  text-align: center;
}


/* ==========================================
   4. FOOTER (ALT BİLGİ) STİLLERİ
   ================================---------- */
.site-footer {
  background-color: var(--bg-navy);
  color: var(--text-gray);
  padding-top: 60px;
  border-top: 4px solid var(--accent-brown);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-logo {
  height: 90px;
  width: auto;
  max-width: 240px;
  margin-bottom: 15px;
  object-fit: contain;
}

.footer-about {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff; 
  padding-right: 15px;
  text-align: left;
}

.footer-col h3 {
  color: var(--accent-brown);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  text-decoration: none;
  color: #ffffff;         
  font-size: 15px;          /* Okunabilirlik için artırıldı */
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a span {
  color: var(--accent-brown);
  margin-right: 5px;
  font-size: 11px;
}

.footer-links li a:hover {
  color: var(--accent-brown);
  transform: translateX(4px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;         /* Okunabilirlik için artırıldı */
  line-height: 1.5;
  color: #ffffff;         
  text-align: left;
}

.footer-contact li i {
  color: var(--accent-brown); 
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: #ffffff;         
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: var(--accent-brown);
}

/* ==========================================
   ALT TELİF HAKKI ŞERİDİ (BEYAZ VE ORTALI)
   ================================---------- */
.footer-bottom {
  background-color: var(--bg-darker-navy);
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  color: #ffffff !important; /* Yazıyı tam beyaz yapar */
  margin: 0; /* Olası paragraf boşluklarını sıfırlayıp tam ortalar */
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.5px;
}


/* ==========================================
   5. GENEL YAZI BOYUTU GÜVENCESİ (TÜM SİTE İÇİN)
   ================================---------- */
body, p, span, li, a {
  font-size: 16.5px !important; 
  line-height: 1.85 !important;  
}

/* Küçük kalması gereken menü ve footer öğeleri için istisnalar */
.nav-links li a, 
.dropdown-menu li a, 
.footer-links li a, 
.footer-contact li,
.footer-contact li a,
.footer-bottom p {
  font-size: 15px !important; 
}


/* ==========================================
   6. MOBİL UYUMLULUK
   ================================---------- */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* --- MOBİL NAVBAR VE TOGGLE STİLLERİ --- */

.mobile-toggle {
  display: none;
  font-size: 26px;
  color: var(--accent-brown);
  cursor: pointer;
  padding: 10px;
  z-index: 9999; /* En üst katmanda olmasını sağlar */
  position: relative;
}

/* 992px ve altı ekranlar (Tablet ve Telefonlar) */
@media (max-width: 992px) {
  .mobile-toggle {
    display: block; /* Mobilde hamburger butonu görünür */
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* Başlangıçta ekranın dışında gizli */
    width: 280px;
    height: 100vh;
    background-color: var(--bg-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 40px 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease-in-out; /* Akıcı açılma efekti */
    z-index: 1000;
    overflow-y: auto;
    border-left: 2px solid var(--accent-brown);
  }

  /* JavaScript ile menü açıldığında çalışacak sınıf */
  .nav-links.active {
    right: 0 !important;
  }

  .nav-links li {
    width: 100%;
    margin: 10px 0;
  }

  .nav-links a {
    font-size: 16px;
    color: #ffffff;
    width: 100%;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Mobilde Dropdown (Çalışma Alanlarımız) Alt Menü Düzeni */
  .dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    border: none;
    display: none; /* Mobilde varsayılan gizli, tıklayınca açılabilir */
    padding-left: 15px;
    margin-top: 5px;
  }

  /* Mobilde dropdown aktif olduğunda */
  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    font-size: 14px;
    color: #cbd5e1;
    border-bottom: none;
  }
}