/* =====================================================
   SÜLEYMAN YAPICI — PROJE2 YENİ TASARIM 2026
   Modern, Temiz, Profesyonel Bootstrap 5 Teması
   ===================================================== */

/* ── Değişkenler ── */
:root {
    --font-family-main: 'Roboto', Arial, sans-serif;
    --primary:      #92400e;
    --primary-mid:  #b45309;
    --primary-lt:   #d97706;
    --accent:       #fbbf24;
    --accent-lt:    #fef3c7;
    --accent-pale:  #fffbeb;
    --white:        #ffffff;
    --bg:           #fafaf9;
    --surface:      #ffffff;
    --surface-2:    #fef9ec;
    --border:       #e7e5e4;
    --border-lt:    #f5f0eb;
    --text:         #1c1917;
    --text-2:       #44403c;
    --muted:        #78716c;
    --success:      #059669;
    --danger:       #dc2626;

    --shadow-xs:    0 1px 2px rgba(0,0,0,.05);
    --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
    --shadow-md:    0 4px 8px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
    --shadow-lg:    0 10px 20px rgba(0,0,0,.09), 0 4px 8px rgba(0,0,0,.05);
    --shadow-xl:    0 20px 40px rgba(0,0,0,.1), 0 8px 16px rgba(0,0,0,.05);
    --shadow-2xl:   0 25px 50px rgba(0,0,0,.22);
    --shadow-amber: 0 4px 20px rgba(180,83,9,.28);

    --radius-xs:    4px;
    --radius-sm:    8px;
    --radius:       12px;
    --radius-lg:    18px;
    --radius-xl:    28px;
    --radius-full:  9999px;

    --ease:         cubic-bezier(.4,0,.2,1);
    --t:            0.22s;
    --t-slow:       0.42s;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-family-main) !important;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
}

a { color: var(--primary-mid); text-decoration: none; transition: color var(--t) var(--ease); }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-lt); border-radius: var(--radius-full); }

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.site-nav {
    position: sticky; top: 0; z-index: 1050;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-lt);
    box-shadow: 0 1px 0 rgba(0,0,0,.04), var(--shadow-sm);
}

.nav-inner {
    display: flex; align-items: center; gap: 16px;
    height: 68px;
}

.brand {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; flex-shrink: 0;
}

.brand-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 3px rgba(251,191,36,.18);
    transition: transform var(--t) var(--ease);
}
.brand:hover .brand-avatar { transform: scale(1.06); }

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem; font-weight: 700;
    color: var(--primary); line-height: 1.1;
}
.brand-tagline { font-size: .72rem; color: var(--muted); font-weight: 400; }

.nav-links {
    display: flex; align-items: center; gap: 2px;
    list-style: none; margin-left: auto;
}
.nav-links a {
    display: block; padding: 6px 13px;
    font-size: .88rem; font-weight: 500;
    color: var(--text-2); border-radius: var(--radius-sm);
    transition: all var(--t) var(--ease); white-space: nowrap;
}
.nav-links a:hover { background: var(--surface-2); color: var(--primary); }
.nav-links a.active {
    background: var(--accent-lt); color: var(--primary); font-weight: 600;
}
.nav-links .nav-cta {
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-lt));
    color: #fff !important; border-radius: var(--radius-full) !important;
    padding: 7px 18px !important;
    box-shadow: var(--shadow-amber);
    margin-left: 4px;
}
.nav-links .nav-cta:hover {
    color: #fff !important; box-shadow: 0 6px 24px rgba(180,83,9,.4);
    transform: translateY(-1px); background: var(--primary-lt) !important;
}

.nav-toggler {
    display: none; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); background: transparent;
    cursor: pointer; transition: all var(--t); margin-left: auto;
    flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggler:hover { background: var(--surface-2); }
.nav-toggler span {
    display: block; width: 100%; height: 1.5px;
    background: var(--text); border-radius: 2px; transition: all .25s;
}

@media (max-width: 991px) {
    .nav-toggler { display: flex; }
    .nav-links-wrap {
        position: absolute; top: 68px; left: 0; right: 0;
        background: #fff; border-top: 1px solid var(--border-lt);
        padding: 10px 16px 18px; box-shadow: var(--shadow-lg);
        display: none; z-index: 1049;
    }
    .nav-links-wrap.is-open { display: block; }
    .nav-links { flex-direction: column; align-items: stretch; gap: 2px; }
    .nav-links a { padding: 10px 14px; }
    .nav-links .nav-cta { margin-left: 0; margin-top: 6px; }
}

/* ═══════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════ */
.hero-wrap { position: relative; overflow: hidden; }

.hero-slide {
    height: 560px;
    background-size: cover; background-position: center;
    position: relative; display: flex; align-items: center;
}
.hero-slide::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
        125deg,
        rgba(28,10,0,.75) 0%,
        rgba(100,40,5,.5)  55%,
        rgba(180,83,9,.2)  100%
    );
}

.hero-content {
    position: relative; z-index: 2; max-width: 580px; padding: 0 12px;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(251,191,36,.18); border: 1px solid rgba(251,191,36,.35);
    color: var(--accent); border-radius: var(--radius-full);
    padding: 5px 14px; font-size: .75rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px;
}

.hero-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700;
    color: #fff; line-height: 1.22; margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero-content p {
    font-size: 1.02rem; line-height: 1.72;
    color: rgba(255,255,255,.87); margin-bottom: 28px;
    max-width: 480px;
}

.hero-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--primary-mid), var(--accent));
    color: #fff; border-radius: var(--radius-full);
    padding: 12px 30px; font-weight: 700; font-size: .95rem;
    box-shadow: 0 4px 24px rgba(180,83,9,.45);
    transition: all var(--t) var(--ease);
    text-decoration: none;
}
.hero-btn:hover {
    color: #fff; transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(180,83,9,.55);
}

/* Carousel overrides */
.hero-wrap .carousel-control-prev,
.hero-wrap .carousel-control-next {
    width: 48px; height: 48px; top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px); border-radius: 50%;
    opacity: 1; transition: all var(--t);
}
.hero-wrap .carousel-control-prev { left: 20px; }
.hero-wrap .carousel-control-next { right: 20px; }
.hero-wrap .carousel-control-prev:hover,
.hero-wrap .carousel-control-next:hover { background: rgba(255,255,255,.3); }

.hero-wrap .carousel-indicators [data-bs-target] {
    width: 32px; height: 4px; border-radius: 4px;
    background: rgba(255,255,255,.45); border: none;
    transition: all var(--t);
}
.hero-wrap .carousel-indicators .active {
    background: #fff; width: 52px;
}

@media (max-width: 768px) {
    .hero-slide { height: 380px; }
    .hero-content h2 { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════
   PAGE HERO (iç sayfalarda)
   ═══════════════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 55%, var(--primary-lt) 100%);
    padding: 48px 0 40px;
    margin-bottom: 0;
}
.page-hero-title { font-size: clamp(1.5rem,3vw,2.2rem); color: #fff; margin-bottom: 10px; }
.page-hero-breadcrumb {
    display: flex; align-items: center; gap: 10px;
    font-size: .84rem; color: rgba(255,255,255,.75);
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.88); }
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero-breadcrumb i { font-size: .7rem; opacity: .6; }

/* ═══════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════ */
.section       { padding: 72px 0; }
.section-sm    { padding: 48px 0; }
.section-alt   { background: var(--surface-2); }
.section-dark  {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--primary-lt) 100%);
}

.section-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .72rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--primary-mid);
    margin-bottom: 10px;
}
.section-kicker::before {
    content: ''; display: block;
    width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--primary-mid), var(--primary-lt));
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.55rem, 3vw, 2.1rem); color: var(--text);
    margin-bottom: 8px;
}
.section-subtitle {
    font-size: .97rem; color: var(--muted);
    max-width: 480px; line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   AUTHOR CARD (Anasayfa hakkımda)
   ═══════════════════════════════════════════════════ */
.author-card {
    background: linear-gradient(145deg, var(--surface-2) 0%, #fff 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 36px 40px;
    display: flex; gap: 32px; align-items: flex-start;
    height: 100%;
}
.author-avatar {
    width: 130px; height: 130px; flex-shrink: 0;
    border-radius: var(--radius-lg); object-fit: cover;
    border: 3px solid #fff; box-shadow: var(--shadow-md);
}
.author-name {
    font-size: 1.6rem; font-weight: 700; color: var(--primary);
    margin-bottom: 2px;
}
.author-role {
    font-size: .84rem; color: var(--muted);
    font-weight: 500; letter-spacing: .04em; margin-bottom: 16px;
    text-transform: uppercase;
}
.author-text {
    font-size: .94rem; line-height: 1.75; color: var(--text-2);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .author-card {
        flex-direction: column; align-items: center;
        text-align: center; padding: 24px;
    }
    .author-avatar { width: 90px; height: 90px; }
}

/* ═══════════════════════════════════════════════════
   CONTENT BOX (iç sayfalar için)
   ═══════════════════════════════════════════════════ */
.content-box {
    background: var(--surface); border-radius: var(--radius-lg);
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    padding: 32px;
}

.content-box-title {
    font-size: 1.4rem; color: var(--primary);
    padding-bottom: 16px; margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.content-box-title::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════
   ARTICLE CARDS (Yazılar)
   ═══════════════════════════════════════════════════ */
.article-card {
    background: var(--surface); border-radius: var(--radius-lg);
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    overflow: hidden; height: 100%;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.article-card-body { padding: 20px; }
.article-cat {
    display: inline-block; background: var(--accent-lt); color: var(--primary);
    border-radius: var(--radius-full); padding: 3px 12px;
    font-size: .72rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; margin-bottom: 10px;
}
.article-title {
    font-size: 1.05rem; font-weight: 700; color: var(--text);
    line-height: 1.35; margin-bottom: 10px;
}
.article-title a { color: inherit; }
.article-title a:hover { color: var(--primary-mid); }
.article-excerpt {
    font-size: .87rem; color: var(--muted); line-height: 1.65;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden; margin-bottom: 16px;
}
.article-meta {
    font-size: .78rem; color: var(--muted);
    display: flex; align-items: center; gap: 12px;
}
.article-read-more {
    font-size: .84rem; font-weight: 600; color: var(--primary-mid);
    display: inline-flex; align-items: center; gap: 4px;
    transition: gap var(--t);
}
.article-read-more:hover { gap: 8px; color: var(--primary); }

/* ═══════════════════════════════════════════════════
   BOOK / ESER CARDS
   ═══════════════════════════════════════════════════ */
.book-card {
    background: var(--surface); border-radius: var(--radius-lg);
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    overflow: hidden; display: flex; flex-direction: column; height: 100%;
    transition: all var(--t) var(--ease);
}
.book-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-lt);
}
.book-img {
    height: 240px; overflow: hidden;
}
.book-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}
.book-card:hover .book-img img { transform: scale(1.08); }

.book-body {
    padding: 14px 16px; flex: 1;
    display: flex; flex-direction: column;
}
.book-title {
    font-size: .9rem; font-weight: 600; color: var(--text);
    line-height: 1.4; margin-bottom: auto;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.book-btn {
    margin-top: 14px; width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-lt));
    color: #fff; border: none; border-radius: var(--radius-sm);
    padding: 8px; font-size: .82rem; font-weight: 600;
    cursor: pointer; transition: all var(--t); text-align: center;
    display: block; text-decoration: none;
}
.book-btn:hover { filter: brightness(1.08); transform: translateY(-1px); color: #fff; }

/* ═══════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════ */
.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 45%, var(--primary-lt) 100%);
    padding: 56px 0;
}

.stat-item { text-align: center; }

.stat-icon-wrap {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
    transition: all var(--t);
}
.stat-item:hover .stat-icon-wrap {
    background: rgba(255,255,255,.25); transform: scale(1.08);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem); font-weight: 700;
    color: #fff; line-height: 1; margin-bottom: 6px;
}
.stat-label {
    font-size: .85rem; color: rgba(255,255,255,.8);
    font-weight: 500; letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════
   PHOTO GRID
   ═══════════════════════════════════════════════════ */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.photo-cell {
    border-radius: var(--radius); overflow: hidden;
    position: relative; aspect-ratio: 4/3;
    cursor: pointer; box-shadow: var(--shadow-sm);
    transition: all var(--t) var(--ease);
}
.photo-cell img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}
.photo-cell:hover { box-shadow: var(--shadow-xl); }
.photo-cell:hover img { transform: scale(1.08); }

.photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
    opacity: 0; transition: opacity var(--t);
    display: flex; align-items: flex-end; padding: 14px;
}
.photo-cell:hover .photo-overlay { opacity: 1; }
.photo-overlay span { color: #fff; font-size: .8rem; font-weight: 500; }

@media (max-width: 768px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════
   VIDEO CARDS
   ═══════════════════════════════════════════════════ */
.video-card {
    background: var(--surface); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    box-shadow: var(--shadow-sm); height: 100%;
    transition: all var(--t) var(--ease);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.video-card iframe { border: 0; width: 100%; }
.video-card-body { padding: 14px 16px; }
.video-card-title {
    font-size: .88rem; font-weight: 500; color: var(--text-2); line-height: 1.45;
}

/* ═══════════════════════════════════════════════════
   FOLDER CARDS (Kategori Kartları)
   ═══════════════════════════════════════════════════ */
.folder-card {
    background: var(--surface); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    box-shadow: var(--shadow-sm); height: 100%;
    transition: all var(--t) var(--ease); display: flex; flex-direction: column;
    text-decoration: none;
}
.folder-card:hover {
    transform: translateY(-5px); box-shadow: var(--shadow-xl);
    border-color: var(--primary-lt);
}
.folder-top {
    height: 88px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-lt));
}
.folder-top i { font-size: 2rem; color: #fff; }
.folder-body {
    padding: 14px 12px; flex: 1;
    display: flex; align-items: center; justify-content: center;
}
.folder-name {
    font-size: .88rem; font-weight: 600; color: var(--text);
    text-align: center; line-height: 1.35;
}

/* ═══════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════ */
.sidebar-widget {
    background: var(--surface); border-radius: var(--radius-lg);
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    padding: 22px; margin-bottom: 22px;
}
.widget-title {
    font-size: .95rem; font-weight: 700; color: var(--text);
    padding-bottom: 12px; margin-bottom: 16px;
    border-bottom: 2px solid var(--accent-lt);
    position: relative;
}
.widget-title::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 36px; height: 2px;
    background: linear-gradient(90deg, var(--primary-mid), var(--primary-lt));
    border-radius: 2px;
}

.post-list { list-style: none; padding: 0; margin: 0; }
.post-list li {
    padding: 10px 0; border-bottom: 1px solid var(--border-lt);
    transition: padding-left var(--t);
}
.post-list li:last-child { border-bottom: none; }
.post-list li:hover { padding-left: 4px; }
.post-list a {
    font-weight: 600; font-size: .9rem; color: var(--text-2);
    display: block; line-height: 1.4; margin-bottom: 3px;
}
.post-list a:hover { color: var(--primary-mid); }
.post-list time { font-size: .74rem; color: var(--muted); }
.post-excerpt {
    font-size: .82rem; color: var(--muted); line-height: 1.55;
    margin: 4px 0 4px; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Son Yazı Kartları (Anasayfa) */
.son-yazi-list { display: flex; flex-direction: column; gap: 10px; }

.son-yazi-item {
    display: block; text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
                border-color var(--t) var(--ease), background var(--t) var(--ease);
    position: relative; overflow: hidden;
}
.son-yazi-item::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: linear-gradient(180deg, var(--primary-mid), var(--accent));
    transform: scaleY(0); transform-origin: bottom;
    transition: transform var(--t) var(--ease); border-radius: 3px 0 0 3px;
}
.son-yazi-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lt);
    background: var(--accent-pale);
}
.son-yazi-item:hover::before { transform: scaleY(1); }

.son-yazi-top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px; margin-bottom: 6px;
}
.son-yazi-badge {
    background: var(--accent-lt); color: var(--primary);
    font-size: .68rem; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; border-radius: var(--radius-full);
    padding: 2px 10px; white-space: nowrap;
}
.son-yazi-tarih {
    font-size: .72rem; color: var(--muted); white-space: nowrap;
}
.son-yazi-baslik {
    font-family: 'Playfair Display', serif;
    font-size: .95rem; font-weight: 700; color: var(--text);
    line-height: 1.35; margin-bottom: 5px;
    transition: color var(--t);
}
.son-yazi-item:hover .son-yazi-baslik { color: var(--primary); }
.son-yazi-ozet {
    font-size: .8rem; color: var(--muted); line-height: 1.55;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; margin-bottom: 6px;
}
.son-yazi-more {
    font-size: .75rem; font-weight: 600; color: var(--primary-mid);
    display: flex; align-items: center; gap: 4px;
    opacity: 0; transform: translateX(-4px);
    transition: opacity var(--t), transform var(--t);
}
.son-yazi-item:hover .son-yazi-more { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════ */
.contact-card {
    background: var(--surface); border-radius: var(--radius-xl);
    border: 1px solid var(--border); box-shadow: var(--shadow-xl);
    padding: 40px;
}
.contact-info-row {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 24px;
}
.contact-icon {
    width: 46px; height: 46px; border-radius: var(--radius-sm);
    background: var(--accent-lt); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--primary-mid);
}
.contact-label { font-size: .74rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.contact-value { font-size: .95rem; color: var(--text); font-weight: 500; margin-top: 2px; }

/* ═══════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════ */
.form-label {
    font-size: .83rem; font-weight: 600; color: var(--text-2); margin-bottom: 6px;
}
.form-control, .form-select {
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    padding: 10px 14px; font-size: .92rem;
    background: #fff; color: var(--text);
    transition: border-color var(--t), box-shadow var(--t);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-lt);
    box-shadow: 0 0 0 3px rgba(180,83,9,.1);
    outline: none;
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-lt));
    border: none; border-radius: var(--radius-full);
    padding: 10px 28px; font-weight: 600; color: #fff;
    box-shadow: var(--shadow-amber);
    transition: all var(--t) var(--ease);
}
.btn-primary:hover {
    transform: translateY(-2px); box-shadow: 0 6px 24px rgba(180,83,9,.42);
    color: #fff;
}
.btn-outline-primary {
    border: 2px solid var(--primary-mid); color: var(--primary-mid);
    border-radius: var(--radius-full); padding: 8px 24px; font-weight: 600;
    background: transparent; transition: all var(--t);
}
.btn-outline-primary:hover {
    background: var(--primary-mid); color: #fff; transform: translateY(-1px);
}

.btn-link-more {
    background: none; border: none; padding: 6px 0;
    font-size: .87rem; font-weight: 600; color: var(--primary-mid);
    cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
    transition: gap var(--t);
}
.btn-link-more:hover { gap: 9px; color: var(--primary); }

/* ═══════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════ */
.modal-content {
    border: none; border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl); overflow: hidden;
}
.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-lt));
    color: #fff; border: none;
}
.modal-header .btn-close { filter: invert(1); }

/* ═══════════════════════════════════════════════════
   TABLE
   ═══════════════════════════════════════════════════ */
.table { border-radius: var(--radius); overflow: hidden; background: #fff; }
.table thead th {
    background: linear-gradient(135deg, var(--primary), var(--primary-lt));
    color: #fff; border: none; padding: 14px 18px; font-weight: 600;
}
.table tbody tr { border-bottom: 1px solid var(--border-lt); }
.table tbody tr:hover { background: var(--surface-2); }

/* ═══════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════ */
.pagination .page-link {
    border-radius: var(--radius-sm) !important; margin: 0 2px;
    color: var(--primary-mid); border-color: var(--border);
    font-weight: 500; transition: all var(--t);
}
.pagination .page-link:hover {
    background: var(--surface-2); color: var(--primary); border-color: var(--primary-lt);
}
.pagination .page-item.active .page-link {
    background: var(--primary-mid); border-color: var(--primary-mid); color: #fff;
}

/* ═══════════════════════════════════════════════════
   SCROLL TOP BTN
   ═══════════════════════════════════════════════════ */
#scrollTopBtn {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-lt));
    color: #fff; border: none; border-radius: 50%;
    font-size: 16px; cursor: pointer;
    opacity: 0; visibility: hidden;
    box-shadow: var(--shadow-lg);
    transition: opacity .3s, visibility .3s, transform .2s;
    display: flex; align-items: center; justify-content: center;
}
#scrollTopBtn.show { opacity: 1; visibility: visible; }
#scrollTopBtn:hover { transform: scale(1.1); }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
    background: linear-gradient(145deg, #1c0a00 0%, #2c1400 55%, #3d1a04 100%);
    color: rgba(255,255,255,.78); padding: 64px 0 0;
}
.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: #fff; font-weight: 700; margin-bottom: 2px;
}
.footer-brand-sub { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-desc {
    font-size: .87rem; line-height: 1.72;
    color: rgba(255,255,255,.6); max-width: 270px; margin-top: 14px;
}
.footer-heading {
    font-size: .72rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
    font-size: .87rem; color: rgba(255,255,255,.68);
    transition: color var(--t); display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--accent); }
.footer-links a i { font-size: .7rem; opacity: .5; }

.footer-divider { border-color: rgba(255,255,255,.07); margin: 40px 0 0; }
.footer-bottom {
    padding: 18px 0;
    background: rgba(0,0,0,.2);
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }

.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-link {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.65); font-size: .88rem;
    transition: all var(--t);
}
.social-link:hover {
    background: var(--primary-mid); border-color: var(--primary-mid); color: #fff;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   MAKALE SAYFASI
   ═══════════════════════════════════════════════════ */
.article-page-body {
    font-size: 1.02rem; line-height: 1.88; color: var(--text-2);
}
.article-page-body p { margin-bottom: 2px; }
.article-page-body br + br { display: none; }
.article-page-body h2, .article-page-body h3 { margin: 1.6em 0 .8em; }
.article-page-body img {
    border-radius: var(--radius); margin: 1.5em 0;
    box-shadow: var(--shadow-md); width: 100%; height: auto;
}

/* ═══════════════════════════════════════════════════
   GALERİ GRİD SAYFA
   ═══════════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery-item {
    border-radius: var(--radius-sm); overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--t);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--t-slow);
}
.gallery-item:hover { box-shadow: var(--shadow-xl); transform: scale(1.02); }
.gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .55s var(--ease) both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ═══════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════ */
.divider-line {
    height: 4px; border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), transparent);
    margin-bottom: 40px;
}
.chip {
    display: inline-block; background: var(--accent-lt); color: var(--primary);
    border-radius: var(--radius-full); padding: 3px 12px;
    font-size: .72rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   KATEGORİ FİLTRE PİLLS
   ═══════════════════════════════════════════════════ */
.category-pill {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--text-2);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--t);
}
.category-pill:hover,
.category-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ═══════════════════════════════════════════════════
   VİDEO KART
   ═══════════════════════════════════════════════════ */
.video-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t);
    height: 100%;
}
.video-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.video-thumb {
    position: relative; cursor: pointer;
    overflow: hidden; aspect-ratio: 16/9;
}
.video-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--t-slow);
}
.video-thumb:hover img { transform: scale(1.05); }
.play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.35);
    color: #fff; font-size: 2.5rem;
    transition: background var(--t);
}
.video-thumb:hover .play-btn { background: rgba(0,0,0,.55); }
.video-body { padding: 14px 16px; }
.video-title { font-size: .95rem; font-weight: 700; color: var(--text-1); margin-bottom: .4rem; line-height: 1.4; }
.video-desc  { font-size: .82rem; color: var(--text-3); margin: 0; }

/* ═══════════════════════════════════════════════════
   MAKALE DETAY SAYFASI
   ═══════════════════════════════════════════════════ */
.article-meta-bar { margin-bottom: 20px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.article-page-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-lt);
}

.author-box {
    display: flex; gap: 20px; align-items: flex-start;
    background: var(--accent-lt);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 22px;
}
.author-box-img {
    width: 70px; height: 70px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    border: 3px solid var(--primary-lt);
}
.author-box-name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--text-1); }
.author-box-title { font-size: .82rem; color: var(--text-3); margin-top: 2px; }

.article-nav {
    display: flex; gap: 14px; margin-top: 28px;
}
.article-nav-btn {
    flex: 1; display: flex; flex-direction: column; gap: 4px;
    padding: 14px 18px;
    background: var(--surface); border-radius: var(--radius);
    border: 1.5px solid var(--border); text-decoration: none;
    transition: all var(--t);
}
.article-nav-btn:hover { background: var(--primary); border-color: var(--primary); }
.article-nav-btn:hover .article-nav-label,
.article-nav-btn:hover .article-nav-title { color: #fff; }
.article-nav-btn.next { text-align: right; }
.article-nav-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-3); }
.article-nav-title { font-size: .88rem; font-weight: 600; color: var(--text-1); line-height: 1.4; }

/* ═══════════════════════════════════════════════════
   KATEGORİ LİSTESİ WİDGET
   ═══════════════════════════════════════════════════ */
.category-list-widget { list-style: none; padding: 0; margin: 0; }
.category-list-widget li { border-bottom: 1px solid var(--border); }
.category-list-widget li:last-child { border-bottom: none; }
.category-list-widget a {
    display: block; padding: 9px 4px;
    font-size: .88rem; font-weight: 600; color: var(--text-2);
    text-decoration: none; transition: color var(--t);
}
.category-list-widget a:hover,
.category-list-widget a.active-cat { color: var(--primary); }

/* ═══════════════════════════════════════════════════
   SLIDER DETAY HERO
   ═══════════════════════════════════════════════════ */
.slider-detay-hero {
    min-height: 380px;
    background-size: cover; background-position: center;
    display: flex; align-items: flex-end;
    padding: 60px 0 40px;
}
.slider-detay-title {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
    margin-bottom: 14px;
    line-height: 1.2;
}

/* ═══════════════════════════════════════════════════
   BTN DEVAM
   ═══════════════════════════════════════════════════ */
.btn-devam {
    font-size: .8rem; font-weight: 700;
    color: var(--primary); text-decoration: none;
    display: inline-flex; align-items: center; gap: 5px;
    transition: gap var(--t);
}
.btn-devam:hover { gap: 9px; color: var(--primary-mid); }
