.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 5rem;
    z-index: 10;
    padding: 0 3rem;
    position: relative;
}

.profile-area {
    position: relative;
    width: 400px;
    height: 400px;
    flex-shrink: 0;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--surface-border);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.profile-area:hover .profile-img {
    transform: scale(1.02);
}

.profile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    z-index: 1;
    animation: pulse-glow 4s infinite alternate;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--surface-glass-heavy);
    backdrop-filter: blur(8px);
    border: 1px solid var(--surface-border);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-soft);
    z-index: 5;
    animation: floating-badge-anim 6s ease-in-out infinite;
}

.floating-badge:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: var(--shadow-soft);
}

@keyframes floating-badge-anim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.badge-hello {
    top: 0%;
    left: 5%;
    transform: none;
    animation-delay: 1s;
    transition: all 0.3s ease;
}

.badge-intern {
    top: 40%;
    left: -25%;
    animation-delay: 0s;
    transition: all 0.3s ease;
}

.badge-uni {
    bottom: 5%;
    right: -10%;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    animation-delay: 2s;
    transition: all 0.3s ease;
}

.badge-ps {
    top: -85%;
    right: -85%;
    width: 60px;
    height: 60px;
    padding: 0 0 4px 0;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    animation-delay: 4s;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-hello:hover,
.badge-uni:hover,
.badge-intern:hover,
.badge-ps:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 238, 255, 0.575);
}

.badge-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.badge-text-col {
    display: flex;
    flex-direction: column;
}

.badge-text-col strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
}

.badge-text-col span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Tooltip */
.tooltip-trigger {
    position: relative;
    cursor: none;
}

.tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--primary) transparent transparent transparent;
}

.tooltip-trigger:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Text Area */
.hero-text-area {
    flex: 1;
    text-align: left;
}

.hero-text-area h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    /* For light mode, standard text is better than a white gradient.
       We can remove the text fill gradient or make it conditional.
       Let's just use text-primary directly. */
    line-height: 1.1;
}

.tagline {
    font-family: var(--font-mono);
    color: var(--highlight);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cursor {
    animation: blink 1s step-end infinite;
    font-weight: 700;
    color: var(--text-primary);
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.divider {
    color: var(--text-muted);
    margin: 0 0.5rem;
    font-weight: 300;
}

.sub-tagline {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

/* Social Icons */
.hero-socials {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--btn-outline-bg);
    border: 1px solid var(--btn-outline-border);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

/* Responsive Hero */
@media (max-width: 1100px) {
    .profile-area {
        width: 320px;
        height: 320px;
    }

    .hero-text-area h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 5rem;
    }

    .hero-text-area {
        text-align: center;
    }

    .sub-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-socials {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .badge-intern {
        left: -10%;
    }

    .badge-uni {
        right: -10%;
    }
}

@media (max-width: 768px) {
    .profile-area {
        width: 250px;
        height: 250px;
        margin-bottom: 2rem;
    }

    .hero-text-area h1 {
        font-size: 3rem;
    }

    .floating-badge {
        display: none;
    }

    /* Hide floating badges on very small screens to avoid clutter */
}