:root {
    --site-content-width: 1000px;
    --header-height: 120px; /* Tüm sayfalarda sabit header yüksekliği */
    --title-font-size: 1.85rem; /* Başlık boyutu – tüm sayfalarda aynı (sabit) */
    --menu-font-size: 1.35rem; /* Menü boyutu – tüm sayfalarda aynı */
    --menu-gap: 56px; /* Menü öğeleri arası boşluk – tüm sayfalarda aynı */
}
/* İslami mistik font import - EN BAŞTA OLMALI */
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Scheherazade+New:wght@400;700&display=swap');

/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* soldaki ekstra 60px boşluğu kaldır: hizalama sorununu giderir */
}

/* Yeni Header Tasarımı - Alt Alta Düzen */
.header {
    background: linear-gradient(135deg, #f8a5c2 0%, #e91e63 100%);
    color: white;
    padding: 0;
    box-shadow: 
        0 8px 32px rgba(233, 30, 99, 0.3),
        0 4px 16px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.2);
    margin: 0 auto;
    max-width: var(--site-content-width); /* Gül resmi ile aynı genişlik */
    width: 100%;
    box-sizing: border-box; /* Border dahil 1000px olsun */
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--header-height);
    border-radius: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1) 0%, 
        transparent 50%, 
        rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, #fef7f7 0%, #fce4ec 50%, #f8bbd9 100%);
    padding: 0;
    border-bottom: 1px solid #f8a5c2;
    margin-bottom: 0;
}

/* Banner konteynerini tamamen iç boşluksuz yap: görsel tam hizalansın */
.banner-section .container {
    padding: 0;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: var(--site-content-width);
    width: 100%;
    box-sizing: border-box; /* header ile birebir */
    margin: 0 auto;
}

.banner-img {
    display: block;
    width: 100%;
    max-width: var(--site-content-width);
    height: auto;
    max-height: 300px;
    border-radius: 10px;
    /* header ile aynı optik genişlik için border-box */
    box-sizing: border-box;
    border: 3px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive Banner */
@media (max-width: 768px) {
    .banner-section {
        padding: 0.5rem 0;
    }
    
    .banner-img {
        max-height: 180px;
    }
}

.header .container {
    max-width: 1000px; /* Gül resmi ile aynı genişlik */
    width: 100%;
    margin: 0;
    padding: 0.6rem 20px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
    height: 100%; /* Header ile aynı yükseklik */
    justify-content: center;
}

/* Başlık ve menü bölümlerinde ekstra boşlukları sıfırla */
.header-top { margin: 0; }
.header-bottom { margin: 0; }
.nav { margin-top: 0; margin-bottom: 0; }

/* Üst Satır - Logo + Arama */
.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.logo h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--title-font-size);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
    color: white;
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Arama Kutusu */
.search-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 0.9rem;
    width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.search-input:focus {
    outline: none;
    background: white;
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.2);
    transform: translateY(-2px);
}

.search-input::placeholder {
    color: #666;
}

.search-btn {
    position: absolute;
    right: 8px;
    background: linear-gradient(135deg, #e91e63, #f8a5c2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.search-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    border-color: rgba(255,255,255,0.6);
}

/* Alt Satır - Navigasyon */
.header-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--site-content-width);
    padding: 6px 12px;
    border-radius: 32px;
    border: none;
    background: transparent;
    box-shadow: none;
    /* Başlıkla birebir hizalama: başlık metin genişliğine yakın sabit şerit */
    width: 64ch; /* Başlık genişliğine daha yakın */
    margin-left: auto;
    margin-right: auto;
}

.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--menu-gap);
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav li { position: relative; flex: 0 0 auto; }
.nav li:first-child { margin-right: auto; }
.nav li:nth-child(2) { margin-left: auto; margin-right: auto; }
.nav li:last-child { margin-left: auto; }

.nav a {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: var(--menu-font-size);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    padding: 0.8rem 1.6rem;
    border-radius: 28px;
    border: 2px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
    transition: all 0.25s ease;
    display: block;
    position: relative;
    overflow: hidden;
    white-space: nowrap; /* tek satırda kalsın */
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav a:hover::before {
    left: 0;
}

.nav a:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.8);
}

/* Daha büyük nav başlıkları ve hizalama - masaüstü */
@media (min-width: 992px) {
    .nav a { font-size: 1.25rem; padding: 0.8rem 1.6rem; }
}

/* Küçük ekranlarda genişliği serbest bırak */
@media (max-width: 768px) {
    .nav { width: 100%; }
}
    

.search-result-tags {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.search-result-tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    font-size: 0.7rem;
}

.search-no-results {
    padding: 1rem;
    text-align: center;
    color: #666;
    font-style: italic;
}

.search-loading {
    padding: 1rem;
    text-align: center;
    color: #666;
}

.search-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Arama vurgulama */
mark {
    background-color: #fff3cd;
    color: #856404;
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
    font-weight: 600;
}

/* Arama sonuçları sayfası */
.search-results {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-query {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-result-item {
    padding: 1.5rem;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.search-result-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.result-title {
    margin-bottom: 0.5rem;
}

.result-title a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}

.result-title a:hover {
    color: #3498db;
}

.result-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.result-category, .result-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.result-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.result-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.result-tags i {
    color: #666;
}

.tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: #333;
    padding: 12px 20px;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2c3e50;
}

/* Main content */
.main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.homepage-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.recent-articles-section {
    margin-top: 3rem;
}

.recent-articles-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: left;
    font-size: 2rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sayfa başlığı - Modern tasarım */
.page-title {
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1.5rem;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e91e63, #f8a5c2);
    border-radius: 2px;
}

.page-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, #e91e63, transparent);
}

/* Kategoriler sayfası - Alt alta dikdörtgen kutucuklar */
.category-links-container {
    max-width: 1000px;
    margin: -2rem auto 0;
    text-align: left;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between; /* metin solda, rozet en sağda */
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.9rem 2rem 0.9rem 2.8rem; /* soldan daha içeri al */
    border-radius: 12px;
    border: 2px solid #e9ecef;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    min-height: 40px;
    text-align: left;
}

.category-views-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #e91e63, #f8a5c2);
    border: none;
    border-radius: 999px;
    padding: 6px 12px;
    box-shadow: 0 6px 14px rgba(233, 30, 99, 0.25);
}

.category-views-badge::before {
    content: "\f06e"; /* eye icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
}

.category-link:hover .category-views-badge {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(233, 30, 99, 0.3);
}

.category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #e91e63, #f8a5c2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-link:hover {
    color: #2c3e50;
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15);
    border-color: #e91e63;
}

.category-link:hover::before {
    transform: scaleX(1);
}

.category-link:active {
    transform: translateY(-2px);
}

/* Responsive kategori kutucukları */
@media (max-width: 768px) {
    .category-links-container {
        max-width: 85%;
        gap: 0.5rem;
        margin: -1.5rem auto 0;
    }
    
    .category-link {
        padding: 0.7rem 1.2rem 0.7rem 2rem;
        font-size: 1rem;
        min-height: 36px;
        text-align: left;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .category-links-container {
        max-width: 90%;
    }
    
    .category-link {
        padding: 0.3rem 0.8rem 0.3rem 1.6rem;
        font-size: 0.9rem;
        min-height: 28px;
    }
}

/* Eski article-links stilleri kaldırıldı - Yeni kutu tasarımı kullanılıyor */

.no-articles {
    color: #666;
    font-style: italic;
    margin: 0;
}

.no-categories {
    text-align: center;
    padding: 3rem;
    color: #666;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Kategori sayfası - Basit yapı */
.simple-articles {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Makale listesi */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-content {
    padding: 1.5rem;
}

.article-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.2rem;
}

.article-card p {
    color: #666;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Makale detay sayfası */
.article-detail {
    background: white;
    padding: 1.4rem 2rem 2rem 2.4rem; /* biraz yukarı taşı ve soldan hafif azalt */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1.6rem;
    margin-top: -1.4rem; /* içerik bloğunu yukarı al */
}

.article-header { border-bottom: 2px solid #eee; }

.article-header--inline {
    display: flex;
    align-items: center; /* tek hizada */
    justify-content: space-between; /* başlık solda, meta sağda */
    gap: 1rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.article-header--inline.stacked {
    flex-direction: column; /* meta alt satıra iner */
    align-items: flex-start;
    gap: 0.4rem;
}

.article-title {
    font-size: 2.2rem; /* başlangıç boyutu, JS gerekirse küçültür */
    color: #2c3e50;
    margin-bottom: 0.2rem;
    flex: 1 1 auto;
    white-space: nowrap; /* tek satırda kalsın */
    /* JS ile sığdırılacak; kesme yapma */
}

.article-meta-inline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #666;
    font-size: 1rem; /* 1 tık büyüt */
    white-space: nowrap; /* taşmayı engelle */
}
.article-meta-inline .meta-item { display: inline-flex; align-items: center; gap: 0.4rem; }

.article-header--inline.stacked .article-meta-inline {
    white-space: nowrap;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Paylaşım Bölümü */
.share-section {
    margin: 1rem 0 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center; /* ortala */
    gap: 1rem;
}

.share-label {
    color: #2c3e50;
    font-weight: 700;
    margin-right: 0.25rem;
}

.share-buttons {
    display: inline-flex;
    align-items: center;
    gap: 1rem; /* biraz daha ferah */
}

.share-btn {
    width: 52px; /* daha büyük */
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.share-btn i, .share-btn svg { transform: scale(1.15); }

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn.telegram { background: #0088CC; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.x { background: #111; }
.share-btn.x svg { display: block; }
.share-btn.instagram { background: radial-gradient( circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90% ); }
.share-btn.copy { background: #6c757d; }

.share-btn.copied {
    background: #28a745;
}

/* İletişim formu */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn {
    background: #3498db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: #2980b9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8a5c2, #e91e63);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Enhanced hover effects */
.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Page transitions */
.page-enter {
    opacity: 0;
    transform: translateY(20px);
}

.page-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Enhanced form styles */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Breadcrumb enhancements - Modern tasarım */
.breadcrumb {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border-left: 5px solid #e91e63;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

/* Global Admin Mesajı */
.global-admin-message {
    margin: -0.5rem 0 1.5rem 0;
    background: linear-gradient(135deg, #fff6f9, #fde6ef);
    border: 1px solid #f8a5c2;
    border-left: 6px solid #e91e63;
    color: #7a1c3a;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.08);
}

.global-admin-message .text {
    font-weight: 600;
    line-height: 1.4;
}

.global-admin-message--success {
    background: linear-gradient(135deg, #e8f7ee, #d9f2e4);
    border-color: #a6e3b7;
    border-left-color: #28a745;
    color: #1b5e20;
}

.global-admin-message--warning {
    background: linear-gradient(135deg, #fff8e1, #ffefc1);
    border-color: #ffe08a;
    border-left-color: #ffb300;
    color: #7c5a00;
}

.global-admin-message--danger {
    background: linear-gradient(135deg, #fdecea, #f9d6d5);
    border-color: #f5b5b2;
    border-left-color: #d32f2f;
    color: #7b1f1f;
}

.breadcrumb a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #c2185b;
    text-decoration: underline;
}

/* Enhanced alerts */
.alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Arama Sonuçları Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.search-results-dropdown.show {
    display: block;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.search-result-meta {
    font-size: 0.8rem;
    color: #666;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .header .container {
        padding: 1rem 15px;
        gap: 0.8rem;
    }
    
    .header-top {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .search-input {
        width: 100%;
        max-width: 300px;
    }
    
    .header-bottom {
        justify-content: center;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav a {
        text-align: center;
        padding: 0.8rem 1rem;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0.8rem 10px;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .search-input {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .search-btn {
        width: 30px;
        height: 30px;
        right: 6px;
    }
}
    
    .nav ul {
        flex-direction: row;
        gap: 0.5rem;
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav a {
        font-size: 0.8rem;
        padding: 0.2rem 0.3rem;
    }
    
    .search-container {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .search-input {
        width: 120px;
        font-size: 0.75rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
        margin-top: 0.5rem;
    }
    
    .dropdown-menu a {
        color: white;
        padding: 8px 0;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255,255,255,0.1);
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-meta-detail {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .homepage-content,
    .article-detail,
    .contact-form {
        padding: 1.5rem;
    }
    .article-detail { padding-left: 1.8rem; }
    
    .word-content {
        font-size: 1.15rem;
    }
    
    .word-content h1 {
        font-size: 1.6rem;
    }
    
    .word-content h2 {
        font-size: 1.4rem;
    }


@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
    }
    
    .nav ul {
        gap: 0.5rem;
    }
    
    .nav a {
        font-size: 1rem;
    }
    
    .search-container {
        margin-left: 1rem;
    }
    
    .search-input {
        width: 150px;
        font-size: 0.8rem;
    }
    
    .articles-grid {
        gap: 1rem;
    }
    
    .article-card-content {
        padding: 1rem;
    }
    
    .word-content {
        font-size: 1.05rem;
    }
    
    .word-content h1 {
        font-size: 1.4rem;
    }
    
    .word-content h2 {
        font-size: 1.2rem;
    }
}

/* Word içerik stilleri - Word'den kopyalanan içerikler için */
.word-content {
    font-family: Arial, sans-serif !important;
    line-height: 1.4 !important;
    font-size: 1.25rem !important;
    color: #333 !important;
    padding-left: 0.5rem; /* hafif iç boşluk */
}

.word-content p {   
    margin-bottom: 0.05rem !important;
    text-align: justify;
    font-family: Arial, sans-serif !important;
    line-height: 1.4 !important;
}

/* Word'den gelen ortalama stillerini koru */
.word-content p[style*="text-align: center"] {
    text-align: center !important;
}

.word-content p[style*="text-align: right"] {
    text-align: right !important;
}

.word-content h1, .word-content h2, .word-content h3, .word-content h4, .word-content h5, .word-content h6 {
    margin: 2rem 0 1rem 0;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

.word-content h1 {
    font-size: 2.2rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5rem;
}

.word-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 0.3rem;
}

.word-content h3 {
    font-size: 1.5rem;
    color: #34495e;
}

.word-content h4 {
    font-size: 1.3rem;
    color: #34495e;
}

.word-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.word-content table, .word-content th, .word-content td {
    border: 1px solid #ddd;
}

.word-content th, .word-content td {
    padding: 12px 15px;
    text-align: left;
}

.word-content th {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.word-content tr:nth-child(even) {
    background-color: #f8f9fa;
}

.word-content tr:hover {
    background-color: #e3f2fd;
}

.word-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.word-content ul, .word-content ol {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

.word-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.word-content blockquote {
    border-left: 4px solid #3498db;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.word-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #3498db;
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.3;
}

.word-content strong, .word-content b {
    font-weight: 600;
    color: #2c3e50;
}

.word-content em, .word-content i {
    font-style: italic;
    color: #555;
}

.word-content a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.word-content a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

/* Scroll to top butonu */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63, #f8a5c2);
    color: white;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.8), 0 0 0 10px rgba(233, 30, 99, 0.1);
    }
    100% {
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    }
}

.scroll-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.6);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: pulse 2s infinite;
}

/* Responsive table */
@media (max-width: 768px) {
    .word-content table {
        font-size: 0.9rem;
    }
    
    .word-content th, .word-content td {
        padding: 8px 10px;
    }
    
    .word-content h1 {
        font-size: 1.8rem;
    }
    
    .word-content h2 {
        font-size: 1.5rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Makale Kutuları - Kategori kutuları ile TAM AYNI tasarım */
.article-links-container {
    max-width: 1000px;
    margin: -1rem auto 0;
    text-align: left;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.article-link {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.9rem 2rem 0.9rem 2.8rem; /* soldan daha içeri al */
    border-radius: 8px;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.article-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #e91e63, #f8a5c2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.article-link:hover {
    color: #2c3e50;
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15);
    border-color: #e91e63;
}

.article-link:hover::before {
    transform: scaleX(1);
}

.article-link:active {
    transform: translateY(-2px);
}

.article-main {
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 0.2rem;
    text-align: left;
}

.article-info {
    color: #888;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    margin-top: 0.3rem;
}

/* Responsive makale kutucukları */
@media (max-width: 768px) {
    .article-links-container {
        max-width: 85%;
        gap: 0.5rem;
        margin: -1.5rem auto 0;
    }
    
    .article-link {
        padding: 0.4rem 1rem 0.4rem 1.8rem;
        font-size: 0.95rem;
        min-height: 30px;
    }
    
    .article-main {
        font-size: 0.95rem;
    }
    
    .article-info {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .article-links-container {
        max-width: 90%;
    }
    
    .article-link {
        padding: 0.3rem 0.8rem 0.3rem 1.5rem;
        font-size: 0.9rem;
        min-height: 28px;
    }
    
    .article-main {
        font-size: 0.9rem;
    }
    
    .article-info {
        font-size: 0.8rem;
    }
}
