@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #141414;
    color: #bfb6b7;
    line-height: 1.6;
    font-size: 14px;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.location {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    color: #685f6e;
}

.time {
    font-weight: 500;
}

.place {
    font-weight: 400;
}

/* Profile Section */
.profile {
    margin-bottom: 80px;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.name {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.username {
    color: #685f6e;
    font-size: 14px;
    margin-bottom: 32px;
}

.bio {
    margin-bottom: 32px;
}

.bio p {
    margin-bottom: 16px;
    color: #bfb6b7;
    line-height: 1.6;
}

.bio strong {
    color: #ffffff;
    font-weight: 600;
}

.highlight {
    color: #685f6e;
    font-style: italic;
}

.action-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #624f92, #432571);
    color: #ffffff;
    border: 1px solid #624f92;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #745b9e, #5a3285);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #bfb6b7;
    border: 1px solid #3c393d;
}

.btn-secondary:hover {
    background: #3c393d;
    color: #ffffff;
    transform: translateY(-1px);
}

.find-me {
    margin-bottom: 20px;
    color: #bfb6b7;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #3c393d;
    border-radius: 6px;
    color: #bfb6b7;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: #3c393d;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Skills Section */
.skills {
    margin-bottom: 80px;
}

.skills h2 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.sub-text {
    color: #685f6e;
    font-weight: 400;
    font-size: 16px;
}

.skills-desc {
    color: #bfb6b7;
    margin-bottom: 40px;
    line-height: 1.6;
}

.skill-category {
    margin-bottom: 32px;
}

.skill-category h3 {
    color: #685f6e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.skill-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.skill-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #1a1a1a;
    border: 1px solid #3c393d;
    border-radius: 6px;
    font-size: 13px;
    color: #bfb6b7;
    transition: all 0.2s ease;
}

.skill-badge:hover {
    background: #2a2a2a;
    border-color: #4a474b;
    transform: translateY(-1px);
}

.skill-badge img {
    width: 16px;
    height: 16px;
}

/* Projects Section */
.projects {
    margin-bottom: 80px;
}

.projects h2 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 600;
}

.project-category {
    margin-bottom: 40px;
}

.project-category h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
}

.project-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid #3c393d;
    border-radius: 12px;
    transition: all 0.2s ease;
    align-items: flex-start;
}

.project-item:hover {
    background: #222;
    border-color: #4a474b;
    transform: translateY(-2px);
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.project-image {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.project-content {
    flex: 1;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.project-content h4 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-content p {
    color: #bfb6b7;
    font-size: 14px;
    line-height: 1.5;
}

.project-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    background: #60a484;
    color: #1b392b;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.badge-sponsored {
    background: #395d59;
    color: #60a484;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Blog Section */
.blog {
    margin-bottom: 80px;
}

.blog h2 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
}

.blog-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-link {
    color: #bfb6b7;
    text-decoration: none;
    padding: 16px 20px;
    background: #1a1a1a;
    border: 1px solid #3c393d;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.blog-link:hover {
    background: #222;
    color: #ffffff;
    border-color: #4a474b;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #3c393d;
}

.footer-brand {
    color: #624f92;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-text {
    color: #685f6e;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-copyright {
    color: #685f6e;
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-link {
    color: #685f6e;
    font-size: 12px;
}

.footer-link a {
    color: #bfb6b7;
    text-decoration: none;
}

.footer-link a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 640px) {
    .container {
        padding: 20px 16px;
    }

    .header {
        margin-bottom: 40px;
    }

    .location {
        font-size: 12px;
    }

    .name {
        font-size: 28px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .project-item {
        flex-direction: column;
        text-align: center;
    }

    .project-image {
        width: 100%;
        height: 160px;
        margin: 0 auto;
    }

    .project-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .skill-badges {
        justify-content: center;
    }
}

/* Existing media query updated for small mobile screens */
@media (max-width: 480px) {
    .skills h2,
    .projects h2,
    .blog h2 {
        font-size: 18px;
    }
    
    .project-category h3 {
        font-size: 16px;
    }
    
    body {
        font-size: 10px;
    }
    
    /* .project-image {
        height: 100px;
    } */
    
    .profile-pic {
        width: 60px;
        height: 60px;
    }
}

/* .project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
} */