/* Ana stil dosyası */

/* Özel fontlar */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Temel stiller */
body {
    font-family: 'Inter', sans-serif;
}

/* Material Symbols ayarları */
.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24;
}

/* Özel renkler ve stiller */
.bg-primary {
    background-color: #3b82f6;
}

.text-primary {
    color: #3b82f6;
}

.border-primary {
    border-color: #3b82f6;
}

/* Hero bölümü */
.hero-section {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

/* Yeni animasyonlar */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes wave {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.5);
    }
}

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 85%;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Animasyon sınıfları */
.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fade-in-right 1s ease-out;
}

.animate-wave {
    animation: wave 1.5s ease-in-out infinite;
}

.animate-progress {
    animation: progress 3s ease-in-out infinite;
}

.animation-delay-200 {
    animation-delay: 200ms;
}

.animation-delay-400 {
    animation-delay: 400ms;
}

.animation-delay-600 {
    animation-delay: 600ms;
}

.animation-delay-800 {
    animation-delay: 800ms;
}

.animation-delay-1000 {
    animation-delay: 1000ms;
}

.animation-delay-1200 {
    animation-delay: 1200ms;
}

.animation-delay-1400 {
    animation-delay: 1400ms;
}

.animation-delay-1600 {
    animation-delay: 1600ms;
}

.animation-delay-1800 {
    animation-delay: 1800ms;
}

.animation-delay-2000 {
    animation-delay: 2000ms;
}

/* Typing animasyonu */
.typing-animation {
    overflow: hidden;
    border-right: 0.15em solid #fff;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end) infinite, 
               blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: #fff;
    }
}

/* Gradient text */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* Backdrop blur support */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.backdrop-blur-lg {
    backdrop-filter: blur(16px);
}

/* Kart hover efektleri */
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Animasyonlar */
.transition-all {
    transition: all 0.3s ease;
}

/* Özel buton stilleri */
.btn-primary {
    background-color: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #2563eb;
}

.btn-outline {
    border: 1px solid #3b82f6;
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: #3b82f6;
    color: white;
}

/* Form elemanları */
.form-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Sidebar stilleri */
.sidebar {
    width: 240px;
    transition: all 0.3s ease;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #4b5563;
    border-radius: 0.375rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s ease;
}

.sidebar-item:hover {
    background-color: #f3f4f6;
    color: #FF4C00;
}

.sidebar-item.active {
    background-color: #fff7ed;
    color: #FF4C00;
    font-weight: 500;
}

.sidebar-item .material-symbols-outlined {
    margin-right: 0.75rem;
}

/* Tablo stilleri */
.table-container {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.data-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.data-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.data-table tr:hover {
    background-color: #f9fafb;
}

/* Tablo sütun genişlikleri */
.data-table th:first-child,
.data-table td:first-child {
    width: 35%;
    min-width: 200px;
}

.data-table th:nth-child(2),
.data-table td:nth-child(2) {
    width: 20%;
    min-width: 130px;
}

.data-table th:nth-child(3),
.data-table td:nth-child(3) {
    width: 15%;
    min-width: 100px;
}

.data-table th:nth-child(4),
.data-table td:nth-child(4) {
    width: 15%;
    min-width: 100px;
}

.data-table th:nth-child(5),
.data-table td:nth-child(5) {
    width: 15%;
    min-width: 100px;
}

/* Üyelik planları kartları */
.plan-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: #FF4C00;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.plan-card.popular {
    border-color: #FF4C00;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Popüler plan özel stilleri */
.popular-plan {
    transform: scale(1.02);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Özel glassmorphism efektleri */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Glow efektleri */
.glow-blue {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.glow-purple {
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

/* Özel scroll bar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Mobil responsive ayarlar */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
    }

    .sidebar-item span:not(.material-symbols-outlined) {
        display: none;
    }

    .sidebar-item .material-symbols-outlined {
        margin-right: 0;
    }

    /* Hero bölümü mobil optimizasyonu */
    .hero-section {
        padding: 3rem 0;
    }

    .animate-fade-in-up,
    .animate-fade-in-right {
        animation-duration: 0.6s;
    }

    /* Mobilde animasyon gecikmelerini azalt */
    .animation-delay-200 {
        animation-delay: 100ms;
    }

    .animation-delay-400 {
        animation-delay: 200ms;
    }

    .animation-delay-600 {
        animation-delay: 300ms;
    }

    .animation-delay-800 {
        animation-delay: 400ms;
    }
}


