/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--tertiary-dark) 100%);
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
    filter: blur(40px);
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
    filter: blur(40px);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.profile-image {
    margin-bottom: 0.2rem;
    width: 210px;
    height: 210px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 4px;
    background: linear-gradient(45deg, #00d9ff, #ff006e, #00d9ff);
    background-size: 300% 300%;
    border-radius: 24px;
    animation: borderGradient 6s ease infinite;
    transition: transform 0.4s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: none;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.3), inset 0 0 40px rgba(0, 217, 255, 0.1);
    object-fit: cover;
    object-position: center top;
    transition: all 0.4s ease;
    background: rgba(26, 31, 58, 0.5);
    display: block;
}

.profile-image:hover img {
    box-shadow: 0 0 60px rgba(255, 0, 110, 0.4), inset 0 0 40px rgba(0, 217, 255, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.1rem;
    background: linear-gradient(135deg, #5bcefa 0%, #8338ec 50%, #ff006e 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease, gradientShift 6s ease infinite;
    font-weight: 800;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.3rem;
    color: var(--accent-blue);
    margin-bottom: 0.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bio {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.trans-text {
    background: linear-gradient(90deg, #5bcefa 0%, #f5a9d0 25%, #ffffff 50%, #f5a9d0 75%, #5bcefa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 1rem 0 1.5rem 0;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 217, 255, 0.1);
    color: var(--accent-blue);
    border: 1.5px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: var(--primary-dark);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(0, 217, 255, 0.5);
}

.social-icon:hover::before {
    opacity: 1;
    animation: pulse 0.6s ease-out;
}

/* ===== Action Buttons ===== */
.action-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 42px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    outline: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-projects {
    background: linear-gradient(135deg, #00d9ff, #8338ec);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.3);
}

.btn-projects::before {
    background: linear-gradient(135deg, #00b8d4, #6b28d9);
}

.btn-projects:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4), 0 4px 10px rgba(131, 56, 236, 0.2);
}

.btn-projects:hover::before {
    opacity: 1;
}

.btn-learn {
    background: linear-gradient(135deg, #ff006e, #8338ec);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 0, 110, 0.3);
}

.btn-learn::before {
    background: linear-gradient(135deg, #e0005a, #6b28d9);
}

.btn-learn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4), 0 4px 10px rgba(131, 56, 236, 0.2);
}

.btn-learn:hover::before {
    opacity: 1;
}
