:host {
    display: block;
    width: 100%;
    position: relative;
    background: radial-gradient(circle at 90% 10%, rgba(62, 100, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 10% 90%, rgba(124, 58, 237, 0.05) 0%, transparent 40%);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(var(--resume-spacing-lg), 10vh, var(--resume-spacing-xl)) 0;
    gap: var(--resume-spacing-lg);
    min-height: 80vh;
}

.hero-content {
    flex: 1.2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(62, 100, 255, 0.08);
    color: var(--resume-accent);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: var(--resume-spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(62, 100, 255, 0.1);
}

.pulse-dot {
    position: relative;
    width: 8px;
    height: 8px;
    background: #10B981; /* Success Green */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #10B981;
    border-radius: 50%;
    animation: signal-pulse 2s infinite;
}

@keyframes signal-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 0.95;
    margin-bottom: var(--resume-spacing-md);
    letter-spacing: -3px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    transition: var(--resume-transition);
    cursor: default;
    background: linear-gradient(to right, var(--resume-primary), var(--resume-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title:hover {
    transform: translateX(10px);
}

.hero-profession {
    font-size: 1.75rem;
    color: var(--resume-accent);
    margin-bottom: var(--resume-spacing-md);
    font-weight: 600;
    font-family: var(--resume-font-heading);
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: var(--resume-spacing-lg);
    color: var(--resume-text-muted);
}

.hero-image-container {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--resume-radius);
    background: #fff;
    border: 8px solid white;
    box-shadow: var(--resume-shadow-lg);
    transition: var(--resume-transition);
}

.hero-image-wrapper:hover .hero-image {
    transform: rotate(-2deg) scale(1.02);
}

.hero-image-bg {
    position: absolute;
    top: 40px;
    right: -40px;
    width: 100%;
    height: 100%;
    background: var(--resume-accent-gradient);
    border-radius: var(--resume-radius);
    z-index: -1;
    opacity: 0.2;
    transition: var(--resume-transition);
}

.hero-image-wrapper:hover .hero-image-bg {
    top: 60px;
    right: -60px;
}

.floating-element {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--resume-shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.floating-1 { top: 10%; right: -10%; animation-delay: 0s; }
.floating-2 { bottom: 20%; left: -5%; animation-delay: 1s; }

.hero-cta-group {
    display: flex;
    gap: var(--resume-spacing-sm);
    box-sizing: border-box;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: var(--resume-spacing-lg) 0;
        gap: var(--resume-spacing-xl);
    }

    .hero-content {
        order: 2;
    }

    .hero-image-container {
        order: 1;
        width: 100%;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .floating-1 { right: 0; top: 0; }
    .floating-2 { left: 0; bottom: 0; }
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        width: 280px;
        height: 280px;
    }

    .hero-image {
        transform: rotate(-2deg) scale(1.02);
    }

    .hero-image-bg {
        top: 30px;
        right: -30px;
    }

    .hero-image-wrapper:hover .hero-image-bg {
        top: 35px;
        right: -35px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta-group {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: var(--resume-spacing-sm);
    }

    .hero-cta-group .btn {
        padding: 16px 32px;
    }


    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .hero-cta-group {
        max-width: 100%;
    }
}
