/* Developers Page Specific Styles - Override main styles */

/* Hero Section */
body .hero {
    padding-top: 95px !important;
    padding-bottom: 30px !important;
    background: var(--hero-bg);
    text-align: center;
    min-height: auto !important;
}

.hero h1 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: var(--about-bg);
}

.team-member-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.team-member-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.member-avatar {
    width: 96px;
    height: 96px;
    background: var(--accent-bg);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.member-info h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 16px;
}

.description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 14px;
}

.member-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-bg);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 14px;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Connect Section */
.connect {
    padding: 80px 0;
    background: var(--models-bg);
}

.connect-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.2s ease;
}

.connect-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.connect-card h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.connect-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.connect-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.connect-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--accent-bg);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 14px;
}

.connect-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 80px !important;
        padding-bottom: 20px !important;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .team-member-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .member-avatar {
        margin: 0 auto;
        width: 80px;
        height: 80px;
    }
    
    .connect-card {
        padding: 32px 24px;
    }
    
    .connect-links {
        flex-direction: column;
        align-items: center;
    }
    
    .member-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .team,
    .connect {
        padding: 60px 0;
    }
    
    .team-member-card,
    .connect-card {
        padding: 24px 20px;
    }
    
    .member-info h2 {
        font-size: 20px;
    }
    
    .role {
        font-size: 14px;
    }
    
    .description {
        font-size: 13px;
    }
    
    .connect-card h2 {
        font-size: 20px;
    }
    
    .member-avatar {
        width: 72px;
        height: 72px;
    }
    
    .social-link,
    .connect-link {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* Footer Links Override - All on Same Row */
.footer-links {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}