/*
 * Akım Özel Dedektiflik - Custom Stylesheet
 * Luxury Dark Investigator Theme
 */

:root {
    --primary-dark: #070d19;
    --card-dark: #0f172a;
    --border-dark: #1e293b;
    --accent-gold: #f59e0b;
    --accent-gold-hover: #d97706;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-primary);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
}

/* Glassmorphism Navigation */
.nav-glass {
    background: rgba(7, 13, 25, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

/* Slider transition effects */
.slider-item {
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    z-index: 1;
    pointer-events: none;
    visibility: hidden;
}

.slider-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 20;
    pointer-events: auto;
    visibility: visible;
}

.slider-item.inactive {
    opacity: 0;
    transform: scale(1.03);
    z-index: 1;
    pointer-events: none;
    visibility: hidden;
}

/* Card Glow Hover */
.glow-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.15);
    transform: translateY(-4px);
}

/* Floating Contact Pulse */
.floating-pulse {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Article rich typography */
.article-rich-body h2 {
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.article-rich-body p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #070d19;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    padding: 16px 24px;
    border-radius: 12px;
    background: #0f172a;
    border: 1px solid #f59e0b;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease-out;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Badges */
.badge-gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.3));
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24;
}
