/* Custom styles for Creavico */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.active-link {
    background-color: #e0e7ff !important; /* açık mavi arka plan */
    color: #3730a3 !important; /* koyu mavi metin */
    font-weight: 600;
    border-radius: 0.5rem;
}

/* Responsive logo */
@media (max-width: 640px) {
    .logo-text {
        font-size: 1rem;
    }
    .logo-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
} 