:root {
    --primary-color: #5D5CDE;
    --primary-dark: #4a49b5;
    --primary-light: #8281e7;
    --bg-light: #FFFFFF;
    --text-light: #333;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}


.py-2\.5 {
    padding-bottom: .990rem;
    padding-top: .925rem;
}



.skill-bar {
    height: 10px;
    border-radius: 5px;
    background-color: #e2e2e2;
    margin-bottom: 20px;
}

.skill-progress {
    height: 100%;
    border-radius: 5px;
    background-color: var(--primary-color);
    width: 0;
    transition: width 1s ease-in-out;
}

.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Menü ortalama için ek stiller */
@media (min-width: 768px) {
    nav .flex {
        position: relative;
    }
    
    #navbar-default {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobil menü düzenlemeleri */
@media (max-width: 767px) {
    #navbar-default {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 50;
        background-color: white;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
    
    #navbar-default ul {
        width: 100%;
    }
    
    #navbar-default li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    #navbar-default li:last-child {
        border-bottom: none;
    }
    
    #navbar-default a {
        display: block;
        padding: 0.75rem 1rem;
    }
}

.post-list {
    list-style: none;
    padding: 0;
}

.post-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.post-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.post-date {
    color: #666;
    font-size: 0.9em;
}

.post-excerpt {
    color: #666;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 5.25rem;
}

.markdown-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
}

.markdown-content h1 { font-size: 3em; font-weight: 700; margin-bottom: 1em; }
.markdown-content h2 { font-size: 1.5em; margin: 1em 0; }
.markdown-content h3 { font-size: 1.17em; margin: 1em 0; }
.markdown-content p { margin: 1em 0; }
.markdown-content ul { list-style-type: disc; padding-left: 2em; }
.markdown-content ol { list-style-type: decimal; padding-left: 2em; }
.markdown-content code { background: #f4f4f4; padding: 0.2em 0.4em; border-radius: 3px; }
.markdown-content pre code { display: block; padding: 1em; overflow-x: auto; }
.markdown-content blockquote {
    border-left: 4px solid var(--primary-color);
    margin: 1em 0;
    padding-left: 1em;
    color: #666;
}



