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

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg);
}

/* Remove all background animations */
.hero-bg,
.floating-shape {
    display: none;
}

/* Hero Content - Centered */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 140px);
}

.greeting-text {
    font-size: 28px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.name-highlight {
    color: var(--accent);
}

.hero-role {
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 30px;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    color: var(--secondary);
    line-height: 1.7;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--primary);
    border-radius: 14px;
    position: relative;
    margin: 0 auto;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

/* ================================
   STATS SECTION
   ================================ */

.stats-section {
    padding: 80px 60px;
    background: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: var(--bg);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

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

/* ================================
   ANIMATIONS
   ================================ */

.hero-content {
    transition: transform 0.1s ease-out, opacity 0.3s ease-out;
}

.floating-shape {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* Typing cursor effect */
.hero-role::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 2px;
}

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

.hero-role.typing-done::after {
    display: none;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Large Desktops */
@media (min-width: 1920px) {
    .hero-title {
        font-size: 100px;
    }
    
    .hero-role {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 24px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 70px;
    }
    
    .hero-role {
        font-size: 30px;
    }
}

/* Laptop */
@media (max-width: 968px) {
    .hero-title {
        font-size: 60px;
    }
    
    .hero-role {
        font-size: 28px;
    }
    
    .greeting-text {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 30px;
        min-height: calc(100vh - 120px);
    }
    
    .greeting-text { 
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .hero-title { 
        font-size: 48px;
        margin-bottom: 18px;
    }
    
    .hero-role { 
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .hero-description { 
        font-size: 17px;
        margin-bottom: 0;
    }
    
    .scroll-indicator {
        bottom: 50px;
    }
    
    .stats-section {
        padding: 60px 30px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-content {
        padding: 0 20px;
        min-height: calc(100vh - 100px);
    }
    
    .greeting-text { 
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .hero-title { 
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .hero-role { 
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .hero-description { 
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    .scroll-indicator {
        bottom: 40px;
    }
    
    .mouse {
        width: 24px;
        height: 40px;
    }
    
    .stats-section {
        padding: 50px 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-role {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}


/* Scroll Indicator animations */
.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Pulse animation for mouse wheel */
.wheel {
    animation: scroll 2s infinite, pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}