
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.ubuntu-mono-regular {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.ubuntu-mono-bold {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.ubuntu-mono-regular-italic {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.ubuntu-mono-bold-italic {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  font-style: italic;
}


 

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

body {
    font-family: 'Ubuntu Mono', Courier, monospace;
    background-color: #0a0a0a;
    color: #e5e5e5;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background-color: #171717;
    border-bottom: 4px solid #262626;
}

.header .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-box {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #171717;
}

.title {
    font-size: 1.5rem;
    color: #555555;
    font-weight: 400;
}

.title span{
    font-size: xx-large;
    color: #fefefe;
    font-weight: 900;
}

.header-description {
    font-size: 0.875rem;
    color: #737373;
    max-width: 42rem;
}

/* Main */
.main {
    padding: 3rem 0;
}

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

@media (min-width: 1024px) {
    .layout {
        grid-template-columns: 2fr 1fr;
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background-color: #171717;
    border: 2px solid #262626;
    padding: 1.5rem;
}

.stat-card-green {
    border-color: #14532d;
}

.stat-card-yellow {
    border-color: #713f12;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.stat-icon {
    color: #525252;
}

.stat-icon-green {
    color: #16a34a;
}

.stat-icon-yellow {
    color: #ca8a04;
}

.stat-label {
    font-size: 0.75rem;
    color: #525252;
}

.stat-label-green {
    color: #16a34a;
}

.stat-label-yellow {
    color: #ca8a04;
}

.stat-value {
    font-size: 1.875rem;
    color: #f5f5f5;
}

.stat-value-green {
    color: #86efac;
}

.stat-value-yellow {
    color: #fde047;
}

/* Filter Section */
.filter-section {
    margin-bottom: 3rem;
}

.filter-label {
    font-size: 0.75rem;
    color: #525252;
    margin-bottom: 1rem;
}

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

.filter-btn {
    padding: 0.75rem 1.5rem;
    font-family: 'Ubuntu Mono', Courier, monospace;
    font-size: 0.875rem;
    border: 2px solid #404040;
    background-color: transparent;
    color: #a3a3a3;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: #737373;
    color: #e5e5e5;
}

.filter-btn.active {
    background-color: #f5f5f5;
    color: #171717;
    border-color: #f5f5f5;
}

/* Projects Section */
.projects-section {
    margin-bottom: 2rem;
}

.projects-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.projects-count {
    font-size: 0.875rem;
    color: #525252;
    white-space: nowrap;
}

.divider {
    height: 1px;
    flex: 1;
    background-color: #262626;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Project Card */
.project-card {
    background-color: #171717;
    border: 4px solid #404040;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    border-color: #737373;
}

.project-image-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #262626;
    position: relative;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.project-card:hover .project-image {
    filter: grayscale(0%);
}

.category-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: #171717;
    border: 2px solid #404040;
    padding: 0.25rem 0.75rem;
}

.category-text {
    font-size: 0.75rem;
    color: #d4d4d4;
}

.status-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    border: 2px solid;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.status-live {
    background-color: #14532d;
    border-color: #16a34a;
}

.status-dev {
    background-color: #713f12;
    border-color: #ca8a04;
}

.status-text-live {
    font-size: 0.75rem;
    color: #86efac;
}

.status-text-dev {
    font-size: 0.75rem;
    color: #fde047;
}

.loader-icon {
    width: 12px;
    height: 12px;
    color: #fde047;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.project-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.project-main {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.terminal-icon {
    width: 20px;
    height: 20px;
    color: #737373;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.project-text {
    flex: 1;
}

.project-title {
    font-size: 1.125rem;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
}

.project-description {
    font-size: 0.875rem;
    color: #a3a3a3;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #262626;
    margin-top: auto;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-icon {
    width: 16px;
    height: 16px;
    color: #525252;
}

.meta-text {
    font-size: 0.75rem;
    color: #737373;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid #262626;
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s;
}

.project-link:hover {
    color: #f5f5f5;
}

.link-icon {
    width: 16px;
    height: 16px;
}

.link-text {
    font-size: 0.75rem;
}

.link-arrow {
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.project-link:hover .link-arrow {
    opacity: 1;
}

/* Sidebar */
.sidebar-sticky {
    position: sticky;
    top: 1.5rem;
}

.bookmarks {
    background-color: #0a0a0a;
    border: 4px solid #262626;
    padding: 1.5rem;
}

.bookmarks-header {
    margin-bottom: 1.5rem;
}

.bookmark-title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #737373;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.bookmarks-title {
    font-size: 1.125rem;
    color: #f5f5f5;
    font-weight: 400;
}

.bookmarks-subtitle {
    font-size: 0.75rem;
    color: #525252;
}

.bookmarks-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bookmark-item {
    background-color: #171717;
    border: 2px solid #262626;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-decoration: none;
    transition: border-color 0.2s;
}

.bookmark-item:hover {
    border-color: #737373;
}

.bookmark-icon-box {
    width: 32px;
    height: 32px;
    background-color: #262626;
    border: 2px solid #404040;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.bookmark-item:hover .bookmark-icon-box {
    border-color: #737373;
}

.bookmark-icon {
    width: 16px;
    height: 16px;
    color: #a3a3a3;
}

.bookmark-content {
    flex: 1;
    min-width: 0;
}

.bookmark-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.bookmark-name {
    font-size: 0.875rem;
    color: #f5f5f5;
    transition: color 0.2s;
}

.bookmark-item:hover .bookmark-name {
    color: #fafafa;
}

.bookmark-external {
    width: 12px;
    height: 12px;
    color: #525252;
    transition: color 0.2s;
}

.bookmark-item:hover .bookmark-external {
    color: #a3a3a3;
}

.bookmark-description {
    font-size: 0.75rem;
    color: #737373;
    transition: color 0.2s;
}

.bookmark-item:hover .bookmark-description {
    color: #a3a3a3;
}

/* Footer */
.footer {
    border-top: 4px solid #262626;
    background-color: #171717;
    margin-top: 5rem;
}

.footer .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-content {
    font-size: 0.75rem;
    color: #525252;
}

.footer-content p:first-child {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 1023px) {
    .sidebar {
        order: -1;
    }
    
    .sidebar-sticky {
        position: static;
    }
}