/* ============================================
   Hero Section Styles - Simplified
   ============================================ */

.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 2rem;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(0deg, rgba(0, 255, 65, 0.03) 0px, transparent 2px, transparent 4px),
        repeating-linear-gradient(90deg, rgba(0, 255, 65, 0.03) 0px, transparent 2px, transparent 4px);
    z-index: 0;
    animation: grid-scan 20s linear infinite;
}

@keyframes grid-scan {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px);
    }
}

/* Content */
.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-greeting {
    margin-bottom: 0.75rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: var(--glow-sm);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--primary-color);
    color: #000;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--glow-sm);
    margin-top: 0.5rem;
}

.hero-badge i {
    font-size: 0.875rem;
}

.hero-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--primary-light) 50%, var(--neon-green) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rotate-gradient 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.5));
}

.hero-title {
    font-size: clamp(1.375rem, 2.75vw, 2rem);
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.typing-text {
    position: relative;
    color: var(--primary-color);
    text-shadow: var(--glow-sm);
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.current-position-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: #000;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    box-shadow: var(--glow-md);
    animation: pulse-badge 2s ease-in-out infinite;
}

.current-position-badge i {
    font-size: 0.5rem;
    animation: pulse-dot 1.5s infinite;
}

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

@keyframes pulse-badge {
    0%, 100% { box-shadow: var(--glow-md); }
    50% { box-shadow: var(--glow-lg); }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.hero-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.hero-badge-item:hover {
    border-color: var(--border-glow);
    box-shadow: var(--glow-sm);
    transform: translateY(-2px);
}

.hero-badge-item i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* Social Links */
.hero-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-md);
    transform: translateY(-4px) rotate(5deg);
}

.social-link:hover i {
    color: #000;
    transform: scale(1.1);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-shape {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.hero-shape::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, transparent, var(--neon-green), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Cards - Enhanced */
.floating-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 2px solid var(--border-glow);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg), var(--glow-md);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg), var(--glow-lg);
}

.card-1 {
    top: 10%;
    right: -5%;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    left: -5%;
    color: var(--primary-color);
    animation: float 4s ease-in-out infinite 0.5s;
}

.card-3 {
    top: 50%;
    right: -10%;
    color: var(--primary-color);
    animation: float 3.5s ease-in-out infinite 1s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-indicator a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

.scroll-indicator a:hover {
    color: var(--primary-color);
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.mouse span {
    position: absolute;
    width: 3px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 2px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 22px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }

    .hero-shape {
        max-width: 350px;
    }

    .floating-card {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 1rem 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

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

    .hero-shape {
        max-width: 280px;
    }

    .floating-card {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .current-position-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
