@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #ffffff;
    --text-main: #1e293b;
    --text-light: #64748b;
    --accent-blue: #0f172a; /* Slate 900 - Çok koyu kurumsal lacivert */
    --accent-blue-light: #3b82f6; /* Brand Blue */
    --accent-soft: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: var(--text-main);
    overflow-x: hidden;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Typography Utilities */
.text-balance {
    text-wrap: balance;
}

/* Hero Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-animate {
    animation: fadeInScale 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Text Reveal Animation */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text {
    animation: slideUpFade 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Custom Grid Patterns */
.bg-grid-pattern {
    background-image: linear-gradient(to right, #f1f5f9 1px, transparent 1px),
                      linear-gradient(to bottom, #f1f5f9 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Glassmorphism Navigation */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Image Hover Effects */
.hover-zoom-img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.group:hover .hover-zoom-img {
    transform: scale(1.03);
}

/* Prose Customization for Article */
.prose h2 {
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-top: 2.5em;
}
.prose h3 {
    color: #334155;
    font-weight: 600;
    margin-top: 2em;
}
.prose p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5em;
    font-size: 1.05rem;
}
.prose strong {
    color: #0f172a;
    font-weight: 600;
}
.prose ul li::marker {
    color: #3b82f6;
}

/* Swiper Custom Pagination */
.swiper-pagination-bullet-active {
    background-color: #0f172a !important;
}

/* Sticky Mobile Buttons */
.sticky-mobile-btns {
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}