/* Malatyam - Özel Stiller */

:root {
  --malatyam-red: #c3011b;
  --malatyam-dark: #212529;
  --malatyam-yellow: #FFD700;
}

/* Body */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
}

/* Manşet Slider */
.manset-slider {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.manset-slider .swiper-container {
  width: 100%;
}
.manset-slider .swiper-slide a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
}
.manset-slider .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}
.manset-slider .swiper-slide span {
  background: rgba(0,0,0,0.65);
  padding: 6px 12px;
  font-size: 13px;
  display: block;
  text-align: center;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  background: rgba(0,0,0,0.4);
  width: 32px !important;
  height: 32px !important;
  border-radius: 50%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: var(--malatyam-red);
  opacity: 1;
}

/* Servis Kutuları (box grid) */
.boxdiv .box {
  margin-bottom: 16px;
}
.boxdiv .box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 8px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: #fff;
  color: #333;
  text-decoration: none;
  min-height: 120px;
  transition: box-shadow 0.2s, transform 0.2s;
  font-weight: 500;
  font-size: 13px;
}
.boxdiv .box a:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-2px);
  color: var(--malatyam-red);
}
.boxdiv .box a svg,
.boxdiv .box a img {
  display: block;
  margin: 0 auto 8px auto;
}

/* Haberler Listesi */
.haber-kart {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
}
.haber-kart:hover .haber-baslik {
  color: var(--malatyam-red);
}
.haber-kart img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.haber-baslik {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
}
.haber-tarih {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

/* Yan Panel */
.side-list .list-group-item {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
}

/* Vefat Listesi */
.vefat-item {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.vefat-item h6 {
  margin: 0;
  font-size: 14px;
}
.vefat-item small {
  color: #777;
}

/* Eczane */
.eczane-item {
  padding: 12px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  margin-bottom: 10px;
}
.eczane-item h6 {
  margin: 0 0 4px;
  color: var(--malatyam-red);
}

/* Deprem */
.deprem-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deprem-mag {
  font-size: 20px;
  font-weight: bold;
  min-width: 50px;
  text-align: center;
  border-radius: 6px;
  padding: 4px 8px;
}
.deprem-mag.dusuk { background: #d4edda; color: #155724; }
.deprem-mag.orta  { background: #fff3cd; color: #856404; }
.deprem-mag.yuksek { background: #f8d7da; color: #721c24; }

/* Sayfalar Grid */
.sayfa-grid .col a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 8px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: box-shadow 0.2s;
  height: 100%;
}
.sayfa-grid .col a:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  color: var(--malatyam-red);
}
.sayfa-grid .col a svg,
.sayfa-grid .col a img {
  margin-bottom: 6px;
}

/* Arama */
.arama-sonuc-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.arama-sonuc-item a {
  font-weight: 600;
  text-decoration: none;
  color: #1a0dab;
}
.arama-sonuc-item a:hover { text-decoration: underline; }

/* Admin */
.admin-sidebar .nav-link.active {
  background: var(--malatyam-red);
  color: #fff !important;
}
.admin-sidebar .nav-link {
  color: #333;
}
.admin-sidebar .nav-link:hover {
  background: #f8f9fa;
}

/* Print */
@media print {
  .d-print-none { display: none !important; }
  .navbar, footer, .progress { display: none !important; }
}

/* Responsive */
@media (max-width: 768px) {
  .boxdiv .box a {
    min-height: 90px;
    font-size: 12px;
    padding: 10px 4px;
  }
  .manset-slider .swiper-slide span {
    font-size: 11px;
  }
}
