/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #a71109;
    --primary-dark: #900f08;
    --navbar-offset: 0px;
    --text-dark: #333;
    --text-muted: #666;
    --bg-light: #f8f5f2;
    --bg-cream: #faf8f5;
    --white: #fff;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 25px rgba(0, 0, 0, 0.15);
    /* Editorial Header */
    --ink-dark: #1a1614;
    --accent-bordo: #7a2b27;
    --bg-editorial: #f4f1ea;
    --border-editorial: #d1cbbd;
}

/* ===== BASE STYLES ===== */
html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Lora', serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

.site-main-default {
    padding-top: var(--navbar-offset);
}

.site-main-home {
    padding-top: var(--navbar-offset);
}

.main-navbar,
.mobile-nav,
.nav-link,
.btn,
.category-desc,
.article-desc,
.kuramci-field,
.kuramci-years,
.kuramci-country,
.result-excerpt,
.result-category,
.suggestion-tag,
.icerik-credits,
.ekip-desc,
.site-footer p,
.search-input,
.badge,
.work-year {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

/* ===== NAVBAR ===== */
.main-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.main-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.desktop-nav-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 2.2rem;
}

.nav-side {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.1rem;
}

.nav-side .nav-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.nav-side .nav-item:not(:last-child)::after {
    content: "•";
    color: #6f6f6f;
    font-size: 0.8rem;
    opacity: 0.85;
}

.nav-left-set {
    justify-content: flex-end;
    min-width: 260px;
}

.nav-right-set {
    justify-content: flex-start;
    min-width: 350px;
}

.nav-right {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 2.5rem 0 0;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.nav-right .nav-item .nav-link {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.5rem 0.25rem;
    transition: color 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.nav-right .nav-item .nav-link:hover {
    color: var(--primary-color);
}

.nav-right .nav-item .nav-link.nav-active {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.nav-right .nav-item .nav-link.nav-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.mobile-nav .nav-link.nav-active {
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(154, 25, 18, 0.06);
    border-radius: 4px;
}

.nav-search {
    font-size: 1rem !important;
}

/* Sol Logo */
.brand-logo {
    flex-shrink: 0;
    text-decoration: none;
    margin: 0;
}

.mobile-brand {
    display: none;
}

.brand-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

.brand-circle {
    width: 102px;
    height: 102px;
    border-radius: 50%;
    border: 1.5px solid #7a1a1a;
    background: #faf5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.brand-text-row {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
    border-bottom: 1px solid #8b1a1a;
    padding-bottom: 4px;
}

.brand-ceviri {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #8b1a1a;
    font-size: 0.82rem;
    letter-spacing: 0;
}

.brand-birikim {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-weight: 700;
    color: #2c3434;
    font-size: 0.82rem;
    letter-spacing: 0;
}

/* Mobil Navbar */
.navbar-toggler {
    border: none;
    display: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 51, 51, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown Menu */
.nav-right .dropdown-menu,
.mobile-nav .dropdown-menu {
    background: var(--bg-cream);
    border: 1px solid rgba(154, 25, 18, 0.15);
    border-radius: 6px;
    padding: 0.5rem 0;
    min-width: 120px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-right .dropdown-item,
.mobile-nav .dropdown-item {
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.nav-right .dropdown-item:hover,
.nav-right .dropdown-item:focus,
.mobile-nav .dropdown-item:hover,
.mobile-nav .dropdown-item:focus {
    background: var(--primary-color);
    color: var(--white);
}

.nav-right .dropdown-toggle::after {
    margin-left: 0.3rem;
    vertical-align: middle;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    background: var(--white);
}

.mobile-nav .nav-link {
    color: var(--text-dark);
    padding: 0.75rem 1rem;
}

@media (max-width: 991px) {
    .desktop-nav-shell {
        display: none;
    }

    .mobile-brand {
        display: inline-flex;
    }

    .navbar-toggler {
        display: block;
    }

    .brand-logo {
        margin-left: 0;
    }

    .navbar-container {
        justify-content: space-between;
    }

    .mobile-nav {
        display: flex;
    }
}

/* ===== EDITORIAL HEADER ===== */
.header-top {
    border-bottom: 4px solid var(--ink-dark);
    position: relative;
    padding: 1.5rem 0;
    background-color: var(--bg-editorial);
    z-index: 1000;
}

.header-top .navbar-nav .nav-link {
    color: var(--ink-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.header-top .navbar-nav .nav-link:hover {
    color: var(--accent-bordo);
}

.header-top .navbar-nav .nav-link.nav-active {
    color: var(--accent-bordo);
    font-weight: 700;
}

.header-top .dropdown-menu {
    background-color: var(--bg-editorial);
    border: 1px solid var(--border-editorial);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(26, 22, 20, 0.14);
    padding: 0.35rem 0;
}

.header-top .dropdown-item {
    color: var(--ink-dark);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.header-top .dropdown-item:hover,
.header-top .dropdown-item:focus,
.header-top .dropdown-item.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.header-top .nav-item.dropdown .nav-link.show {
    color: var(--accent-bordo);
}

.dot-separator {
    display: none;
}

.logo-stamp {
    width: 140px;
    height: 140px;
    border: 1.5px solid var(--accent-bordo);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    background-color: #fdf9f1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 20;
    text-decoration: none;
}

.logo-stamp:hover {
    text-decoration: none;
}

.logo-text-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
    border-bottom: 1.5px solid var(--accent-bordo);
    padding-bottom: 2px;
}

.word-ceviri {
    font-family: 'Playfair Display', serif;
    color: var(--accent-bordo);
    font-size: 1.05rem;
    font-weight: 600;
    font-style: normal;
}

.word-birikim {
    font-family: 'Playfair Display', serif;
    color: #2b2b2b;
    font-size: 1.05rem;
    font-weight: 600;
    font-style: normal;
}

@media (max-width: 991px) {
    .header-top {
        padding: 1rem 0;
        border-bottom: 4px solid var(--ink-dark);
    }

    .header-top .navbar-nav .nav-link {
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .header-top .navbar-collapse {
        padding-bottom: 1rem;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding-top: 0;
    overflow: hidden;
}

.hero-section .carousel-item {
    height: calc(80vh - 90px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 5, 5, 0.85) 40%, rgba(10, 5, 5, 0.50) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 3px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    align-self: flex-start;
}

.btn-hero:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-section .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    opacity: 0.5;
}

.hero-section .carousel-indicators .active {
    opacity: 1;
    background-color: var(--white);
}

/* ===== CATEGORY SECTION ===== */
.category-section {
    padding: 4rem 0;
    background: var(--bg-light);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.category-card {
    display: block;
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    color: var(--text-dark);
    text-decoration: none;
}

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.category-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.home-books-section {
    padding: 3.2rem 0 3.6rem;
    background: var(--bg-light);
    border-top: 1px solid rgba(122, 43, 39, 0.08);
}

.home-book-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.home-books-carousel {
    position: relative;
    padding: 0 42px;
}

.home-books-viewport {
    overflow: hidden;
}

.home-books-track {
    display: flex;
    will-change: transform;
}

.home-books-item {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 0.5rem;
}

.home-book-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.home-book-link:hover .home-book-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.home-book-cover {
    height: 280px;
    overflow: hidden;
}

.home-book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-book-link:hover .home-book-cover img {
    transform: scale(1.04);
}

.home-book-meta {
    padding: 0.7rem 1rem 0.85rem;
    text-align: left;
    position: relative;
    min-height: 72px;
}

.home-book-title {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.home-book-author {
    margin: 0;
    font-size: 0.85rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-muted);
    line-height: 1.35;
    padding-right: 2rem;
}

.home-book-arrow {
    position: absolute;
    right: 1.2rem;
    bottom: 0.55rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    line-height: 1;
}

.home-books-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary-color);
    font-size: 1.7rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    z-index: 3;
}

.home-books-nav-prev {
    left: 0;
}

.home-books-nav-next {
    right: 0;
}

.home-books-nav:hover {
    background: #fff;
}

@media (max-width: 576px) {
    .home-books-carousel {
        padding: 0 34px;
    }

    .home-books-item {
        flex-basis: 50%;
        max-width: 50%;
    }

    .home-book-cover {
        height: 240px;
    }

    .home-books-nav {
        width: 28px;
        height: 28px;
        font-size: 1.45rem;
    }
}

.btn-home-books {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    padding: 0.65rem 1.8rem;
    font-weight: 600;
}

.btn-home-books:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.home-social-section {
    padding: 3rem 0 3.5rem;
    background: var(--bg-light);
    border-top: 1px solid rgba(122, 43, 39, 0.08);
}

.home-social-title {
    font-size: 2.1rem;
    color: #2a2220;
    margin-bottom: 0.45rem;
}

.home-social-subtitle,
.home-social-follow-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
}

.home-social-follow-title {
    font-size: 1.9rem;
    color: #3a2f2a;
    margin-bottom: 0.45rem;
}

.home-social-follow-title i {
    color: var(--primary-color);
    margin-right: 0.35rem;
}

.home-social-carousel {
    position: relative;
    padding: 0 36px;
}

.home-social-viewport {
    overflow: hidden;
}

.home-social-track {
    display: flex;
    will-change: transform;
}

.home-social-item {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
    padding: 0 0.4rem;
}

.home-social-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5ddd3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    cursor: pointer;
}

.home-social-embed {
    position: relative;
    padding-top: 130%;
    background: #f4f0ea;
}

.home-social-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.home-social-open {
    position: absolute;
    right: 0.45rem;
    bottom: 0.45rem;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(25, 25, 25, 0.72);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
}

.home-social-open:hover {
    background: rgba(25, 25, 25, 0.9);
}

.home-social-caption {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: #635750;
    padding: 0.45rem 0.55rem;
    border-top: 1px solid #eee5dc;
    min-height: 34px;
}

.home-social-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 1px solid #e0d5c9;
    border-radius: 6px;
    background: #fff;
    color: #5e5047;
    font-size: 1.35rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.home-social-nav-prev { left: 0; }
.home-social-nav-next { right: 0; }

.btn-home-social-follow {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    padding: 0.65rem 1.8rem;
    font-weight: 600;
}

.btn-home-social-follow:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.home-social-actions {
    display: flex;
    gap: 0.7rem;
    justify-content: space-between;
    align-items: center;
}

.btn-home-social-follow i {
    margin-right: 0.35rem;
}

.btn-home-social-youtube {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-home-social-youtube:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.home-social-modal-content {
    background: #111;
    border: none;
}

.home-social-modal-content .btn-close {
    filter: invert(1);
}

.home-social-modal-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.home-social-modal-dialog-instagram {
    max-width: min(430px, 92vw);
}

#socialMediaModal.home-social-modal-instagram .home-social-modal-frame-wrap {
    padding-top: 0;
    height: min(84vh, 760px);
}

.home-social-modal-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

@media (max-width: 991px) {
    .home-social-item {
        flex-basis: 33.3333%;
        max-width: 33.3333%;
    }

    .home-social-follow-title {
        text-align: left;
        font-size: 1.55rem;
    }

    .home-social-follow-subtitle {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .home-social-carousel {
        padding: 0 30px;
    }

    .home-social-item {
        flex-basis: 100%;
        max-width: 100%;
    }

    .home-social-title {
        font-size: 1.6rem;
    }

    .home-social-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===== ARTICLES SECTION ===== */
.articles-section {
    padding: 4rem 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(122, 43, 39, 0.08);
}

.home-hero-section + .articles-section {
    padding-top: 2.1rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.section-title-home-articles {
    text-align: center;
    color: #2f2623;
    letter-spacing: 0.02em;
    margin-bottom: 2.2rem;
}

.home-articles-carousel {
    position: relative;
    padding: 0 36px;
}

.home-articles-viewport {
    overflow: hidden;
}

.home-articles-track {
    display: flex;
    will-change: transform;
}

.home-articles-item {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 0.5rem;
}

.article-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.article-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.article-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.article-content {
    padding: 1.5rem;
    position: relative;
}

.article-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.article-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.article-link {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.article-link:hover {
    transform: translateX(5px);
    color: var(--primary-dark);
}

.home-articles-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 1px solid #e0d5c9;
    border-radius: 6px;
    background: #fff;
    color: #5e5047;
    font-size: 1.35rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.home-articles-nav-prev { left: 0; }
.home-articles-nav-next { right: 0; }

.btn-articles {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 3px;
}

.btn-articles:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

@media (max-width: 991px) {
    .home-articles-item {
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .home-articles-carousel {
        padding: 0 30px;
    }

    .home-articles-item {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    padding: 5.5rem 0;
    min-height: clamp(430px, 56vh, 640px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.home-hero-section {
    height: 78vh;
    min-height: 520px;
}

.home-hero-section .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.home-hero-overlay {
    background: linear-gradient(to right, rgba(33, 22, 18, 0.74) 35%, rgba(33, 22, 18, 0.4) 100%);
}

.home-hero-content {
    position: relative;
    padding-top: clamp(3.8rem, 11vh, 8rem);
}

.btn-articles-home {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-articles-home:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.featured-section-home {
    background: linear-gradient(180deg, #f2ede7 0%, #ece6de 100%);
    border-top: 1px solid rgba(122, 43, 39, 0.08);
}

.featured-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.14), transparent 32%),
        radial-gradient(circle at 82% 78%, rgba(62, 54, 48, 0.10), transparent 34%);
    pointer-events: none;
}

.featured-section .container {
    position: relative;
    z-index: 1;
}

.featured-panel {
    max-width: 700px;
    background: linear-gradient(155deg, rgba(250, 244, 236, 0.94), rgba(245, 236, 227, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 16px;
    padding: 2.2rem 2.25rem 2.35rem;
    box-shadow: 0 20px 44px rgba(17, 12, 11, 0.28);
    backdrop-filter: blur(2px);
}

.featured-label {
    font-size: 0.95rem;
    color: #64564f;
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.featured-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.95rem;
}

.featured-lead {
    font-size: 1rem;
    color: #4a403b;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.featured-desc {
    font-size: 1.02rem;
    color: #564843;
    margin-bottom: 1.55rem;
    line-height: 1.8;
}

.btn-featured {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.72rem 1.65rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.btn-featured:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(127, 20, 13, 0.33);
}

@media (max-width: 768px) {
    .featured-section {
        min-height: 0;
        padding: 3.9rem 0;
    }

    .featured-panel {
        max-width: 100%;
        padding: 1.5rem 1.25rem 1.65rem;
        border-radius: 10px;
    }

    .featured-title {
        font-size: 1.7rem;
    }

    .featured-lead,
    .featured-desc {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    position: relative;
    background-color: #4a1612;
    background-image:
        linear-gradient(145deg, rgba(74, 22, 18, 0.96) 0%, rgba(124, 34, 27, 0.78) 50%, rgba(65, 23, 20, 0.94) 100%);
    padding: 2.8rem 0 2.6rem;
    border-top: 1px solid rgba(244, 222, 205, 0.14);
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='4' seed='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px 300px;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 0;
}

.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 24%, rgba(36, 8, 6, 0.36) 100%);
    pointer-events: none;
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer p {
    color: rgba(245, 226, 212, 0.9);
    font-size: 0.9rem;
}

.footer-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: rgba(255, 232, 232, 0.9);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #fff;
}

.footer-sep {
    color: rgba(255, 223, 223, 0.6);
    font-size: 0.78rem;
}

/* ===== ADMIN LAYOUT ===== */
.admin-layout-body {
    background: #f6f7fb;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
}

.admin-sidebar {
    background: #2c2f3a;
    color: #fff;
    padding: 1.5rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-brand {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.admin-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.admin-nav-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 0.7rem 0.75rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.admin-nav-link:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.admin-nav-section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    padding: 0.4rem 0.75rem 0.1rem;
}

.admin-main {
    padding: 1.2rem;
}

.admin-main .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.admin-main .btn-primary:hover,
.admin-main .btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.admin-main .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.admin-main .btn-outline-primary:hover,
.admin-main .btn-outline-primary:focus {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.admin-main .badge.bg-primary {
    background: #ece6df !important;
    color: #1f1f1f !important;
    border: 1px solid #d2c3b6;
    font-weight: 700;
}

.admin-main .nav-tabs .nav-link {
    color: #232323;
    font-weight: 600;
}

.admin-main .nav-tabs .nav-link.active {
    color: #111;
    border-color: #e2d8d1 #e2d8d1 #fff;
    font-weight: 700;
}

.admin-main .table thead th {
    background: #f6f1ec;
    color: #4a3f3f;
}

.admin-main .table a.text-decoration-none {
    color: #1e1e1e;
    font-weight: 700;
}

.admin-main .table a.text-decoration-none:hover {
    color: #000;
}

@media (max-width: 991px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        gap: 0.5rem;
        position: static;
        height: auto;
        overflow-y: visible;
    }
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon,
.social-icon:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(244, 222, 205, 0.65);
    color: #f8eee8 !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #fff !important;
    border-color: #fff;
    background: rgba(167, 17, 9, 0.58);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .home-hero-content {
        padding-top: 3rem;
    }

    .brand-logo {
        position: relative;
        left: auto;
        transform: none;
    }

    .nav-item-link {
        display: none;
    }

    .category-section {
        margin-top: 0;
    }
}

/* ===== KURAMCILAR PAGE ===== */
.kuramcilar-hero {
    position: relative;
    min-height: 42vh;
    background: linear-gradient(rgba(60, 40, 40, 0.5), rgba(60, 40, 40, 0.6)),
                url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hakkimizda-slider-section {
    padding: 0 0 1.8rem;
    background: var(--bg-light);
}

.hakkimizda-slider-shell {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(21, 12, 10, 0.14);
}

.hakkimizda-slider-section .carousel-item,
.hakkimizda-slider-empty {
    height: clamp(400px, 64vh, 700px);
}

.hakkimizda-slider-empty {
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .hakkimizda-slider-section {
        padding: 0 0 1.2rem;
    }

    .hakkimizda-slider-shell {
        width: 100%;
        border-radius: 10px;
    }

    .hakkimizda-slider-section .carousel-item,
    .hakkimizda-slider-empty {
        height: clamp(300px, 48vh, 460px);
    }
}

.hakkimizda-section .hakkimizda-title-body {
    color: var(--text-dark);
    margin-bottom: 0.55rem;
}

.hakkimizda-section .hakkimizda-subtitle-body {
    color: #5d514a;
}

/* Hakkımızda */
.hakkimizda-hero {
    position: relative;
    min-height: 42vh;
    background: linear-gradient(rgba(60, 40, 40, 0.5), rgba(60, 40, 40, 0.6)),
                url('https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hakkimizda-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.hakkimizda-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.hakkimizda-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.hakkimizda-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.kuramcilar-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.kuramcilar-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.kuramcilar-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.kuramcilar-intro {
    font-size: 1.05rem;
    color: var(--text-secondary, #555);
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
}

.kuramci-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.kuramci-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.kuramci-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e9e6e3;
}

.kuramci-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kuramci-card:hover .kuramci-image img {
    transform: scale(1.05);
}

.kitap-card {
    border-radius: 12px;
    max-width: 220px;
    margin: 0 auto;
}

.kitap-image {
    height: auto;
    aspect-ratio: 2 / 3;
    border-bottom: 1px solid #eee;
}

.kitap-info {
    padding: 0.75rem 0.8rem;
}

.kitap-author {
    margin: 0;
    font-size: 0.82rem;
    color: #6a5950;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
}

.kitap-info .kuramci-name {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.kuramci-info {
    padding: 1.25rem 1rem;
}

.kuramci-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.kuramci-years {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.kuramci-field {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.kuramci-country {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid #eee;
    padding-top: 0.75rem;
}

.flag-icon {
    font-size: 1rem;
}

.kuramcilar-timeline {
    padding: 4rem 0;
    background: var(--bg-cream);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ===== KURAMCI CARD LINK ===== */
.kuramci-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.kuramci-card-link:hover .kuramci-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.kuramci-card-link:hover .kuramci-name {
    color: var(--primary-color);
}

/* ===== KURAMCI DETAIL PAGE ===== */
.kuramci-detail-hero {
    position: relative;
    min-height: 45vh;
    background: linear-gradient(rgba(50, 30, 30, 0.72), rgba(50, 30, 30, 0.82)),
                url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.kuramci-detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.kuramci-detail-tag {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
}

.kuramci-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.kuramci-detail-years {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.kuramci-detail-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    font-style: italic;
    margin-bottom: 0;
}

.kuramci-detail-section {
    padding: 5rem 0;
    background: var(--white);
}

.kuramci-detail-bio {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.kuramci-detail-portrait {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(154,25,18,0.2);
}

.kuramci-detail-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kuramci-detail-bio-text p {
    font-family: 'Open Sans', Verdana, Arial, sans-serif;
    font-size: 1.05rem;
    color: #222 !important;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.kuramci-article-image-float {
    float: left;
    width: 400px;
    margin: 0.25rem 2rem 1rem 0;
}

.kuramci-article-image-float img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.kuramci-article-content {
    display: block;
}

.kuramci-article-content::after {
    content: "";
    display: block;
    clear: both;
}

.detail-section-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.detail-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.detail-section-intro {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.kuramci-detail-theory {
    padding: 5rem 0;
    background: var(--bg-light);
}

.theory-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.theory-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.theory-card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.theory-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.theory-card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.kuramci-detail-quote {
    padding: 5rem 0;
    background: var(--bg-cream);
}

.kuramci-blockquote {
    border-left: 3px solid var(--primary-color);
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 0 8px 8px 0;
    box-shadow: var(--shadow);
    text-align: left;
}

.kuramci-blockquote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.kuramci-blockquote footer {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.kuramci-detail-works {
    padding: 5rem 0;
    background: var(--white);
}

.works-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.work-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.work-item:last-child {
    border-bottom: none;
}

.work-year {
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(154,25,18,0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-top: 0.2rem;
    height: fit-content;
}

.work-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.work-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.kuramci-detail-back {
    padding: 3rem 0;
    background: var(--bg-light);
}

.btn-back {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white);
    padding: 0.65rem 1.75rem;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-back:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

@media (max-width: 576px) {
    .kuramci-detail-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .kuramci-article-image-float {
        float: none;
        width: 100%;
        margin: 0 0 1rem 0;
    }

    .kuramci-article-content {
        width: 100%;
    }

    .kuramci-detail-title {
        font-size: 2rem;
    }
}

/* ===== GALERİ PAGE ===== */
.galeri-hero {
    position: relative;
    min-height: 42vh;
    background: linear-gradient(rgba(60, 40, 40, 0.5), rgba(60, 40, 40, 0.6)),
                url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.galeri-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.galeri-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.galeri-intro {
    padding: 3rem 0;
    background: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-style: italic;
}

.galeri-section {
    padding: 2rem 0 4rem;
    background: var(--bg-light);
}

.galeri-section-alt {
    background: var(--white);
}

.galeri-year-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.galeri-year-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0.75rem auto 0;
}

.galeri-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.galeri-item-hidden {
    display: none;
}

.galeri-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galeri-item:hover img {
    transform: scale(1.1);
}

.galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeri-item:hover .galeri-overlay {
    opacity: 1;
}

.galeri-caption {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.gallery-modal-content {
    background: var(--bg-cream);
    border: none;
}

#galleryModalCaption {
    color: var(--text-dark);
    font-weight: 600;
}

/* Daha Fazlası Butonu */
.btn-load-more {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-load-more:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(154, 25, 18, 0.3);
}

.btn-load-more i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: rotate(90deg);
}

/* ===== SEARCH MODAL ===== */
.search-modal-content {
    background: var(--bg-cream);
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search-modal-content .modal-header {
    padding: 1.5rem 2rem 0.5rem;
}

.search-modal-content .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.search-modal-content .modal-body {
    padding: 1rem 2rem 2rem;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    border: 2px solid #e0dcd8;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-search {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-search:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.search-suggestions {
    border-top: 1px solid #e0dcd8;
    padding-top: 1.5rem;
}

.suggestions-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-tag {
    background: var(--white);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid #e0dcd8;
    transition: all 0.2s ease;
}

.suggestion-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===== SEARCH PAGE ===== */
.search-hero {
    background: var(--bg-cream);
    padding: 8rem 0 2rem;
    text-align: center;
}

.search-results-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.search-query-info {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.search-form-section {
    background: var(--bg-cream);
    padding: 1rem 0 3rem;
}

.search-page-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-results-section {
    padding: 3rem 0;
    background: var(--bg-light);
    min-height: 400px;
}

.search-result-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.search-result-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.result-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    margin-bottom: 0.75rem;
}

.result-category-kuramci { background: #9A1912; }
.result-category-icerik  { background: #3a6b4c; }
.result-category-sayfa   { background: #3a4b6b; }

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.suggestion-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.suggestion-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.suggestion-tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.result-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.result-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.result-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.result-link:hover {
    color: var(--primary-dark);
}

.no-search i {
    color: #ddd;
}

/* ===== EKİBİMİZ PAGE ===== */
.ekip-hero {
    background: var(--bg-light);
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.ekip-year-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ekip-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.ekip-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
}

.ekip-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
}

.ekip-image {
    flex-shrink: 0;
    width: 210px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.ekip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ekip-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ekip-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.ekip-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.ekip-group-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.ekip-group-desc {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.ekip-member-card {
    text-align: center;
}

.ekip-member-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
    box-shadow: var(--shadow);
}

.ekip-member-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.45rem;
    margin: 0.9rem 0 0.75rem;
    color: #39424f;
    font-weight: 500;
}

.ekip-member-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: center;
}

.ekip-member-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease;
}

.ekip-member-link:hover {
    transform: translateY(-2px);
    color: #fff;
}

.ekip-member-linkedin {
    background: #0077b5;
}

.ekip-member-mail {
    background: #6c757d;
}

.btn-year-nav {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-year-nav:hover,
.btn-year-nav:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

@media (max-width: 576px) {
    .ekip-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .ekip-year-title {
        font-size: 2.2rem;
    }
}

/* ===== İÇERİKLERİMİZ PAGE ===== */
.icerik-hero {
    background: var(--bg-light);
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.icerik-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.icerik-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.icerik-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
}

.icerik-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.icerik-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.icerik-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.icerik-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.icerik-card:hover .icerik-image img {
    transform: scale(1.05);
}

.icerik-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.icerik-info {
    padding: 1.25rem;
}

.icerik-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.icerik-credits {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.icerik-credits p {
    margin-bottom: 0.25rem;
}

.icerik-credits span {
    color: var(--text-dark);
    font-weight: 500;
}

.icerik-credits strong {
    font-weight: 800;
    font-style: italic;
    color: #1f1f1f;
}

/* ===== ICERIK LOAD MORE ===== */
@keyframes icerikFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icerik-fade-in {
    animation: icerikFadeIn 0.4s ease forwards;
}

/* ===== FOCUS STATES ===== */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}