/* Custom styles */
html {
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 100%);
}

body {
    background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 100%);
}

.section-gradient {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
}

.card-gradient {
    background: linear-gradient(120deg, #fff 60%, #e0e7ff 100%);
    box-shadow: 0 4px 24px 0 rgba(37,99,235,0.08);
    border-radius: 1.25rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card-gradient:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(37,99,235,0.18);
}

.btn-gradient {
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
    color: #fff;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.btn-gradient:hover {
    background: linear-gradient(90deg, #1e40af 0%, #38bdf8 100%);
    transform: scale(1.04);
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
    border-radius: 2px;
    margin: 0.5rem auto 0 auto;
}

/* Kart ve galeri görselleri için placeholder renkli arka plan */
.card-icon, .gallery-img {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 2rem;
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2563EB;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* Mobile menu styles */
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .desktop-menu {
        display: none;
    }
}
