/* Özel CSS Stilleri */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Animasyonlar */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Özel Buton Stilleri */
.btn-primary {
    @apply bg-primary-600 text-white px-6 py-2 rounded-full hover:bg-primary-700 transition duration-300 shadow-lg;
}

.btn-secondary {
    @apply bg-secondary-600 text-white px-6 py-2 rounded-full hover:bg-secondary-700 transition duration-300 shadow-lg;
} 