/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-20) 0 var(--space-16);
    background: linear-gradient(135deg, 
                var(--bg-primary) 0%, 
                var(--bg-secondary) 50%,
                var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 5;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, 
                rgba(255, 107, 53, 0.05) 0%, 
                transparent 50%),
                radial-gradient(circle at 70% 50%, 
                rgba(30, 58, 95, 0.05) 0%, 
                transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-8);
}

/* Hero Image at Top Center */
.hero-image-top {
    margin-bottom: var(--space-6);
    margin-top: var(--space-6);
    animation: fadeIn 0.8s ease-out;
}

.image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 5px solid var(--primary-orange);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, 
                rgba(255, 107, 53, 0.4) 0%, 
                rgba(255, 107, 53, 0.1) 40%, 
                transparent 70%);
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

/* Hero Text Content */
.hero-text {
    max-width: 800px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-greeting {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    font-weight: 500;
}

.hero-name {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--secondary-navy);
    margin-bottom: var(--space-3);
    line-height: 1.1;
    background: linear-gradient(135deg, 
                var(--secondary-navy) 0%, 
                var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .hero-name {
    background: linear-gradient(135deg, 
                var(--primary-orange) 0%, 
                var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-5);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.typed-text {
    color: var(--primary-orange);
}

.typed-cursor {
    color: var(--primary-orange);
    animation: blink 1s infinite;
}

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

.hero-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

/* Hero Social Links */
.hero-social {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

.hero-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: var(--text-xl);
    transition: all var(--transition-base);
}

.hero-social a:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-tertiary);
    font-size: var(--text-sm);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: var(--text-lg);
    color: var(--primary-orange);
}

/* Stats Section */
.stats {
    padding: var(--space-16) 0;
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
}

.stat-card {
    text-align: center;
    padding: var(--space-6);
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, 
                var(--primary-orange), 
                var(--accent-orange));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-3xl);
}

.stat-number {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: var(--space-2);
}

.stat-number::after {
    content: '+';
    color: var(--primary-orange);
}

.stat-label {
    font-size: var(--text-base);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE - HERO SECTION
   ============================================ */

@media (max-width: 768px) {
    .hero {
        padding: var(--space-16) 0 var(--space-12);
    }
    
    .image-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .image-glow {
        width: 200px;
        height: 200px;
    }
    
    .hero-greeting {
        font-size: var(--text-base);
    }
    
    .hero-description {
        font-size: var(--text-base);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-social a {
        width: 45px;
        height: 45px;
        font-size: var(--text-lg);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: var(--text-2xl);
    }
    
    .stat-number {
        font-size: var(--text-4xl);
    }
}

@media (max-width: 480px) {
    .image-wrapper {
        width: 160px;
        height: 160px;
    }
    
    .image-glow {
        width: 180px;
        height: 180px;
    }
    
    .hero-social {
        gap: var(--space-3);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
      }
