/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.site-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.nav-brand {
    margin-right: 2rem; /* Add spacing between brand and links */
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

/* Main Content */
.main-content {
    flex: 1;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.highlight {
    color: #2563eb;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.profile-placeholder {
    text-align: center;
}

.profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;  /* This is what makes it circular */
}

.about-profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f8fafc;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 3rem;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
}

.skills-area h3 {
    color: #111827;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.skill-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-category h4 {
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill {
    background: #e5e7eb;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Recent Section */
.recent-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.recent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.recent-section h3 {
    color: #111827;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.post-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.post-preview h4 {
    margin-bottom: 0.5rem;
}

.post-preview h4 a {
    color: #111827;
    text-decoration: none;
}

.post-preview h4 a:hover {
    color: #2563eb;
}

.post-meta {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.categories {
    display: flex;
    gap: 0.5rem;
}

.category {
    background: #dbeafe;
    color: #2563eb;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
}

.project-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.project-preview h4 a {
    color: #111827;
    text-decoration: none;
}

.project-preview h4 a:hover {
    color: #2563eb;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.tech {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
}

.view-all {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.view-all:hover {
    text-decoration: underline;
}

/* Consistent Badge Styles */
.badge-ai { 
    background: #fecaca; 
    color: #dc2626; 
}

.badge-tool { 
    background: #dcfce7; 
    color: #166534; 
}

.badge-game { 
    background: #fed7aa; 
    color: #ea580c; 
}

.badge-template { 
    background: #dbeafe; 
    color: #1e40af; 
}

.badge-video { 
    background: #fde68a; 
    color: #92400e; 
}

.badge-blog-post { 
    background: #e0e7ff; 
    color: #5b21b6; 
}

.badge-blue { 
    background: #dbeafe; 
    color: #1e40af; 
}

.badge-green { 
    background: #dcfce7; 
    color: #166534; 
}

.badge-purple { 
    background: #e0e7ff; 
    color: #5b21b6; 
}

.badge-orange { 
    background: #fed7aa; 
    color: #ea580c; 
}

.badge-red { 
    background: #fecaca; 
    color: #dc2626; 
}

/* Blog post category badges */
.category-tech { 
    background: #dbeafe; 
    color: #1e40af; 
}

.category-economics { 
    background: #dcfce7; 
    color: #166534; 
}

.category-fitness { 
    background: #fecaca; 
    color: #dc2626; 
}

.category-general { 
    background: #f3f4f6; 
    color: #374151; 
}

/* Footer */
.site-footer {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #6b7280;
    text-decoration: none;
}

.social-links a:hover {
    color: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about-grid,
    .recent-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}