/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.85), rgba(30, 58, 138, 0.75)),
                url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: floatingElement 15s infinite linear;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.profile-container {
    width: 300px;
    height: 300px;
    position: relative;
    flex-shrink: 0;
    animation: float 6s ease-in-out infinite;
}

.profile-glow {
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.2;
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
}

.profile-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-glow-lg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.profile-container:hover .profile-img {
    filter: grayscale(0%);
}

.hero-text {
    flex: 1;
    color: var(--primary-foreground);
    animation: slideInRight 0.8s ease-out forwards;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    top: 0;
    left: -100%;
    animation: shine 3s infinite;
}

.hero-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.4s;
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .profile-container {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .profile-container {
        width: 180px;
        height: 180px;
    }

    .hero-btns {
        flex-direction: column;
    }
}