/* Hero Section */
.hero-content {
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.hero-name {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-function {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-intro-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.quick-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bs-body-bg);
    border-radius: var(--bs-border-radius-lg);
    border: 1px solid var(--bs-border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.quick-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.quick-stat-label {
    font-size: 0.8rem;
    color: var(--bs-secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Tech Stack Badges */
.tech-stack-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-pill);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bs-secondary-color);
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.tech-badge:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Tech Stack Carousel - Auto-scrolling infinite carousel */
.tech-stack-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.tech-stack-track {
    gap: 0.75rem;
    display: flex;
    padding: .25rem;
    width: max-content;
    animation: tech-stack-scroll 45s linear infinite;
}

.tech-stack-carousel:hover .tech-stack-track {
    animation-play-state: paused;
}

@keyframes tech-stack-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA Banner */
.cta-banner {
    background: var(--primary-gradient);
    border-radius: var(--bs-border-radius-xl, 1.5rem);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: white;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 450px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-banner .btn-modern {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.cta-banner .btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
