/* Creative Hero */
.creative-hero {
    padding: 180px 0 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Profile Image Blending Styling */
.hero-side-image .image-wrapper {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    position: relative;
}

.profile-image-container {
    width: 100%;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    mask-image: 
        linear-gradient(to bottom, transparent, black 15%, black 85%, transparent),
        linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-composite: intersect;
    -webkit-mask-image: 
        linear-gradient(to bottom, transparent, black 15%, black 85%, transparent),
        linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-composite: source-in;
}

.profile-image-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.2) grayscale(30%);
    mix-blend-mode: luminosity;
    transition: all 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, var(--bg-dark) 0%, transparent 20%, transparent 80%, var(--bg-dark) 100%),
        linear-gradient(to right, var(--bg-dark) 0%, transparent 20%, transparent 80%, var(--bg-dark) 100%);
    pointer-events: none;
    z-index: 2;
}

.profile-image-container:hover img {
    filter: brightness(1.1) contrast(1.1) grayscale(0%);
    mix-blend-mode: normal;
    transform: scale(1.02);
}

/* Hero Content Styling */
.hero-main-content .tag {
    background: rgba(184, 140, 252, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 25px;
    display: inline-block;
    border: 1px solid rgba(184, 140, 252, 0.2);
    font-family: monospace;
}

.hero-main-content .tag span {
    color: var(--accent-color);
    opacity: 0.8;
}

.hero-main-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-main-content h1 span {
    color: var(--accent-color);
    font-family: monospace;
}

.hero-main-content h1 .brace {
    color: var(--primary-color);
    opacity: 0.6;
    margin: 0 5px;
}

/* Typed Cursor Styling */
.typed-cursor {
    color: var(--primary-color);
    margin-left: 2px;
}

/* Responsive Adjustments */
.hero-main-content .description {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-main-content .description span {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Tech Icons */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .tech-stack {
        justify-content: center;
        gap: 10px;
    }
    
    .tech-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
    }
}

/* Stats Section */
.floating-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-top: 50px;
}
