/* Genel Ayarlar */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  min-height: 80px;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.4rem;
  color: #ffc107 !important;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.nav-link {
  font-weight: 500;
}

.nav-link:hover,
.dropdown-item:hover {
  background-color: #343a40;
  color: #ffc107 !important;
}

/* Sayfa Başlıkları */
h1, h2, h3 {
  color: #002b5b;
}

/* Kartlar ve Duyurular */
.card {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.alert-info {
  background-color: #e9f6ff;
  border-color: #b6e1fc;
  color: #004085;
}

/* Butonlar */
.btn-outline-warning {
  font-weight: 500;
}

/* Footer */
footer {
  font-size: 0.9rem;
}

footer a {
  color: #ffc107;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer h5 {
  font-weight: bold;
  margin-bottom: 1rem;
}

footer ul li {
  margin-bottom: 0.5rem;
}

/* Carousel */
.carousel-item img {
  max-height: 500px;
  object-fit: cover;
  width: 100%;
}

/* Scroll-to-top Butonu */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 20px;
  background-color: #ffc107;
  color: #000;
  border: none;
  border-radius: 50%;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #e0a800;
}
/* Logo ayarları */
.navbar-logo {
  height: 60px;         /* Daha büyük görünüm */
  width: auto;          /* Orantılı büyüme */
  border-radius: 50%;   /* Kenarları ovalleştirir (gerekirse kaldırabilirsin) */
  background: none;     /* Arka planı tamamen şeffaf tutar */
  padding: 2px;         /* Üstten-alttan biraz boşluk */
}
