
/* =============================================== */
/* DİNAMİK STİLLER (PHP ile Üretildi)              */
/* =============================================== */
body {
    font-family: 'Poppins', sans-serif;
    color: #475569;
    background-color: #f8fafc;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #292929;
}

/* Dinamik Renk Sınıfları */
.text-primary { color: #bd956c; }
.bg-primary { background-color: #bd956c; }
.border-primary { border-color: #bd956c; }

.bg-dark { background-color: #707070; }
.text-hero-heading { color: #ffffff; } /* YENİ */
.text-heading { color: #292929; }
.text-body { color: #475569; }

/* Dinamik Buton Sınıfları */
.btn-primary {
    background-color: #bd956c;
    color: #ffffff;
}
.btn-primary:hover {
    background-color: #cca785;
}
.prose a {
    color: #bd956c;
}
.prose a:hover {
    color: #cca785;
}
.prose blockquote {
    border-left-color: #bd956c;
}

/* =============================================== */
/* STATİK STİLLER (Orijinal styles.css içeriği)    */
/* =============================================== */
#mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#mobile-menu.open {
    transform: translateX(0);
}
#menu-overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#menu-overlay.open {
    opacity: 1;
    visibility: visible;
}
#header.menu-is-open {
    z-index: 39 !important;
}
[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-animate="fade-in"] { transform: translateY(10px); }
[data-animate="fade-up"] { transform: translateY(15px); }
[data-animate="fade-down"] { transform: translateY(-15px); }
[data-animate="zoom-in"] { transform: scale(0.95); }

.is-visible[data-animate] {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.lightbox-transition {
    transition: opacity 0.3s ease-in-out;
}
.lightbox-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    margin: 0 4px;
    display: inline-block;
    opacity: 0.6;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}
.lightbox-thumb:hover {
    opacity: 1;
}
.lightbox-thumb.active {
    opacity: 1;
    border-color: #bd956c;
}
#lightbox-thumbnails {
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #1f2937;
}
#lightbox-thumbnails::-webkit-scrollbar {
    height: 8px;
}
#lightbox-thumbnails::-webkit-scrollbar-track {
    background: #1f2937;
    border-radius: 10px;
}
#lightbox-thumbnails::-webkit-scrollbar-thumb {
    background-color: #4b5563;
    border-radius: 10px;
    border: 2px solid #1f2937;
}

.slider-indicator.active {
    background-color: #ffffff;
}

.prose {
    line-height: 1.8;
    font-size: 1rem;
}
.prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    font-weight: 600;
    margin-bottom: 0.75em;
    margin-top: 1.75em;
}
.prose h2 {
    font-size: 1.75rem;
    line-height: 2.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 700;
}
.prose h3 {
    font-size: 1.375rem;
    line-height: 1.75rem;
}
.prose h4 {
    font-size: 1.125rem;
    line-height: 1.5rem;
}
.prose p {
    margin-bottom: 1.25em;
}
.prose ul,
.prose ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25em;
}
.prose li {
    margin-bottom: 0.5em;
    padding-left: 0.5rem;
}
.prose li::marker {
    color: #64748b;
}
.prose a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, border-color 0.2s ease;
    border-bottom: 1px solid #fdba74;
}
.prose strong {
    font-weight: 700;
}
.prose blockquote {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.25rem;
    font-style: italic;
}
