html,body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  
  
  
}

.container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

header {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
}

/* NAVBAR */
.navbar {
  width: 100%;
  height: 136px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  box-sizing: border-box;
}

/* LOGO */
.logo img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-left: 300px;
  margin-bottom: 50px;
}

/* BUTONLAR */
.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;
}

.icon-chevron {
  font-size: 12px;
}
.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;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
  
}

.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;
}
/* Hamburger Menü Açma */
.hamburger.open + .mobile-menu {
  right: 0; /* Menü sağa kayar */
}



/* Menü için temel stil */
/* Menü başlangıçta sağda gizli olacak */
.mobile-menu {
  position: absolute;
  top: 0;
  right: -8px; /* Menü başlangıçta sağda gizli */
  width: 400px;
  height: 600px; /* Yükseklik %100 olacak şekilde ayarladım */
  background-color: #002944;
  z-index: 9999; /* Diğer içeriklerin üstünde */
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  margin-top: 145px;
  opacity: 0; /* Başlangıçta gizli */
  transform: translateX(100%); /* Menü sağda gizli */
  transition: opacity 0.5s ease, transform 0.5s ease; /* Opaklık ve kayma animasyonu */
  
 
}

.mobile-menu a {
  margin-bottom: 35px; /* Aralarındaki boşluk */
  font-size: 30px; /* Yazı boyutu */
  font-family: 'Archivo', sans-serif; /* Yazı tipi */
  font-weight: 400; /* Yazının kalınlığı */
  color: white; /* Yazı rengi */
  text-decoration: none; /* Altı çizili olmayacak */
  text-transform: uppercase; /* Büyük harf yapar */
  letter-spacing: 1px; /* Harfler arasındaki mesafe */
  margin-top: 50px;
  text-align: center; /* Yazıları merkezler */
}

.mobile-menu a:hover {
  padding-left: 10px;
  text-decoration: underline; /* Altına çizgi ekler */
  text-decoration-color: #FB8E56;
}

/* Fotoğrafların alt alta sıralanması */
.photos {
  display: flex;
  justify-content: space-between;
 max-width: 100px;
  margin-top: auto;
  gap: 20px;
  margin-left: -10px;
}

.photos img {
  width:33px; /* Genişlik 33px */
  height: 33px;; /* Yükseklik 33px */
  object-fit: cover; /* Görüntünün oranını bozmadan kapsama yapılır */
  border-radius: 8px; /* Kenarlara yuvarlaklık ekler */
}
  .search-header {
    width: 1102px;
    height: 70px;
    margin-top: 232px;
    margin-left: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .page-title {
    width: 460px;
    height: 70px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    background-color: #ffffff;
    color: #002944;
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-radius: 6px;
  }
  
  .search-bar {
    width: 321px;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    gap: 10.67px;
    border: 1.33px solid #002944;
    border-radius: 6px;
    background-color: white;
    
  }
  
  .search-icon {
    width: 21.33px;
    height: 21.33px;
  }
  
  .search-input {
    border: none;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    width: 100%;
  }

  /* Yayınlar Ana Alan */
.publications-section {
    width: 1440px;
    height: 2016px;
    padding: 0 169px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    box-sizing: border-box;
    margin-left: 150px;
    
  }
  
  /* Yayın Kartları Alanı */
  .publication-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  /* Yayın Kartı */
  .publication-card {
    display: flex;
    width: 1102px;
    height: 264px;
    gap: 24px;
    box-sizing: border-box;
  }
  
  /* Görsel */
  .publication-image {
    width: 314px;
    height: 264px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* Yazı Alanı */
  .publication-content {
    width: 764px;
    height: 261px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
  }
  
  /* Başlık */
  .publication-title {
    width: 764px;
    height: 80px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 125%;
    color: #002944;
    margin: 0;
  }
  
  /* Detay Butonu */
  .btn-inverted {
    width: 186.7px;
    height: 69.4px;
    border: none;
    background-color: transparent;
    color: #0070BA;

    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 11.57px;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
  }
  
  .btn-inverted:hover {
    text-decoration: underline;
  }
  
  /* İleri Icon */
  .forward-icon {
    width: 16px; /* Boyut ayarladım görseline göre değişebilir */
    height: 16px;
  }
  
  /* Sayfalama */
  .pagination {
    width: 1102px;
    height: 48px;
    padding: 0 113px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    box-sizing: border-box;
  }
  
  .page-number {
    font-size: 18px;
    color: #002944;
    font-weight: bold;
    cursor: pointer;
  }
  
  .page-number.active {
    text-decoration: underline;
  }

  .publication-description {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 150%;
    color: #333;
  }
  
  .publications-section {
    margin-top: 100px; /* Bu değeri ihtiyacına göre artırıp azaltabilirsin */
  }

  footer {
    width: 100%;

    background-color: #002944;
    padding: 60px 0 0 0;
    margin: 0;
   
    
    
  }
  
  .footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px 169px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    
  }
  
  .footer-section {
    flex: 1;
  }
  
  .footer-section:nth-child(1) {
    flex: 2;
  }
  
  .footer-section:nth-child(2),
  .footer-section:nth-child(3) {
    flex: 1;
  }
  
  .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;
  } 
  
  .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;
}