/* style.css */

/* Genel Ayarlar */
html {
    scroll-behavior: smooth;
}

/* Blob Animasyonları (Arkaplan) */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: move 10s infinite alternate;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(20px, -20px) scale(1.1); }
}

/* Marquee (Sonsuz Kayan Yazı) */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    width: 200%;
    animation: scroll 30s linear infinite;
}

.marquee-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: #94a3b8;
    opacity: 0.6;
    transition: all 0.3s;
    white-space: nowrap;
}

.marquee-item:hover {
    opacity: 1;
    color: #2563eb;
    cursor: default;
}

/* Footer Sosyal Medya İkonları Hover Efekti */
.social-icon {
    transition: transform 0.2s ease, color 0.2s ease;
}
.social-icon:hover {
    transform: translateY(-3px);
    color: #3b82f6; /* brand-500 */
}