/* ======================
   Common Components
   ====================== */

/* Sections */
section {
    padding: 6rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    background: var(--gradient-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-metallic);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Buttons */
.view-all-btn {
    display: inline-block;
    margin: 0 auto;
    padding: 1rem 3rem;
    background: var(--gradient-metallic);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s;
    text-align: center;
    display: block;
    width: fit-content;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 2px solid var(--metallic-blue-dark);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--metallic-blue-light);
    transition: all 0.3s;
    font-weight: 600;
}

.social-link:hover {
    background: var(--gradient-metallic);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
}

/* Skills & Awards */
.skill {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}
