/*
  ======================================================
  RUHUN TUTKULARI — Sanatsal Design System
  Konsept: "Ruhun Katmanları"
  Palette: Derin Gece Moru · Antik Altın · Parlak Ametist
  Typography: Cinzel · Cormorant Garamond · Nunito
  ======================================================
*/

/* ====================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ==================================================== */
:root {
    /* Renkler - LIGHT MODE DEFAULT */
    --color-deep-night:    #fdfbf7; /* Ana Arkaplan */
    --color-night:         #f5f4f0; /* Alternatif Arkaplan */
    --color-night-mid:     #ecebe6; /* Kenarlıklar/Gölgeler */
    --color-amethyst:      #8b2fc9;
    --color-amethyst-dark: #5f1775;
    --color-gold:          #c9a227;
    --color-gold-light:    #e8c84a;
    --color-gold-pale:     #b89118;
    --color-lavender-neon: #9b4dca;
    --color-cream:         #fdfbf7;
    --color-white:         #ffffff;
    
    /* Metin Renkleri - DARK TEXT */
    --color-text-dark:     #1a102b;
    --color-text-mid:      rgba(26,16,43,0.75);
    --color-text-light:    rgba(26,16,43,0.55);
    --color-surface-light: rgba(0,0,0,0.04);

    /* Header & Footer Ozel */
    --color-header-footer: #0d0618d9;
    --color-footer-text:   #f5ecd7;

    /* Gradyanlar - LIGHT MODE */
    --grad-cosmic:    linear-gradient(135deg, #fdfbf7 0%, #f5f4ef 50%, #ecebe6 100%);
    --grad-gold:      linear-gradient(135deg, #c9a227, #f0d98c, #c9a227);
    --grad-amethyst:  linear-gradient(135deg, #5f1775, #8b2fc9, #bf5fff);
    --grad-card-dark: linear-gradient(160deg, rgba(0,0,0,0.02), rgba(0,0,0,0.01));
    --grad-hero-overlay: linear-gradient(to top, rgba(13,6,24,0.9) 0%, rgba(13,6,24,0.4) 100%);
    --grad-section-cream: linear-gradient(180deg, #fdfbf7 0%, #f5f4ef 100%);

    /* Glow Efektleri */
    --glow-gold:      0 0 20px rgba(201,162,39,0.15), 0 0 60px rgba(201,162,39,0.08);
    --glow-amethyst:  0 0 20px rgba(139,47,201,0.15), 0 0 60px rgba(139,47,201,0.08);
    --glow-lavender:  0 0 30px rgba(139,47,201,0.1);

    /* Gölgeler - Refined for Light Mode */
    --shadow-card:    0 15px 45px rgba(28,16,40,0.05), 0 5px 15px rgba(28,16,40,0.03);
    --shadow-card-hover: 0 25px 70px rgba(139,47,201,0.1), 0 10px 30px rgba(28,16,40,0.06);
    --shadow-float:   0 12px 40px rgba(28,16,40,0.04);

    /* Border */
    --border-gold:    1px solid rgba(201,162,39,0.25);
    --border-glass:   1px solid rgba(28,16,40,0.06);
    --border-amethyst:1px solid rgba(139,47,201,0.15);

    /* Geçişler */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast:   all 0.2s ease;

    /* Radius */
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   40px;
    --radius-pill: 9999px;

    /* Spacing & Typography Clamps */
    --section-py: clamp(4rem, 8vw, 8rem);
    --section-py-sm: clamp(3rem, 5vw, 5rem);
    
    /* Layout specific */
    --container-max-width: 1440px;
    --hero-desktop-height: 85vh;
    --hero-mobile-height: min(80vh, 500px);
}


/* ====================================================
   2. TEMEL RESET & TİPOGRAFİ
   ==================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Nunito', 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-dark); 
    background: var(--color-deep-night);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.homepage-theme {
    background: var(--grad-cosmic);
    background-attachment: fixed;
}

body img {
    max-width: 100%;
    display: block;
}

a {
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    color: inherit;
}

a:hover {
    color: var(--color-amethyst);
    text-decoration: none;
}

/* Başlıklar */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Cinzel', 'Poppins', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

h1, .h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2, .h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3, .h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4, .h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h5, .h5 { font-size: 1.15rem; }
h6, .h6 { font-size: 1rem; }

p {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text-mid);
    margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

/* ====================================================
   3. LOADER (Ruhani Dönen Çember)
   ==================================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-inner {
    position: relative;
    width: 80px;
    height: 80px;
}

.circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-gold);
    animation: spinRight 1.2s linear infinite;
}

.circle::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-lavender-neon);
    animation: spinLeft 0.9s linear infinite;
}

.circle::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-amethyst);
    animation: spinRight 0.6s linear infinite;
}

@keyframes spinRight {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes spinLeft {
    from { transform: rotate(360deg); }
    to   { transform: rotate(0deg); }
}

/* ====================================================
   4. HEADER â€” Şeffaftan Koyu'ya Geçiş
   ==================================================== */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
    background: transparent !important;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
}

.header:not(.scrolled) {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid transparent !important;
}

.header.scrolled {
    background: linear-gradient(180deg, #0d0618 0%, #120820 100%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.35), 0 1px 0 rgba(201,162,39,0.2) !important;
    border-bottom: 1px solid rgba(201,162,39,0.15) !important;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

/* Logo */
.brand .logo-img {
    height: 75px; /* 50px -> 75px */
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(201,162,39,0.5));
    transition: var(--transition-smooth);
}

.brand .logo-img:hover {
    filter: drop-shadow(0 4px 16px rgba(201,162,39,0.7));
    transform: scale(1.03);
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    padding: 0;
    margin: 0;
}

.main-nav ul li a {
    color: #f5ecd7 !important;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 18px;
    position: relative;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--grad-gold);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover {
    color: #c9a227 !important;
}

.main-nav ul li a:hover::after {
    width: 70%;
}

/* Mobil Menü Butonu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-gold);
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ====================================================
   5. MASTERPIECE HERO (Slider Alternatifi)
   ==================================================== */
.masterpiece-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d0618;
}

.masterpiece-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.masterpiece-bg-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    filter: brightness(0.7) contrast(1.1);
    transition: transform 10s ease-out;
    animation: slowZoomIn 30s ease-in-out infinite alternate;
}

.masterpiece-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(13,6,24,0.3) 0%, rgba(13,6,24,0.7) 70%, #0d0618 100%);
    z-index: 1;
}

/* Masterpiece Card Architecture */
.masterpiece-card {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: var(--radius-lg);
    box-shadow: none;
}

.masterpiece-card-inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: calc(var(--radius-lg) - 1px);
    padding: 5.5rem 8rem;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: none;
}

.quote-icon-modern {
    font-size: 2.5rem;
    color: var(--color-gold);
    opacity: 0.6;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(201,162,39,0.5));
}

.masterpiece-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 
        0 10px 30px rgba(0,0,0,0.5),
        0 0 40px rgba(201,162,39,0.2);
}

.masterpiece-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 2rem;
}

.masterpiece-divider span {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.masterpiece-divider i {
    color: var(--color-gold);
    font-size: 1.2rem;
    opacity: 0.8;
}

.masterpiece-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.2vw, 1.6rem);
    letter-spacing: 0.15rem;
    color: var(--color-gold-light);
    font-weight: 300;
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto;
}

/* Scroll Indicator Art */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator p {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--color-gold);
    font-weight: 600;
    margin: 0;
}

.mouse {
    width: 22px;
    height: 40px;
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 8px;
    background: var(--color-gold);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes slowZoomIn {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

@media (max-width: 767px) {
    .masterpiece-card-inner {
        padding: 3rem 2rem;
    }
    .masterpiece-title {
        letter-spacing: 0.1em;
    }
}

/* ====================================================
   5.5 DECORATIVE PAGE HERO (FANCY HERO)
   ==================================================== */
.fancy-hero {
    position: relative;
    height: 45vh;
    min-height: 400px;
    width: 100%;
    margin-top: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fancy-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: heroZoom 20s ease-out infinite alternate;
    z-index: 0;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.fancy-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(13, 6, 24, 0.8) 0%, 
        rgba(13, 6, 24, 0.3) 40%, 
        transparent 75%, 
        #fdfbf7 100%);
    z-index: 1;
}

.fancy-hero-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #fdfbf7, transparent);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.fancy-hero-border::after {
    content: '';
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin-bottom: 15px;
    opacity: 0.6;
}

.fancy-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.fancy-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 4.5vw, 4.5rem);
    color: #f5ecd7;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    hyphens: none;
    word-break: keep-all;
    overflow-wrap: normal;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(201, 162, 39, 0.4);
}

@media (max-width: 768px) {
    .fancy-hero-title {
        font-size: clamp(0.6rem, 3.5vw, 1.2rem);
        letter-spacing: 0.02em;
        hyphens: none;
        word-break: keep-all;
    }
}

.fancy-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--color-gold);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* ====================================================
   6. SECTION AYIRICI BAŞLIKLAR
   ==================================================== */
.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading h2,
.section-heading h3,
.section-heading h4 {
    font-family: 'Cinzel', serif;
    background: var(--grad-amethyst);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.section-heading .heading-light {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 1rem;
    width: 70%;
    max-width: 500px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0.4;
}

.section-divider .ornament {
    font-size: 1.2rem;
    color: var(--color-gold);
    filter: drop-shadow(0 0 8px rgba(201,162,39,0.5));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(201,162,39,0.4)); }
    50%       { filter: drop-shadow(0 0 15px rgba(201,162,39,0.8)); }
}

/* ====================================================
   7. KARTLAR â€” Blog / Aforizma / Kitap
   ==================================================== */

/* Genel kart stili */
.art-card, .aphorism-card, .book-card {
    background: var(--color-white); /* Açık arkaplan üzerinde daha şık durur */
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    height: 100%;
    border: 1px solid rgba(139,47,201,0.08);
    margin-bottom: 2rem; /* Kartlar arası dikey boşluk */
}

.art-card:hover, .aphorism-card:hover, .book-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(139,47,201,0.25);
    background: #ffffff;
}

/* Kart Görsel Alanı */
.art-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.art-card-image img,
.art-card-image .img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.art-card:hover .art-card-image img,
.art-card:hover .art-card-image .img-bg {
    transform: scale(1.08);
}

.art-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,16,40,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.art-card:hover .art-card-image::after {
    opacity: 1;
}

/* Kart İçerik */
.art-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 240px);
}

.art-card-body h5,
.art-card-body .card-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    letter-spacing: 0.03em;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.art-card:hover .art-card-body h5,
.art-card:hover .art-card-body .card-title {
    color: var(--color-amethyst-dark);
}

.art-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.art-card-meta i {
    color: var(--color-amethyst);
    font-size: 0.75rem;
}

.art-card-excerpt {
    font-size: 0.85rem;
    color: var(--color-text-mid);
    line-height: 1.7;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
}

/* Okuma Butonu */
.read-more-btn,
a.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-amethyst-dark);
    margin-top: 1.25rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.read-more-btn i,
a.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover,
a.read-more-btn:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    gap: 8px;
}

.read-more-btn:hover i,
a.read-more-btn:hover i {
    transform: translateX(4px);
}

/* ====================================================
   8. KİTAP ALINTILARI â€” Koyu Bölüm (Dark Section)
   ==================================================== */
.section-dark {
    background: var(--color-night);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,47,201,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Alıntı Kartı */
.quote-glass-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid rgba(201,162,39,0.15);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 40px rgba(28,16,40,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: var(--transition-smooth);
}

.quote-glass-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    line-height: 1;
    color: rgba(201,162,39,0.12);
    pointer-events: none;
}

.quote-glass-card::after {
    content: '\201D';
    position: absolute;
    bottom: 0;
    right: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    line-height: 1;
    color: rgba(201,162,39,0.12);
    pointer-events: none;
}

.quote-glass-card:hover {
    border-color: rgba(201,162,39,0.4);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), var(--glow-gold);
    transform: translateY(-4px);
}

.quote-text-content {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-style: italic;
    line-height: 2;
    color: var(--color-text-dark);
    text-align: center;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1;
}

.quote-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201,162,39,0.2);
    position: relative;
    z-index: 1;
}

.quote-book-label {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    opacity: 0.7;
}

.quote-book-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    font-style: italic;
}

.quote-date {
    font-size: 0.8rem;
    color: rgba(232,200,74,0.5);
    font-family: 'Nunito', sans-serif;
}

/* Testimonial Slider */
.testimonial-sliders {
    position: relative;
}

/* ====================================================
   9. AFORİZMALAR BÖLÜMÜ â€” Açık Renk
   ==================================================== */
.section-light {
    background: var(--grad-section-cream);
    position: relative;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-amethyst);
    opacity: 0.5;
}

/* Aforizma Kartı */
.aphorism-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    height: 100%;
    background: var(--color-white);
    border: 1px solid rgba(139,47,201,0.08);
}

.aphorism-card:hover {
    transform: translateY(-12px) rotate(-0.5deg);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(139,47,201,0.2);
}

.aphorism-image-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.aphorism-image-wrap .img-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.aphorism-card:hover .aphorism-image-wrap .img-bg {
    transform: scale(1.1);
}

.aphorism-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,16,40,0.4) 0%, rgba(28,16,40,0.1) 60%, transparent 100%);
    transition: opacity 0.4s ease;
}

.aphorism-card-body {
    padding: 1.75rem;
}

.aphorism-card-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.aphorism-card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.aphorism-card:hover .aphorism-card-body h3 {
    color: var(--color-amethyst-dark);
}

/* ====================================================
   10. KİTAPLAR BÖLÜMÜ â€” 3D Tilt Kartları
   ==================================================== */
.section-books {
    background: var(--color-night);
    position: relative;
    overflow: hidden;
}

.section-books::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 10% 50%, rgba(201,162,39,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 90% 50%, rgba(139,47,201,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.book-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid rgba(201,162,39,0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    perspective: 800px;
}

.book-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-gold);
    transform: translateY(-10px) rotateX(2deg);
}

.book-card-cover {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.book-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.book-card:hover .book-card-cover img {
    transform: scale(1.06);
}

.book-card-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(28,16,40,0.6), transparent);
}

/* Altın üst kenar şerit */
.book-card-cover::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-gold);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.book-card:hover .book-card-cover::before {
    opacity: 1;
}

.book-card-body {
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
}

.book-card-title {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.book-card-title i {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.book-card-meta {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-mid);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.4rem;
}

.book-card-meta i {
    color: rgba(201,162,39,0.5);
    font-size: 0.8rem;
}

.book-quotes-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.7rem 1.25rem;
    background: linear-gradient(135deg, rgba(201,162,39,0.08), rgba(201,162,39,0.02));
    border: 1px solid rgba(201,162,39,0.35);
    border-radius: var(--radius-pill);
    color: var(--color-gold-pale);
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.book-quotes-btn:hover {
    background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.05));
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-2px);
}

/* ====================================================
   11. FOOTER â€” Kozmik Derinlik
   ==================================================== */
.art-footer {
    background: #0d0618 !important;
    position: relative;
    overflow: hidden;
    color: var(--color-footer-text);
}

.art-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--grad-gold);
    opacity: 0.5;
}

.art-footer::after {
    content: '';
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,47,201,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-widget-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,162,39,0.15);
    border-radius: var(--radius-md);
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.footer-widget-card:hover {
    border-color: rgba(201,162,39,0.3);
    background: rgba(255,255,255,0.05);
}

.widget-title {
    font-family: 'Cinzel', serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em;
    color: var(--color-gold) !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201,162,39,0.2) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: var(--color-gold);
}

/* Neden Sanat grid kartları */
.art-feature-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    transition: var(--transition-smooth);
}

.art-feature-item:hover {
    background: rgba(139,47,201,0.1);
    border-color: rgba(139,47,201,0.3);
    transform: translateY(-3px);
}

.art-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    background: rgba(201,162,39,0.1);
    font-size: 1.1rem;
}

.art-feature-title {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-cream);
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.art-feature-text {
    font-size: 0.78rem;
    color: var(--color-text-mid);
    opacity: 0.7;
    line-height: 1.6;
}

/* Footer nav linkleri */
.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    color: var(--color-text-mid);
    border-bottom: 1px solid rgba(28,16,40,0.06);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-nav-link i {
    color: var(--color-amethyst);
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
    transition: var(--transition-smooth);
}

.footer-nav-link:hover {
    color: var(--color-gold-pale);
    padding-left: 6px;
}

.footer-nav-link:hover i {
    color: var(--color-gold);
}

/* Footer divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.3), transparent);
    margin: 2rem 0;
    border: none;
}

/* Footer bottom */
.footer-copyright {
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    color: var(--color-text-light);
}

.footer-copyright .brand-name {
    color: var(--color-gold);
    font-weight: 700;
}

.social-link-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-mid);
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
}

.social-link-gold:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: var(--glow-gold);
    background: rgba(201,162,39,0.08);
}

.social-link-gold i {
    font-size: 1rem;
    color: var(--color-gold);
}

/* ====================================================
   12. BREADCRUMB
   ==================================================== */
.breadcrumb-section {
    padding: 110px 0 60px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.breadcrumb-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(253,251,247,0.92) 0%, rgba(245,244,239,0.85) 100%);
    z-index: -1;
}

.breadcrumb-text p {
    font-family: 'Cinzel', serif;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
}

.breadcrumb-text h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text-dark);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin: 0;
    letter-spacing: 0.04em;
}

.breadcrumb-bg {
    background-image: url(/Content/Images/BackgroundImage/breadcrumb-bg.jpg);
}

/* ====================================================
   13. BUTONLAR
   ==================================================== */
a.boxed-btn,
.boxed-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--grad-amethyst);
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

a.boxed-btn:hover,
.boxed-btn:hover {
    color: var(--color-white);
    box-shadow: var(--glow-amethyst);
    transform: translateY(-3px);
}

a.bordered-btn,
.bordered-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    color: var(--color-cream);
    padding: 10px 26px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(201,162,39,0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

a.bordered-btn:hover,
.bordered-btn:hover {
    background: rgba(201,162,39,0.15);
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-3px);
}

/* ====================================================
   14. SPACING UTILITIES
   ==================================================== */
.mt-80  { margin-top: 80px; }
.mb-80  { margin-bottom: 80px; }
.mt-100 { margin-top: 100px; }
.mb-100 { margin-bottom: 100px; }
.mt-150 { margin-top: 150px; }
.mb-150 { margin-bottom: 150px; }
.pt-80  { padding-top: 80px; }
.pb-80  { padding-bottom: 80px; }
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.pt-150 { padding-top: 150px; }
.pb-150 { padding-bottom: 150px; }

@media (max-width: 767px) {
    .mt-150 { margin-top: 80px; }
    .mb-150 { margin-bottom: 80px; }
    .mt-100 { margin-top: 60px; }
    .mb-100 { margin-bottom: 60px; }
    .mt-80  { margin-top: 50px; }
    .mb-80  { margin-bottom: 50px; }
    .pt-150 { padding-top: 80px; }
    .pb-150 { padding-bottom: 80px; }
    .pt-100 { padding-top: 60px; }
    .pb-100 { padding-bottom: 60px; }
    .pt-80  { padding-top: 50px; }
    .pb-80  { padding-bottom: 50px; }
}

/* ====================================================
   15. BLOG & NEWS LIST PAGES
   ==================================================== */
.latest-news {
    position: relative;
}

.single-latest-news {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    border: 1px solid rgba(139,47,201,0.06);
    height: 100%;
}

.single-latest-news:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover) !important;
    border-color: rgba(139,47,201,0.15);
}

.latest-news-bg {
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
    overflow: hidden;
}

.single-latest-news:hover .latest-news-bg {
    transform: scale(1.05);
    opacity: 1;
}

.news-text-box {
    padding: 1.5rem;
}

.news-text-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.news-text-box h3 a {
    color: var(--color-text-dark);
    transition: color 0.3s;
}

.news-text-box h3 a:hover {
    color: var(--color-amethyst-dark);
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--color-amethyst);
}

/* ====================================================
   16. PAGINATION
   ==================================================== */
.pagination-wrap ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.pagination-wrap ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(139,47,201,0.2);
    border-radius: var(--radius-sm);
    color: var(--color-text-mid);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.pagination-wrap ul li:hover a,
.pagination-wrap ul li.active a {
    background: var(--grad-amethyst);
    border-color: transparent;
    color: var(--color-white);
    box-shadow: var(--glow-amethyst);
}

/* ====================================================
   17. SECTION GEÇIŞ â€” Katmanlı svgwave seperatör
   ==================================================== */
.wave-separator {
    position: relative;
    height: 60px;
    overflow: hidden;
    margin: -1px 0;
}

.wave-separator svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* ====================================================
   18. ANİMASYONLAR
   ==================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ====================================================
   19. YANIM BÖLÜM ETKİLERİ (Reveal on scroll)
   ==================================================== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.animate-hidden {
    opacity: 0;
    transform: translateY(24px);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================================
   20. GALERI
   ==================================================== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,47,201,0.7), rgba(26,10,46,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay i {
    color: var(--color-gold);
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(201,162,39,0.8));
}

/* ====================================================
   21. ÖZEL STICKER / SCROLL EFEKT
   ==================================================== */
.sticky-wrapper {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    z-index: 999 !important;
}

/* ====================================================
   22. CONTACT / FORM
   ==================================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    border: 1px solid rgba(139,47,201,0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    width: 100%;
    background: var(--color-white);
    transition: var(--transition-smooth);
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    border-color: var(--color-amethyst);
    box-shadow: 0 0 0 3px rgba(139,47,201,0.12);
}

input[type="submit"],
button[type="submit"] {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--grad-amethyst);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-pill) !important;
    padding: 14px 32px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    box-shadow: var(--glow-amethyst);
    transform: translateY(-3px);
}

/* ====================================================
   23. SECTION BAŞLANGIÇ padding (nav offset)
   ==================================================== */
body > .container:first-of-type,
.main-content-area {
    padding-top: 90px;
}

/* ====================================================
   24. SEARCH
   ==================================================== */
.search-area {
    position: fixed;
    inset: 0;
    background: rgba(13,6,24,0.96);
    backdrop-filter: blur(20px);
    z-index: 5555;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.search-area.search-active {
    visibility: visible;
    opacity: 1;
}

.search-bar {
    width: 100%;
    max-width: 700px;
    padding: 0 2rem;
}

span.close-btn {
    position: absolute;
    top: 5%;
    right: 3%;
    color: var(--color-cream);
    cursor: pointer;
    font-size: 2rem;
    transition: var(--transition-smooth);
}

span.close-btn:hover {
    color: var(--color-gold);
}

.search-bar-tablecell input {
    width: 100%;
    border: none;
    border-bottom: 2px solid rgba(201,162,39,0.4);
    background: transparent;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--color-cream);
    padding: 1rem 0;
    outline: none;
    transition: border-color 0.3s;
}

.search-bar-tablecell input:focus {
    border-bottom-color: var(--color-gold);
}

.search-bar-tablecell input::placeholder {
    color: rgba(232,213,183,0.3);
}

/* ====================================================
   25. ORANGE/PURPLE COLOR HELPERS
   ==================================================== */
.orange-text    { color: var(--color-amethyst-dark); }
.gray-bg        { background-color: #f7f5ff; }
.blue-bg        { background-color: var(--color-night); }

.text-gold      { color: var(--color-gold) !important; }
.text-amethyst  { color: var(--color-amethyst) !important; }
.text-cream     { color: var(--color-cream) !important; }
.bg-night       { background-color: var(--color-night) !important; }
.bg-cosmic      { background: var(--grad-cosmic) !important; }

/* ====================================================
   26. HOVER WARNING (footer link compat)
   ==================================================== */
.hover-warning:hover {
    color: var(--color-gold) !important;
}

/* ====================================================
   27. SECTION TITLE (backward compat)
   ==================================================== */
.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h3 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--color-amethyst-dark);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.section-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--grad-gold);
}

.section-title p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--color-text-mid);
    font-size: 0.95rem;
}

/* ====================================================
   28. TESTIMONIALS SLIDER (OWL kompatibilite)
   ==================================================== */
.testimonial-sliders .owl-stage-outer {
    padding: 20px 0;
}

.testimonial-sliders .owl-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

/* ====================================================
   29. HERO DARK â€” H1 renk güvencesi
   Koyu (#0d0618) arka plan üzerinde başlık her zaman okunaklı
   ==================================================== */
.hero-dark h1,
.hero-dark .hero-title {
    color: #f5ecd7 !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 0 40px rgba(201,162,39,0.15) !important;
}

/* Section içindeki dekoratif alt çizgi ayracı boşluğu */
.section-heading .section-divider {
    margin-bottom: 0.5rem;
}

/* Hero içindeki section-dark boşluğu optimize */
.section-dark {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Kitap alıntıları listesi hero'dan sonraki üst boşluk */
#quote-list-container {
    padding-top: 0;
}

/* Footer top gradient */
.art-footer {
    background: linear-gradient(180deg, #0a0414 0%, #0d0618 30%) !important;
}

/* ====================================================
   GLOBAL PAGINATION — Premium Gold Theme
   ==================================================== */
.pagination-container .pagination { 
    display: flex; 
    list-style: none; 
    gap: 8px; 
    margin: 3rem 0; 
    padding: 0; 
    justify-content: center;
    align-items: center;
}

.pagination-container .page-item a,
.pagination-container .page-item span { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 36px; 
    height: 36px; 
    border-radius: 50%; 
    font-family: 'Nunito', sans-serif; 
    font-weight: 700; 
    font-size: 0.85rem;
    color: #c9a227; 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(201, 162, 39, 0.2); 
    text-decoration: none; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.pagination-container .page-item.active a,
.pagination-container .page-item.active span { 
    color: #0d0618 !important; 
    background: linear-gradient(135deg, #c9a227 0%, #e8c66a 50%, #c9a227 100%) !important; 
    border-color: transparent !important; 
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3) !important; 
    pointer-events: none; 
}

.pagination-container .page-item:not(.active):hover a { 
    background-color: #c9a227; 
    color: #0d0618; 
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.2);
}

.pagination-container .page-item.disabled a,
.pagination-container .page-item.disabled span {
    opacity: 0.3;
    pointer-events: none;
    border-color: rgba(26,16,43,0.1);
    color: #c9a227;
}

