
/* Base styles */
@import url('https://fonts.googleapis.com/css2?family=PT+Mono&display=swap');
/* Import Font Awesome CSS */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 80vw;
    padding: 2rem;
    font-size: 1rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

header p {
    color: #4b5563;
}

ul {
    list-style-type: disc;
    margin-bottom: 1rem;
    margin-left: 0rem;
    display: inline-block;
  }

ul li::before {
    /*content: '•'; 
    font-size: 24px; /* Set font size */
    margin: 0 0.5rem;
    color: rgb(135, 135, 135); /* Set bullet color */
} 

li {
    margin-left: 1rem;
}

.sec {
    /* border: solid 1px black;
    font-weight: 300;
    font-size: 18px;
    padding: 1rem; */
    color: #aeafb1;
}

.sec:hover {
    color: #333;
}
/* Tab Navigation */
.tabs {
    display: flex;
    /* justify-content: center; */
    /* background: white; */
    padding: 1rem;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
    /* position: sticky; */
    top: 0;
    z-index: 100;
}

.tab-btn {
    padding: 12px 24px;
    margin: 0 8px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* height: 2px; */
    color: white;
    background-color: black;
    border-radius: 36px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: white;
    background-color: black;
    border-radius: 36px;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

/* Content Sections */
.content-section {
    display: none;
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Skills Description */
.description {
    margin: 1rem 0 2rem 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Categories */
.category {
    margin: 40px 0;
}

.category-title {
    font-size: 24px;
    color: #333;
    /* margin-left: 1rem; */
    margin: 1rem 0;
    /*padding-bottom: 10px;
    border-bottom: 2px solid #caced1; */
}

/* Project Cards Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    gap: 1.5rem;
    /* margin-top: 20px; */
    /* background-color: white; */
    /* padding: 1rem; */
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

/* Project Card */
.project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 20px;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.project-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tech-tag {
    padding: 4px 8px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

.project-link {
    display: inline-block;
    padding: 8px 16px;
    background: #007AFF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease;
}

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

.project-links a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

.project-links a:hover {
    color: #111827;
}

.project-links svg {
    width: 18px;
    height: 18px;
}

.project-link:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* .tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .content-section {
        padding: 20px 10px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    } */
    body {
        padding: 1rem;
        margin-top: 0rem;
        max-width: 100vw;
        }

}