/* =================================================== */
/* TEMEL SAYFA STİLLERİ */
/* =================================================== */
html,body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Archivo', sans-serif;
}

/* =================================================== */
/* ORİJİNAL HEADER VE NAVBAR STİLLERİ (GERİ YÜKLENDİ) */
/* =================================================== */
header {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
}

.navbar {
  width: 100%;
  height: 136px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  box-sizing: border-box;
}

.logo img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-left: 300px;
  margin-bottom: 50px;
}

.nav-buttons {
  display: flex;
  gap: 24px;
}

.btn-secondary {
  width: 145px;
  height: 48px;
  padding: 0 18px;
  border: 1.33px solid #002944;
  background-color: transparent;
  color: #002944;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.btn-secondary:hover {
  background-color: #002944;
  color: white;
}

.btn-primary {
  width: 80px;
  height: 44px;
  padding: 0 18px;
  background-color: #002944;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10.67px;
  border: none;
  transition: background-color 0.3s ease;
  margin-right: 10px;
  margin-top: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.btn-primary:hover {
  background-color: #00539C;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #002944;
  min-width: 116px;
  display: none;
  z-index: 1000;
  margin-top: -25px;
}

.dropdown-menu a {
  display: block;
  text-align: center;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}

.dropdown-menu a:hover {
  background-color: #00539C;
}

.hamburger {
  width: 64px;
  height: 64px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.hamburger span {
  width: 64px;
  height: 0;
  border: 4px solid #002944;
  border-radius: 2px;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: -8px;
  width: 400px;
  height: 600px;
  background-color: #002944;
  z-index: 9999;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 136px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* =================================================== */
/* DÜZELTİLMİŞ YAYIN SAYFASI İÇERİK STİLLERİ */
/* =================================================== */

.content-container {
  max-width: 1102px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-container h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.25;
  color: #002944;
  text-align: center;
  margin-bottom: 30px;
}

.content-container h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.25;
  color: #002944;
  margin-top: 50px;
  margin-bottom: 25px;
}

.content-container h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  color: #FB8E56;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-container p {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.7;
  color: #161616;
  text-align: justify;
  margin-bottom: 20px;
}

/* =================================================== */
/* TÜM TAM EKRAN RESİMLER İÇİN TEK STİL */
/* =================================================== */

.foto-alani {
    width: 100vw;
    height: 462px;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 40px;
    margin-bottom: 40px;
}

.foto-alani img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =================================================== */
/* DÜZELTİLMİŞ FOOTER STİLLERİ */
/* =================================================== */
footer {
  width: 100%;
  background-color: #002944;
  padding: 60px 0 0 0;
  margin: 100px 0 0 0;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 169px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-section { flex: 1; }
.footer-section:nth-child(1) { flex: 2; }
.footer-section:nth-child(4) { flex: 0.8; }

.footer-section h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-section p,
.footer-section a {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  margin: 8px 0;
  display: block;
  line-height: 1.5;
}

.footer-section a:hover {
  color: #FB8E56;
}

.footer-bottom {
  width: 100%;
  background-color: #003D5C;
  margin-top: 40px;
}

.footer-bottom-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 15px 169px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-content span {
  color: #ffffff;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
/* =================================================== */
/* MOBİL MENÜ İÇERİK STİLLERİ */
/* =================================================== */

.mobile-menu a {
  margin-bottom: 35px;
  font-size: 30px;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 50px;
  text-align: center;
}

.mobile-menu a:hover {
  padding-left: 10px;
  text-decoration: underline;
  text-decoration-color: #FB8E56;
}

.mobile-menu .photos {
  display: flex;
  justify-content: space-between;
  max-width: 100px;
  margin-top: auto;
  gap: 20px;
}

.mobile-menu .photos img {
  width: 33px;
  height: 33px;
  object-fit: cover;
  border-radius: 8px;
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateX(0);
}

/* Hamburger ikonuna tıklandığında çizgilerin 'X' şeklini alması için */
.hamburger.active span:nth-child(1) {
  transform: translateY(16px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-16px) rotate(-45deg);
}

/* Hamburger ikonundaki çizgilere yumuşak geçiş efekti ekle */
.hamburger span {
    transition: all 0.3s ease-in-out;
}

/* =================================================== */
/* Makale İçi Listeleme Stilleri */
/* =================================================== */

.content-container ul, .content-container ol {
  padding-left: 20px; /* Liste maddelerinin soldan boşluğunu ayarlar */
}

.content-container li {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 15px; /* Liste maddeleri arasına boşluk ekler */
}