/* Global Styles */
body {
    font-family: 'Noto Sans', sans-serif;
    /* bg-background-dark */
    background-color: #0f201b;
    /* text-text-main-dark */
    color: #f8fafc;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Newsreader', serif;
}

.editorial-shadow {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* About Us (Hakkımızda) Styles */
.timeline-item,
.award-item {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item-left {
    transform: translateX(-60px);
}

.timeline-item-right {
    transform: translateX(60px);
}

.award-item-left {
    transform: translateX(-60px);
}

.award-item-right {
    transform: translateX(60px);
}

.timeline-item.is-visible,
.award-item.is-visible {
    opacity: 1;
    transform: translate(0);
}

#scroll-progress-line {
    height: 0%;
    transition: height 0.15s ease-out;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(217, 165, 54, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(217, 165, 54, 0);
    }
}

.active-dot {
    transition: all 0.5s ease;
}

.timeline-item.is-visible .active-dot {
    animation: pulse-gold 2s infinite;
    /* Transform and background handled by Tailwind utility classes to preserve translateX */
}

/* Publications (Yayınlar) Styles */
.feed-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.feed-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.image-hover-zoom {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.group:hover .image-hover-zoom {
    transform: scale(1.05);
}

/* Archive (Arşiv) Styles */
.article-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover {
    transform: translateY(-8px);
}

.sidebar-item.active {
    /* @apply text-accent-bronze border-l-2 border-accent-bronze pl-4 */
    color: #d9a536;
    border-left-width: 2px;
    border-left-color: #d9a536;
    padding-left: 1rem;
}

.sidebar-item {
    /* @apply pl-4 border-l-2 border-transparent transition-all */
    padding-left: 1rem;
    border-left-width: 2px;
    border-left-color: transparent;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #d9a536;
}