/* ======================
   HERO SECTION
   ====================== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: auto;
    z-index: 2;
}

.profile-photo-container {
    width: 325px;
    margin: 0 auto 2rem;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.profile-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: var(--section-purple-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    font-size: clamp(1rem, 4vw, 1.25rem);
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--section-purple-gradient);
    opacity: 0.5;
}

.cta {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text);
    opacity: 0.9;
}

/* Social Links */
.hero-social-links {
    margin-top: 2rem;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-5px);
}

.social-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.social-icon-link:hover .social-icon-circle {
    background: var(--accent);
    border-color: transparent;
    transform: scale(1.1);
}

.social-icon-circle i {
    font-size: 1.2rem;
}

.social-icon-label {
    font-size: 0.85rem;
    opacity: 0.9;
    text-align: center;
}