

/* --- Base & Utilities --- */
html {
    scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f8fafc;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

/* --- Animations --- */
@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.animate-kenburns {
    animation: kenburns 25s ease-out infinite alternate;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

.shutter-lens {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #e2e8f0;
    border-top-color: #0ea5e9;
    animation: spin-slow 1.2s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* --- Premium Shadows & Effects --- */
.shadow-premium {
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08),
                0 0 3px rgba(0, 0, 0, 0.03);
}

.shadow-premium-lg {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.12),
                0 10px 10px -5px rgba(0, 0, 0, 0.06);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* --- Typography Details --- */
.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

/* --- Prose Customization (For Articles) --- */
.prose {
    max-width: none;
}

.prose h2 {
    margin-top: 0;
    line-height: 1.3;
    font-weight: 700;
}

.prose h3 {
    font-weight: 600;
    line-height: 1.4;
}

.prose h4 {
    font-weight: 600;
}

.prose strong {
    color: #0f172a;
    font-weight: 600;
}

.prose p {
    line-height: 1.8;
}

.prose a {
    color: #0ea5e9;
    text-decoration: none;
    transition: color 0.2s;
}

.prose a:hover {
    color: #0284c7;
}

/* --- Utility Classes --- */
.text-balance {
    text-wrap: balance;
}

/* --- Responsive Image Optimization --- */
img {
    max-width: 100%;
    height: auto;
}

/* --- Focus States --- */
*:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

/* --- Selection --- */
::selection {
    background: #0ea5e9;
    color: white;
}

::-moz-selection {
    background: #0ea5e9;
    color: white;
}

/* --- Print Styles --- */
@media print {
    .no-print {
        display: none !important;
    }
}

/* --- Loading States --- */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
/* İl Seçim Listesi için özel scroll */
.province-selector {
    scrollbar-width: thin;
    scrollbar-color: #0ea5e9 #f1f5f9;
}

/* Hover efektleri */
.province-link {
    position: relative;
    overflow: hidden;
}

.province-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #0ea5e9;
    transform: scaleY(0);
    transition: transform 0.3s;
}

.province-link:hover::before {
    transform: scaleY(1);
}

/* Schema snippet styling */
.schema-ready {
    position: relative;
}