
body {
    margin: 0;
    font-family: 'Arial Narrow';
    background-color: #000000;
    color: #fff;
    height: 100%;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 200px;
    background-color: #191919;
    display: flex;
    flex-direction: column; 
    justify-content: space-between; 
    padding: 10px 0; 
}

.sidebar ul {
    margin: 0;
    padding: 0;
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-bottom: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    object-fit: contain; 
}

.social-icon:hover {
    transform: scale(1.2); 
    cursor: pointer;
}

.sidebar li {
    margin: 20px 0;
    text-align: center;
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    font-family: 'VT323', monospace;
    font-size: 24px;
}

.sidebar a:hover {
    color: #e6a8f6;
}

.sidebar .tab.active a {
    color: #e6a8f6;
}
.sidebar a:hover {
    color: #e6a8f6;
}

.top-tab {
    position: fixed;
    top: 0;
    left: 200px;
    height: 30px;
    width: 120px;
    background-color: #1e1e1e;
    color: #fff;
    font-family: 'VT323', monospace;
    font-size: 20px;
    z-index: 9;
    text-align: center;
    line-height: 30px;
    border-radius: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.top-tab span {
    text-transform: capitalize;
    color: #e6a8f6;
}


.projects-container {
    margin-left: 250px; 
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(390px, 1fr)); /* https://css-tricks.com/auto-sizing-columns-css-grid-auto-fill-vs-auto-fit/ */
    gap: 10px;
    padding: 20px;
}



.project-card {
    background-color: #292929;
    border-radius: 10px;
    text-align: left; 
    margin-top: 50px;
    margin-left: 0;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    width: 380px; 
    height: 460px; 
    display: flex;
    flex-direction: column;
}

.project-card img {
    width: 100%;
    height: 225px; 
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 0px;
}

.project-card h4 {
    font-family: 'Open Sans', sans-serif; 
    margin-top: 18px;
    margin-bottom: 5px; 
    font-size: 20px; 
    color: #B5B5B5;
}


.project-card p {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif; 
    color: #B5B5B5;
    margin-top: 10px;
    padding-right: 10px;
    text-align: justify; 
}

.projects-container, .project-card, .project-card * {
    margin-right: 0;   
}
.project-link {
    text-decoration: none; 
    color: inherit;        
}

.project-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
}

.project-buttons a {
    margin-bottom: 0.8rem; 
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s ease;

}

.btn-live {
    background-color: #e6a8f6;
    color: white;
}

.btn-live:hover {
    background-color: #e6a8f6;
}

.btn-journey {
    background-color: transparent;
    color:#e6a8f6;
    border: 2px solid #e6a8f6;
}

.btn-journey:hover {
    background-color: #e6a8f6;
    color: white;
}