/* GitHub Repositories Page Styles */
.github-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.github-intro {
    text-align: center;
    margin-bottom: 50px;
}

.github-intro h2 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.github-intro p {
    color: #666;
    font-size: 1.2em;
}

.github-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.github-card {
    position: relative;
    background: #ffffff;
    border: 2px solid #e1e8ed;
    padding: 25px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.github-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.github-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.github-icon {
    color: #24292e;
    display: flex;
    align-items: center;
}

.github-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.github-card h3 {
    font-size: 1.5em;
    margin-bottom: 12px;
    font-weight: 600;
    color: #24292e;
    line-height: 1.3;
}

.github-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #586069;
    flex-grow: 1;
    margin-bottom: 15px;
}

.github-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e1e8ed;
}

.github-link {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.github-card:hover .github-link {
    color: #764ba2;
    transform: translateX(5px);
}

.btn-back {
    display: inline-block;
    padding: 10px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #764ba2;
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .github-content {
        padding: 30px 20px;
    }
    
    .github-intro h2 {
        font-size: 2em;
    }
    
    .github-intro p {
        font-size: 1em;
    }
    
    .github-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .github-card {
        padding: 20px 15px;
    }
    
    .github-card h3 {
        font-size: 1.3em;
    }
}

