/* Arbil Tasarım — Özel Stiller */

[x-cloak] { display: none !important; }

html { scroll-behavior: smooth; }

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prose stilleri (CMS içerikler için) */
.prose { color: #374151; line-height: 1.75; }
.prose h1, .prose h2, .prose h3, .prose h4 { font-family: 'Playfair Display', serif; font-weight: 700; color: #0a0a0a; margin-top: 1.5em; margin-bottom: 0.5em; line-height: 1.2; }
.prose h1 { font-size: 2.25em; }
.prose h2 { font-size: 1.875em; }
.prose h3 { font-size: 1.5em; }
.prose p { margin-bottom: 1em; }
.prose a { color: #c8102e; text-decoration: underline; }
.prose a:hover { color: #a00d24; }
.prose strong { color: #0a0a0a; font-weight: 600; }
.prose ul, .prose ol { margin: 1em 0; padding-left: 1.5em; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose blockquote { border-left: 4px solid #c8102e; padding-left: 1em; font-style: italic; color: #4b5563; }
.prose img { max-width: 100%; border-radius: 0.5rem; margin: 1em 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.prose th, .prose td { border: 1px solid #e5e7eb; padding: 0.5em; text-align: left; }
.prose th { background: #f9fafb; font-weight: 600; }

/* Scrollbar stilleri */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c8102e; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #a00d24; }

/* Selection */
::selection { background: #c8102e; color: white; }

/* Container helper - default Tailwind container'a maksimum genişlik veriyoruz */
.container { max-width: 1280px; }

/* Form input default focus override */
input:focus, textarea:focus, select:focus { outline: none; }

/* Loading shimmer */
.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Smooth page transitions */
main { animation: pageIn 0.4s ease-out; }
@keyframes pageIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Print stilleri */
@media print {
    header, footer, .no-print { display: none !important; }
}
