/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fe 0%, #eef2fa 100%);
    color: #1a2c3e;
    scroll-behavior: smooth;
}

/* ========== TYPOGRAPHY ========== */
.text-gradient {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ========== BUTTONS ========== */
.btn-soft-primary {
    background-color: rgba(37, 99, 235, 0.1);
    color: #1e40af;
    border-radius: 40px;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-weight: 500;
}

.btn-soft-primary:hover {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(37, 99, 235, 0.3);
}

/* ========== SOCIAL ICONS ========== */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 60px;
    font-size: 1.8rem;
    color: #1e293b;
    transition: all 0.25s ease;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.15);
}

.social-icon.email:hover {
    color: #ea4335;
    border-color: #ffe5e2;
}

/* ========== CARDS ========== */
.project-card {
    background: white;
    border-radius: 1.75rem;
    transition: all 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

/* ========== AVATAR ========== */
.avatar-circle {
    width: 130px;
    height: 130px;
    background: linear-gradient(145deg, #ffffff, #f0f4ff);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

/* ========== BADGES ========== */
.hero-badge {
    background: rgba(37, 99, 235, 0.12);
    backdrop-filter: blur(4px);
    border-radius: 40px;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2563eb;
    width: fit-content;
    margin: 0 auto;
}

/* ========== FOOTER ========== */
footer {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}