
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #212529;
}


#app {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}


.project-section {
    margin-bottom: 4rem;
}

header {
    background-color: #222; 
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #444;
}

header h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
}

header p {
    color: #dddddd;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}



.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}


.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}


.project-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}


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


.project-info {
    padding: 1rem; 
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}


.project-title {
    font-size: 1.15rem; 
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #343a40;
}


.project-description {
    font-size: 0.9rem; 
    line-height: 1.5;
    color: #6c757d;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}


.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #414345;
    color: #ffffff;
    border-radius: 50px; 
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 450;
    transition: background-color 0.2s, transform 0.2s;
    margin-top: auto;
    align-self: flex-start;
}

.project-link:hover {
    transform: translateY(-2px);
}


.project-link-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px; 
}



footer {
    background-color: #f1f3f5;
    color: #495057;            
    padding: 2rem 0;
    border-top: 1px solid #dee2e6;
    text-align: center;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}