/* =============================================
   PROXIMA LENS 2.0.0 - Developer Section
   Developer Profile Card
   ============================================= */

.developer {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

/* Developer Card */
.dev-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

/* Developer Profile */
.dev-profile {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.dev-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    padding: 3px;
    flex-shrink: 0;
}

.dev-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.dev-info {
    text-align: left;
}

.dev-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.dev-role {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.dev-website {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.dev-website:hover {
    color: var(--primary);
}

/* Developer Bio */
.dev-bio {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    text-align: left;
}

/* Social Links */
.dev-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 640px) {
    .dev-card {
        padding: 28px 24px;
    }

    .dev-profile {
        flex-direction: column;
        text-align: center;
    }

    .dev-info {
        text-align: center;
    }

    .dev-avatar {
        width: 80px;
        height: 80px;
    }

    .dev-name {
        font-size: 1.3rem;
    }

    .dev-bio {
        text-align: center;
    }
}