/* ===================================
   Modern Hero Section - Dark Theme
   Inspired by Modern Portfolio Design
   =================================== */

/* Hero Section - Dark Theme */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a1128 0%, #1a1f3a 50%, #0f1624 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.hero .container {
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

/* Hero Wrapper */
.hero-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Content */
.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 18px;
}

.badge-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-title {
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-prefix {
    display: block;
    font-size: 32px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-style: italic;
}

.title-main {
    display: block;
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -2px;
    min-height: 85px;
}

/* Typing cursor styling */
.typed-cursor {
    color: #ffd700;
    font-weight: 800;
    animation: blink 0.7s infinite;
}

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

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.btn-primary-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0a1128;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 10;
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .title-main {
        font-size: 56px;
        min-height: 70px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .title-prefix {
        font-size: 24px;
    }

    .title-main {
        font-size: 42px;
        min-height: 55px;
    }

    .hero-description {
        font-size: 15px;
    }

    .btn-primary-new {
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .title-prefix {
        font-size: 20px;
    }

    .title-main {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-description br {
        display: none;
    }

    .tech-stack-visual {
        font-size: 32px;
        gap: 15px;
    }
}
