/* Home page specific styles */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-lg) 0;
}

.hero-content h1 {
    font-size: var(--font-4xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    line-height: var(--line-height-tight);
    color: var(--text-color);
}

.hero-subtitle {
    font-size: var(--font-xl);
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.hero-description {
    font-size: var(--font-md);
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-lg);
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    align-items: center;
}

.hero-buttons .btn {
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: var(--font-base);
    font-weight: var(--font-weight-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.hero-buttons .btn svg {
    flex-shrink: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Highlight cards */
.highlight-card {
    background: var(--bg-alt);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: none;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    font-size: var(--font-4xl);
    margin-bottom: var(--spacing-md);
}

.highlight-card h3 {
    font-size: var(--font-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.highlight-card p {
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-sm);
}

/* Skills Section Styles */
.skills-section {
    max-width: 900px;
    margin: 0 auto;
}

.skills-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    padding: 0;
}

.skill-pill {
    background: var(--bg-alt);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-color);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    cursor: default;
    border: none;
}

.skill-pill:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.2);
}

/* Section Styling */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    text-align: center;
    font-size: var(--font-3xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .profile-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-description {
        max-width: 100%;
    }

    .profile-image {
        width: 220px;
        height: 220px;
    }

    .highlight-card {
        padding: var(--spacing-lg);
    }

    .skills-pills {
        gap: 0.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .highlight-card {
        padding: var(--spacing-md);
    }
    
    .highlight-icon {
        font-size: var(--font-3xl);
    }
    
    .skill-pill {
        padding: 0.6rem 1.2rem;
    }
}
