/**
 * İlhan Karaçay Theme - Main Styles
 * @package IlhanKaracay
 */

/* ========== CSS Variables ========== */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(20, 14%, 10%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(20, 14%, 10%);
  --primary: hsl(35, 80%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(0, 0%, 97%);
  --secondary-foreground: hsl(20, 14%, 18%);
  --muted: hsl(0, 0%, 95%);
  --muted-foreground: hsl(20, 8%, 42%);
  --border: hsl(0, 0%, 88%);
  --radius: 0.75rem;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --gradient-hero: linear-gradient(135deg, hsl(0, 0%, 100%) 0%, hsl(35, 45%, 97%) 50%, hsl(0, 0%, 100%) 100%);
  --gradient-text: linear-gradient(135deg, hsl(20, 14%, 10%) 0%, hsl(35, 65%, 42%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(35, 80%, 55%) 0%, hsl(25, 70%, 45%) 100%);
  --shadow-card: 0 12px 30px -12px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 40px hsla(35, 80%, 55%, 0.12);
}
/* ========== Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--background); color: var(--foreground); line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ========== Utilities ========== */
.text-gradient { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bg-gradient-hero { background: var(--gradient-hero); }
.glass { background: hsla(20, 10%, 8%, 0.6); backdrop-filter: blur(20px); border-bottom: 1px solid hsla(35, 20%, 20%, 0.3); }
.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ========== Navbar ========== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.navbar-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.nav-menu { display: flex; gap: 2rem; list-style: none; }
.nav-menu a { font-size: 0.875rem; font-weight: 500; color: var(--secondary-foreground); transition: color 0.3s; }
.nav-menu a:hover { color: var(--primary); }
.nav-desktop { display: none; }
@media (min-width: 768px) { .nav-desktop { display: block; } .menu-toggle { display: none; } }
.menu-toggle { background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger-line { display: block; width: 24px; height: 2px; background: var(--foreground); margin: 5px 0; transition: 0.3s; }
.nav-mobile { display: none; padding: 1rem 0; }
.nav-mobile.active { display: block; }
.nav-menu-mobile { display: flex; flex-direction: column; gap: 1rem; list-style: none; }
.nav-menu-mobile a { color: var(--secondary-foreground); transition: color 0.3s; }

/* ========== Hero ========== */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--gradient-hero); overflow: hidden; padding-top: 5rem; }
.hero-pattern { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 2px 2px, var(--primary) 1px, transparent 0); background-size: 40px 40px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); }
.hero-orb-1 { top: 25%; left: 25%; width: 24rem; height: 24rem; background: hsla(35, 80%, 55%, 0.1); }
.hero-orb-2 { bottom: 25%; right: 25%; width: 18rem; height: 18rem; background: hsla(35, 70%, 45%, 0.1); }
.hero-container { padding-top: 5rem; }
.hero-grid { display: flex; flex-direction: column; align-items: center; gap: 3rem; }
@media (min-width: 1024px) {
  .hero-grid {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
  }
}
.hero-content { flex: 1; text-align: center; }
@media (min-width: 1024px) { .hero-content { text-align: left; } }
.hero-title { font-size: 3rem; font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .hero-title { font-size: 4rem; } }
.hero-subtitle { font-size: 1.25rem; color: var(--muted-foreground); max-width: 36rem; }
.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 3rem; }
@media (min-width: 1024px) { .hero-stats { justify-content: flex-start; } }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.hero-image-wrapper { flex: 1; display: flex; justify-content: center; }
@media (min-width: 1024px) { .hero-image-wrapper { justify-content: center; } }
.hero-image-container { position: relative; }
.hero-image-glow { position: absolute; inset: -1rem; background: linear-gradient(to bottom right, hsla(35, 80%, 55%, 0.3), hsla(35, 70%, 45%, 0.2)); border-radius: 1rem; filter: blur(32px); opacity: 0.6; }
.hero-image-border { position: absolute; inset: -4px; background: linear-gradient(to bottom right, var(--primary), hsl(35, 70%, 45%)); border-radius: 1rem; }
.hero-image-frame { position: relative; width: 20rem; aspect-ratio: 4/3; border-radius: 0.75rem; overflow: hidden; background: var(--background); padding: 4px; }
@media (min-width: 768px) { .hero-image-frame { width: 31rem; } }
.hero-image { width: 100%; height: 100%; object-fit: cover; border-radius: 0.75rem; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: bounce 1s infinite; }
.scroll-indicator a { color: var(--muted-foreground); transition: color 0.3s; }
.scroll-indicator a:hover { color: var(--primary); }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }

/* ========== Sections ========== */
.section-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, hsla(35, 80%, 55%, 0.3), transparent); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { color: var(--primary); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; font-size: 0.875rem; }
.section-title { font-size: 2.5rem; font-weight: 700; }
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-description { color: var(--muted-foreground); max-width: 36rem; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ========== Buttons ========== */
.btn-primary { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; background: var(--gradient-accent); color: var(--primary-foreground); font-weight: 600; border-radius: 9999px; box-shadow: var(--shadow-card); transition: all 0.3s; }
.btn-primary:hover { box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.btn-large { padding: 1.25rem 2.5rem; font-size: 1.125rem; }

/* ========== Main Layout ========== */
.main-container { padding: 0; }
.content-with-sidebar { display: flex; gap: 2rem; }
.main-content { flex: 1; min-width: 0; }
.sidebar { display: none; padding: 6rem 0; }
@media (min-width: 1024px) { .sidebar { display: block; } }
.banner-widget { position: sticky; top: 6rem; width: 300px; height: 300px; background: hsla(20, 10%, 8%, 0.5); backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.banner-content { text-align: center; padding: 1rem; }
.banner-text { color: var(--muted-foreground); font-size: 0.875rem; }
.banner-size { color: hsla(40, 10%, 55%, 0.6); font-size: 0.75rem; margin-top: 0.25rem; }

/* ========== Articles ========== */
.articles-section { position: relative; padding: 6rem 0; }
.articles-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
.articles-grid-3 { display: grid; gap: 2rem; }
@media (min-width: 768px) { .articles-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .articles-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.article-card { background: linear-gradient(145deg, hsla(20, 10%, 10%, 0.8), hsla(20, 10%, 6%, 0.9)); border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); transition: all 0.3s; }
.article-card:hover { border-color: hsla(35, 80%, 55%, 0.5); }
.article-card-link { display: block; }
.article-image { aspect-ratio: 16/9; overflow: hidden; }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card:hover .article-image img { transform: scale(1.05); }
.article-image-placeholder { background: var(--muted); }
.article-content { padding: 1.5rem; }
.article-date { font-size: 0.75rem; color: var(--muted-foreground); }
.article-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin: 0.5rem 0 0.75rem; transition: color 0.3s; }
.article-card:hover .article-title { color: var(--primary); }
.article-excerpt { font-size: 0.875rem; color: var(--secondary-foreground); line-height: 1.6; }
.article-link { display: inline-block; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.875rem; font-weight: 500; color: var(--primary); }

/* ========== Biography Section ========== */
.biography-section { padding: 4rem 0; background: hsla(20, 10%, 12%, 0.3); border-radius: var(--radius); overflow: hidden; position: relative; }
.biography-content { padding: 0 1.5rem; }
.timeline { position: relative; margin-top: 3rem; }
.timeline-line { position: absolute; top: 1.5rem; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--primary), transparent); }
.timeline-groups { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; padding-top: 3rem; }
.timeline-group { position: relative; text-align: center; }
.timeline-dot { position: absolute; top: -1.5rem; left: 50%; transform: translateX(-50%); width: 1rem; height: 1rem; border-radius: 50%; background: var(--primary); border: 2px solid var(--background); }
.timeline-decade { font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.timeline-items { display: flex; flex-direction: column; gap: 0.5rem; }
.timeline-item { padding: 0.75rem; border-radius: 0.5rem; background: hsla(20, 10%, 8%, 0.5); border: 1px solid var(--border); min-width: 160px; transition: all 0.3s; }
.timeline-item:hover { border-color: hsla(35, 80%, 55%, 0.5); background: hsla(20, 10%, 8%, 0.8); }
.timeline-org { font-weight: 500; font-size: 0.875rem; }
.timeline-year { font-size: 0.75rem; color: var(--muted-foreground); }

/* ========== Book Section ========== */
.book-section { position: relative; padding: 6rem 0; overflow: hidden; }
.book-decoration { position: absolute; bottom: 25%; left: 0; width: 18rem; height: 18rem; background: hsla(35, 80%, 55%, 0.05); border-radius: 50%; filter: blur(60px); }
.book-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .book-grid { grid-template-columns: 1fr 1fr; } }
.book-image-wrapper { display: flex; justify-content: center; order: 2; }
@media (min-width: 1024px) { .book-image-wrapper { order: 1; } }
.book-container { position: relative; transform: rotate(0); transition: transform 0.5s; }
.book-container:hover { transform: rotate(2deg); }
.book-glow { position: absolute; inset: 0; background: var(--gradient-accent); border-radius: 0.5rem; filter: blur(40px); opacity: 0.3; }
.book-image { position: relative; width: 18rem; filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15)); }
@media (min-width: 768px) { .book-image { width: 20rem; } }
.book-shadow { position: absolute; bottom: -2rem; left: 50%; transform: translateX(-50%); width: 75%; height: 2rem; background: hsla(35, 80%, 55%, 0.2); filter: blur(32px); border-radius: 50%; }
.book-content { order: 1; }
@media (min-width: 1024px) { .book-content { order: 2; } }
.book-description { color: var(--muted-foreground); font-size: 1.125rem; line-height: 1.7; margin-bottom: 1.5rem; }
.book-features { display: flex; flex-direction: column; gap: 1rem; }
.book-feature { display: flex; align-items: center; gap: 0.75rem; }
.feature-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--primary); }
.book-feature p { color: var(--secondary-foreground); }

/* ========== Contact Section ========== */
.contact-section { position: relative; padding: 6rem 0; background: hsla(20, 10%, 12%, 0.3); }
.contact-wrapper { max-width: 64rem; margin: 0 auto; }
.contact-grid { display: grid; gap: 2rem; margin-top: 4rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { padding: 2rem; border-radius: 1rem; background: hsla(20, 10%, 8%, 0.5); border: 1px solid var(--border); text-align: center; transition: all 0.3s; }
.contact-card:hover { border-color: hsla(35, 80%, 55%, 0.3); transform: translateY(-4px); }
.contact-icon { width: 4rem; height: 4rem; margin: 0 auto 1rem; border-radius: 50%; background: hsla(35, 80%, 55%, 0.1); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.contact-card:hover .contact-icon { background: hsla(35, 80%, 55%, 0.2); }
.contact-icon svg { color: var(--primary); }
.contact-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.contact-value { color: var(--muted-foreground); transition: color 0.3s; }
.contact-card:hover .contact-value { color: var(--primary); }
.social-section { text-align: center; margin-top: 4rem; }
.social-label { font-size: 1.125rem; color: var(--primary); font-weight: 500; margin-bottom: 1.5rem; }
.social-links { display: flex; justify-content: center; gap: 1.5rem; }
.social-link { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: hsla(35, 80%, 55%, 0.1); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.social-link:hover { border-color: hsla(35, 80%, 55%, 0.3); background: hsla(35, 80%, 55%, 0.2); transform: translateY(-4px); }
.social-link svg { color: var(--primary); }

/* ========== Footer ========== */
.site-footer { padding: 3rem 0; background: var(--background); border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-brand { text-align: center; }
@media (min-width: 768px) { .footer-brand { text-align: left; } }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.footer-description { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.5rem; }
.footer-copyright { font-size: 0.875rem; color: var(--muted-foreground); }

/* ========== Page Hero ========== */
.page-hero { padding: 6rem 0 4rem; position: relative; overflow: hidden; }
.page-hero-compact { padding: 6rem 0 2rem; }
.hero-decoration { position: absolute; width: 24rem; height: 24rem; background: hsla(35, 80%, 55%, 0.05); border-radius: 50%; filter: blur(60px); }
.hero-decoration-left { top: 25%; left: -8rem; }
.hero-decoration-right { bottom: 25%; right: -8rem; }
.page-hero-header { text-align: center; margin-bottom: 3rem; }
.page-hero-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 768px) { .page-hero-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .page-hero-title { font-size: 4rem; } }
.page-hero-description { color: var(--muted-foreground); font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }
.hero-intro { color: var(--muted-foreground); font-size: 1.125rem; font-style: italic; margin-bottom: 1rem; }

/* ========== Search ========== */
.search-container { max-width: 36rem; margin: 0 auto; }
.search-form { position: relative; }
.search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); }
.search-input { width: 100%; padding: 1rem 1rem 1rem 3rem; background: hsla(20, 10%, 8%, 0.5); border: 1px solid var(--border); border-radius: var(--radius); color: var(--foreground); font-size: 1rem; transition: border-color 0.3s; }
.search-input:focus { outline: none; border-color: hsla(35, 80%, 55%, 0.5); }
.search-input::placeholder { color: var(--muted-foreground); }

/* ========== Biyografi Page ========== */
.author-credit { margin-bottom: 2rem; }
.author-line { display: inline-block; border-bottom: 2px solid hsla(35, 80%, 55%, 0.3); padding-bottom: 0.5rem; }
.author-line p { font-size: 0.875rem; color: var(--muted-foreground); letter-spacing: 0.05em; }
.bio-hero-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .bio-hero-grid { grid-template-columns: 1fr 1fr; } }
.bio-hero-image { position: relative; }
.bio-hero-image .image-glow { position: absolute; inset: -1rem; background: hsla(35, 80%, 55%, 0.1); border-radius: 0.5rem; filter: blur(40px); }
.bio-profile-image { position: relative; width: 100%; max-width: 24rem; margin: 0 auto; border-radius: 0.5rem; box-shadow: var(--shadow-card); object-fit: cover; aspect-ratio: 3/4; }
.bio-intro-text { display: flex; flex-direction: column; gap: 1.5rem; color: var(--secondary-foreground); }
.bio-intro-text .text-lg { font-size: 1.125rem; }
.bio-intro-text .text-highlight { font-weight: 500; color: var(--foreground); }
.bio-intro-text .text-italic { font-style: italic; }
.bio-intro-text .text-muted { color: var(--muted-foreground); }
.bio-content-section { padding: 5rem 0; background: hsla(20, 10%, 12%, 0.3); }
.bio-articles { max-width: 56rem; margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; }
.bio-article { background: linear-gradient(145deg, hsla(20, 10%, 10%, 0.8), hsla(20, 10%, 6%, 0.9)); border-radius: 1rem; padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
@media (min-width: 768px) { .bio-article { padding: 3rem; } }
.bio-article-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 1.5rem; }
.bio-article-content { display: flex; flex-direction: column; gap: 1rem; color: var(--secondary-foreground); line-height: 1.7; }
.bio-article-content .quote { font-style: italic; border-left: 4px solid hsla(35, 80%, 55%, 0.3); padding-left: 1rem; }
.bio-photos-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; }
.bio-photo-item { position: relative; }
.bio-photo { width: 10rem; height: 13rem; object-fit: cover; border-radius: 0.5rem; box-shadow: var(--shadow-card); transition: all 0.5s; }
.sepia-hover { filter: sepia(100%); }
.sepia-hover:hover { filter: sepia(0%); }
.bio-photos-grid-2 { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 768px) { .bio-photos-grid-2 { grid-template-columns: 1fr 1fr; } }
.bio-photo-wide { aspect-ratio: 16/9; object-fit: cover; border-radius: 0.5rem; box-shadow: var(--shadow-card); }
.bio-photos-single { margin-top: 2rem; }
.photo-caption { text-align: center; font-size: 0.875rem; color: var(--muted-foreground); font-style: italic; margin-top: 1rem; }

/* ========== TV Programları ========== */
.tv-section { padding: 3rem 0; }
.tv-section-alt { background: hsla(20, 10%, 12%, 0.3); }
.tv-section-title { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--primary); text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .tv-section-title { font-size: 2.25rem; } }
.video-grid-2, .video-grid-3, .video-grid-3-center, .video-grid-4 { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
.video-grid-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .video-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 56rem; margin-left: auto; margin-right: auto; } }
.video-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .video-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .video-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.video-grid-3-center { grid-template-columns: 1fr; justify-items: center; }
@media (min-width: 768px) { .video-grid-3-center { grid-template-columns: repeat(3, 1fr); } }
.video-grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .video-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.video-card { width: 100%; max-width: 24rem; }
.video-placeholder { aspect-ratio: 16/9; background: hsla(35, 80%, 55%, 0.2); border-radius: 0.5rem 0.5rem 0 0; border: 1px solid hsla(35, 80%, 55%, 0.3); display: flex; align-items: center; justify-content: center; }
.play-button { width: 3rem; height: 3rem; background: #dc2626; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.video-card:hover .play-button { transform: scale(1.1); }
.video-title { font-size: 0.875rem; text-align: center; background: hsla(35, 80%, 55%, 0.9); color: var(--primary-foreground); padding: 0.5rem; border-radius: 0 0 0.5rem 0.5rem; margin-top: -1px; }
.tv-description { display: grid; gap: 2rem; align-items: start; max-width: 56rem; margin: 2.5rem auto 0; }
@media (min-width: 768px) { .tv-description { grid-template-columns: 2fr 1fr; } }
.tv-description-text { display: flex; flex-direction: column; gap: 1rem; color: var(--secondary-foreground); line-height: 1.7; }
.tv-description-image .image-placeholder { aspect-ratio: 4/3; background: hsla(20, 10%, 15%, 0.5); border: 2px dashed var(--border); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; color: var(--muted-foreground); font-size: 0.875rem; }

/* ========== Gallery ========== */
.gallery-section { padding: 3rem 0; background: hsla(20, 10%, 12%, 0.3); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1280px) { .gallery-grid { grid-template-columns: repeat(6, 1fr); } }
.gallery-item { }
.gallery-photo { aspect-ratio: 3/4; background: hsla(35, 80%, 55%, 0.2); border-radius: 0.5rem 0.5rem 0 0; border: 1px solid hsla(35, 80%, 55%, 0.3); overflow: hidden; }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover .gallery-photo img { transform: scale(1.05); }
.photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: hsla(20, 10%, 15%, 0.3); color: var(--muted-foreground); font-size: 0.75rem; text-align: center; padding: 0.5rem; }
.gallery-name { font-size: 0.875rem; text-align: center; background: hsla(35, 80%, 55%, 0.9); color: var(--primary-foreground); padding: 0.5rem; border-radius: 0 0 0.5rem 0.5rem; margin-top: -1px; }

/* ========== Eski Küpürler ========== */
.kupurler-hero { padding: 8rem 0 3rem; background: linear-gradient(to bottom, hsla(35, 80%, 55%, 0.1), var(--background)); text-align: center; }
.kupurler-label { color: var(--primary); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.kupurler-description { color: var(--muted-foreground); font-size: 1.125rem; max-width: 42rem; margin: 0 auto 2rem; }
.kupurler-preview { padding: 3rem 0; }
.kupurler-card { display: block; background: var(--card); border-radius: 1rem; box-shadow: var(--shadow-card); overflow: hidden; transition: all 0.5s; }
.kupurler-card:hover { box-shadow: var(--shadow-glow); }
.kupurler-card-content { padding: 4rem 2rem; text-align: center; background: linear-gradient(to bottom right, hsla(35, 80%, 55%, 0.05), hsla(35, 80%, 55%, 0.2)); }
.kupurler-icon { width: 6rem; height: 6rem; background: hsla(35, 80%, 55%, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; transition: transform 0.5s; }
.kupurler-card:hover .kupurler-icon { transform: scale(1.1); }
.kupurler-icon svg { color: var(--primary); }
.kupurler-card-content h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.kupurler-card-content p { color: var(--muted-foreground); margin-bottom: 1rem; }
.kupurler-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 500; }
.kupurler-card:hover .kupurler-link svg { transform: translateX(4px); }
.kupurler-link svg { transition: transform 0.3s; }
.kupurler-instructions { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 768px) { .kupurler-instructions { grid-template-columns: repeat(3, 1fr); } }
.instruction-card { background: hsla(20, 10%, 8%, 0.5); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.instruction-icon { width: 3rem; height: 3rem; background: hsla(35, 80%, 55%, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.instruction-icon svg { color: var(--primary); }
.instruction-card h3 { font-weight: 600; margin-bottom: 0.5rem; }
.instruction-card p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ========== Content Sections ========== */
.content-section { padding: 3rem 0; }
.articles-page-section { padding: 5rem 0; background: hsla(20, 10%, 12%, 0.3); }
.page-content { padding: 6rem 0 3rem; }
.page-article { max-width: 48rem; margin: 0 auto; }
.page-header { margin-bottom: 2rem; }
.page-title { font-size: 2.5rem; font-weight: 700; }
.entry-content { color: var(--secondary-foreground); line-height: 1.8; }
.entry-content p { margin-bottom: 1.5rem; }
.entry-content h2, .entry-content h3 { color: var(--foreground); margin: 2rem 0 1rem; }
.entry-content a { color: var(--primary); }
.entry-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.no-results, .no-content { text-align: center; padding: 3rem; color: var(--muted-foreground); }

/* ========== Pagination ========== */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a, .pagination span { padding: 0.75rem 1rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); color: var(--foreground); transition: all 0.3s; }
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }

/* ========== Single Post ========== */
.single-hero { padding-top: 5rem; position: relative; overflow: hidden; background: var(--card); }
.single-hero-blur { position: absolute; inset: 0; background-size: cover; background-position: center; filter: blur(32px); transform: scale(1.1); opacity: 0.4; }
.single-hero-inner { position: relative; display: flex; align-items: center; justify-content: center; min-height: 16rem; max-height: 28rem; }
@media (min-width: 768px) { .single-hero-inner { min-height: 28rem; } }
.single-hero-image { max-width: 100%; max-height: 28rem; object-fit: contain; filter: drop-shadow(0 25px 25px rgba(0,0,0,0.3)); }
.single-article { padding: 3rem 0; }
.single-article-no-image { padding-top: 8rem; }
.single-article-inner { max-width: 56rem; margin: 0 auto; }
.back-button { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: var(--radius); color: var(--muted-foreground); font-size: 0.875rem; transition: all 0.3s; margin-bottom: 2rem; }
.back-button:hover { color: var(--foreground); background: hsla(20, 10%, 15%, 0.5); }
.single-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 1.5rem; color: var(--muted-foreground); }
.single-date { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.single-category-badge { font-size: 0.75rem; background: hsla(35, 80%, 55%, 0.1); color: var(--primary); padding: 0.25rem 0.75rem; border-radius: 9999px; }
.single-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 2rem; }
@media (min-width: 768px) { .single-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .single-title { font-size: 3rem; } }
.single-body { line-height: 1.8; }
.single-body iframe { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); }

/* Share Bar */
.share-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; padding-bottom: 2rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.share-label { font-size: 0.875rem; color: var(--muted-foreground); margin-right: 0.5rem; }
.share-button { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: var(--radius); border: 1px solid var(--border); background: transparent; color: var(--foreground); cursor: pointer; transition: all 0.3s; }
.share-button:hover { border-color: var(--primary); color: var(--primary); background: hsla(35, 80%, 55%, 0.1); }

/* Post Navigation */
.post-navigation { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.post-navigation a { color: var(--primary); font-size: 0.875rem; transition: opacity 0.3s; }
.post-navigation a:hover { opacity: 0.8; }
.nav-previous, .nav-next { max-width: 45%; }
.nav-next { text-align: right; margin-left: auto; }

/* Video Embeds */
.video-embed { aspect-ratio: 16/9; border-radius: 0.5rem 0.5rem 0 0; overflow: hidden; border: 1px solid hsla(35, 80%, 55%, 0.3); }
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.video-embed-large { max-width: 56rem; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.video-embed-large iframe { width: 100%; height: 100%; border: 0; }

/* Article Category Badge (archive cards) */
.article-category { display: inline-block; font-size: 0.75rem; font-weight: 500; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
/* ===== FULL WIDTH PAGE FIX ===== */

/* Maak alle pagina’s full width */
.page .container,
.page .content-wrapper,
.page .entry-content,
.page .wp-block-group,
.page .wp-site-blocks,
.page main {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Zorg dat content niet meer beperkt wordt */
.bio-content-section,
.bio-content-section .bio-articles,
.bio-content-section .bio-article,
.page-hero .fullwidth,
.bio-content-section .entry-content,
.bio-content-section .entry-content > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

/* Voeg nette padding toe zodat het niet tegen de rand zit */
.bio-content-section .fullwidth,
.page-hero .fullwidth,
.bio-content-section .bio-articles {
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}

/* Extra veiligheid voor WordPress blocks */
.entry-content,
.entry-content > * {
  max-width: none;
}
.nav-menu li a {
  text-transform: uppercase !important;
}
header .nav-menu li a,
.navbar .nav-menu li a {
  text-transform: uppercase !important;
}
/* FORCE ALL STATES (ACTIVE / CURRENT PAGE) */
.navbar .nav-menu li a,
.navbar .nav-menu li.current-menu-item a,
.navbar .nav-menu li.current_page_item a,
.navbar .nav-menu li.current-menu-ancestor a {
  text-transform: uppercase !important;
}
/* ===== FIX HOMEPAGE MARGINS ===== */
.home .container {
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 768px) {
  .home .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ===== Unluler Galerisi hover + lightbox ===== */

.gallery-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallery-photo {
  aspect-ratio: 3 / 4;
  background: #000;
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-photo img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.gallery-name {
  font-size: 0.875rem;
  text-align: center;
  background: hsla(35, 80%, 55%, 0.9);
  color: var(--primary-foreground);
  padding: 0.5rem;
  border-radius: 0 0 0.5rem 0.5rem;
  margin-top: -1px;
  transition: background 0.3s ease, color 0.3s ease;
}

.gallery-item:hover .gallery-name {
  background: hsl(35, 80%, 55%);
}

.gallery-item {
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.gallery-lightbox.active {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  margin: 5vh auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: #111;
}

.lightbox-caption {
  margin-top: 1rem;
  color: #fff;
  font-size: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  opacity: 0.8;
}


  function closeLightbox() {
    lightbox.classList.remove('active');
    lightboxImage.src = '';
    lightboxImage.alt = '';
    lightboxCaption.textContent = '';
    document.body.style.overflow = '';
  }

  if (lightboxClose) {
    lightboxClose.addEventListener('click', closeLightbox);
  }

  if (backdrop) {
    backdrop.addEventListener('click', closeLightbox);
  }

  document.addEventListener('keydown', function (e) {
    if (e.key === 'Escape' && lightbox.classList.contains('active')) {
      closeLightbox();
    }
  });
});
.tv-section-intro {
  text-align: center;
  color: var(--muted-foreground);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.tv-description-wide {
  max-width: 1100px;   /* bepaal hoe breed je wilt */
  margin: 0 auto;      /* centreert */
  padding: 0 2rem;     /* marge links/rechts */
}
.tv-description-full .tv-description-text {
  max-width: 1200px;
  margin: 0 auto;
  display: block !important;
  column-count: 2;
  column-gap: 3rem;
}

.tv-description-full .tv-description-text p {
  margin-bottom: 1rem;
  line-height: 1.7;
  break-inside: avoid;
}

@media (max-width: 768px) {
  .tv-description-full .tv-description-text {
    column-count: 1;
  }
}

.tv-description-full .tv-description-text p {
  margin-bottom: 1rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .tv-description-full .tv-description-text {
    column-count: 1;
  }
}
.tv-description-row {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

.tv-description-row .tv-description-text {
  flex: 2;
  text-align: left;
  line-height: 1.8;
}

.tv-description-row .tv-description-image {
  flex: 1;
}

.tv-description-row .tv-description-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .tv-description-row {
    flex-direction: column;
    padding: 0 1.25rem;
  }
}
.center-text {
  text-align: center;
}
.tv-section-intro {
  margin-bottom: 2rem;
}
/* ===== Comments styling ===== */

.comments-area {
  display: block;
  clear: both;
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: linear-gradient(145deg, hsla(20, 10%, 10%, 0.88), hsla(20, 10%, 6%, 0.96));
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.comments-area h2,
.comments-area h3,
.comments-area .comment-reply-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.comments-area .logged-in-as,
.comments-area .comment-notes,
.comments-area .comment-form-cookies-consent,
.comments-area .comment-metadata,
.comments-area .comment-awaiting-moderation,
.comments-area .no-comments {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.comments-area a {
  color: var(--primary);
  text-decoration: none;
}

.comments-area a:hover {
  text-decoration: underline;
}

.comment-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.comment-list li.comment {
  margin-bottom: 1.5rem;
}

.comment-body {
  background: hsla(20, 10%, 8%, 0.65);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1.25rem;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.comment-author .avatar {
  border-radius: 9999px;
}

.comment-author .fn,
.comment-author .fn a {
  color: var(--foreground);
  font-style: normal;
  font-weight: 600;
}

.comment-content {
  color: var(--secondary-foreground);
  line-height: 1.8;
}

.comment-content p:last-child {
  margin-bottom: 0;
}

.reply a,
.comment-reply-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.comment-respond {
  margin-top: 2rem;
}

.comment-form {
  display: grid;
  gap: 1rem;
}

.comment-form p {
  margin: 0;
}

.comment-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--foreground);
  font-weight: 500;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
  width: 100%;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%;
  background: hsla(20, 10%, 8%, 0.8);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.comment-form textarea {
  min-height: 180px;
  resize: vertical;
}

.comment-form textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus {
  outline: none;
  border-color: hsla(35, 80%, 55%, 0.5);
  box-shadow: 0 0 0 3px hsla(35, 80%, 55%, 0.12);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: var(--muted-foreground);
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.comment-form-cookies-consent input {
  margin-top: 0.25rem;
}

.form-submit {
  margin-top: 0.5rem;
}

.comment-form .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 1.5rem;
  background: var(--gradient-accent);
  color: var(--primary-foreground);
  border: 0;
  border-radius: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.comment-form .submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
  .comments-area {
    padding: 1.25rem;
    margin-top: 2rem;
  }

  .comments-area h2,
  .comments-area h3,
  .comments-area .comment-reply-title {
    font-size: 1.5rem;
  }
}
/* Homepage: 1 groot artikel boven, 2 kleine onder */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.article-card-large {
  grid-column: span 2;
}

.article-card-large .article-image {
  aspect-ratio: 16/9;
}

.article-card-large .article-title {
  font-size: 1.75rem;
}

.article-card-large .article-content {
  padding: 2rem;
}

@media (max-width: 768px) {
  .article-card-large {
    grid-column: span 1;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== LIGHT THEME OVERRIDES ===== */

body {
  background: var(--background);
  color: var(--foreground);
}

.glass {
  background: hsla(0, 0%, 100%, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(0, 0%, 85%, 0.8);
}

.nav-menu a,
.nav-menu-mobile a,
.article-excerpt,
.book-feature p,
.bio-intro-text,
.bio-article-content,
.tv-description-text,
.entry-content,
.comment-content,
.contact-value,
.footer-description,
.footer-copyright,
.page-hero-description,
.hero-subtitle,
.section-description {
  color: var(--secondary-foreground);
}

.article-card,
.bio-article,
.contact-card,
.timeline-item,
.instruction-card,
.banner-widget,
.comment-body,
.comment-respond,
.comments-area,
.kupurler-card,
.video-card {
  background: hsl(0, 0%, 100%);
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.biography-section,
.contact-section,
.tv-section-alt,
.gallery-section,
.articles-page-section,
.bio-content-section {
  background: hsl(0, 0%, 98%);
}

.timeline-item:hover,
.contact-card:hover,
.article-card:hover,
.bio-article:hover {
  background: hsl(35, 35%, 98%);
}

.hero-image-frame,
.single-hero,
.video-embed,
.video-embed-large,
.gallery-photo,
.lightbox-content img {
  background: hsl(0, 0%, 100%);
}

.search-input,
.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  background: hsl(0, 0%, 100%);
  color: var(--foreground);
  border: 1px solid var(--border);
}

.search-input::placeholder,
.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: var(--muted-foreground);
}

.back-button:hover,
.share-button:hover,
.social-link:hover {
  background: hsla(35, 80%, 55%, 0.08);
}

.kupurler-hero {
  background: linear-gradient(to bottom, hsla(35, 80%, 55%, 0.08), hsl(0, 0%, 100%));
}

.hero-pattern {
  opacity: 0.035;
}

.hero-orb-1 {
  background: hsla(35, 80%, 55%, 0.08);
}

.hero-orb-2 {
  background: hsla(35, 70%, 45%, 0.08);
}

.tv-description-image .image-placeholder,
.photo-placeholder,
.image-placeholder,
.article-image-placeholder {
  background: hsl(0, 0%, 95%);
  color: var(--muted-foreground);
  border-color: var(--border);
}

.single-hero-blur {
  opacity: 0.18;
}

.comment-body,
.comment-respond,
.comments-area {
  background: linear-gradient(145deg, hsl(0, 0%, 100%), hsl(35, 35%, 98%));
}

.footer-inner,
.section-header,
.hero-content,
.book-content,
.contact-wrapper {
  color: var(--foreground);
}
body {
  color: #222;
}

p {
  color: #444;
}
.sidebar {
  padding-top: 6rem;
}