/* ------------------------------------------------------------------
   Şablon üzerine eklenen küçük düzeltmeler.
   Tailwind derlemesi (styles/styles.css) değiştirilmemiştir.
------------------------------------------------------------------- */

/* Açılır menü bağlantı animasyonu (şablondaki uzun sınıf yerine) */
.menu-alt {
   position: relative;
   display: block;
   transition: all 0.5s;
}
.menu-alt::before {
   content: '-';
   position: absolute;
   left: 0;
   top: 50%;
   margin-right: 6px;
   transform: translate(-40px, -50%);
   color: #fff;
}
.group:hover .menu-alt {
   padding-left: 20px;
}
.group:hover .menu-alt::before {
   transform: translate(0, -50%);
   transition-delay: 150ms;
}

/* Kart görsellerinin oranını sabitle */
.oran-kapak {
   aspect-ratio: 4 / 3;
   object-fit: cover;
   width: 100%;
   height: 100%;
}
.oran-genis {
   aspect-ratio: 16 / 9;
   object-fit: cover;
   width: 100%;
}

/* Zengin metin (blog / sayfa içeriği) */
.zengin-metin h2 { font-size: 1.6rem; font-weight: 600; margin: 1.6rem 0 0.8rem; color: #0b0b0e; }
.zengin-metin h3 { font-size: 1.3rem; font-weight: 600; margin: 1.4rem 0 0.7rem; color: #0b0b0e; }
.zengin-metin h4 { font-size: 1.1rem; font-weight: 600; margin: 1.2rem 0 0.6rem; color: #0b0b0e; }
.zengin-metin p  { margin-bottom: 1rem; font-family: Poppins, sans-serif; color: #969ba9; line-height: 1.9; }
.zengin-metin ul,
.zengin-metin ol { margin: 0 0 1rem 1.4rem; font-family: Poppins, sans-serif; color: #969ba9; line-height: 1.9; }
.zengin-metin ul { list-style: disc; }
.zengin-metin ol { list-style: decimal; }
.zengin-metin a  { color: #3b71fe; text-decoration: underline; }
.zengin-metin img { max-width: 100%; height: auto; border-radius: 16px; margin: 1rem 0; }
.zengin-metin blockquote {
   border-left: 4px solid #ff5c00;
   padding: 0.4rem 0 0.4rem 1.2rem;
   margin: 1.2rem 0;
   color: #40434d;
   font-style: italic;
}
.zengin-metin table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.zengin-metin th,
.zengin-metin td { border: 1px solid #f1f1f1; padding: 10px 12px; text-align: left; }

/* Galeri küçük görselleri */
.galeri-kucuk {
   cursor: pointer;
   opacity: 0.7;
   transition: opacity 0.25s, transform 0.25s;
}
.galeri-kucuk:hover,
.galeri-kucuk.aktif { opacity: 1; transform: translateY(-2px); }
.galeri-kucuk.aktif { outline: 3px solid #3b71fe; outline-offset: 2px; }

/* Favori düğmesi */
.favori-dugme.aktif i { color: #ff5c00 !important; }

/* Leaflet balon içeriği */
.leaflet-popup-content { margin: 10px 12px; min-width: 180px; }
.leaflet-popup-content-wrapper { border-radius: 14px; }

/* Yazdırma */
@media print {
   header, footer, .yazdirma-gizle { display: none !important; }
   body { background: #fff; }
}
