/* Hero Component Styles */

/* Modern Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 180px 0 120px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-sm);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary-blue);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.01em;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    color: var(--text-secondary);
    font-weight: var(--font-weight-normal);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 18px 36px;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.05); opacity: 0.05; }
}

.profile-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--white);
    background-color: var(--white);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-slow);
    position: relative;
    z-index: 2;
}

.profile-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 80px rgba(0, 102, 204, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .profile-photo {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 0.95rem;
    }
    
    .profile-photo {
        width: 250px;
        height: 250px;
    }
}

/* Focus states for accessibility */
.btn:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-image::before {
        animation: none;
    }
    
    .profile-photo {
        transition: none;
    }
    
    .btn {
        transition: none;
    }
    
    .btn::before {
        transition: none;
    }
}

/* Print styles */
@media print {
    .hero {
        background: none;
        padding: 2rem 0;
        margin-top: 0;
    }
    
    .hero-image::before {
        display: none;
    }
    
    .profile-photo {
        width: 200px;
        height: 200px;
        box-shadow: none;
    }
} 