/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Content */
main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

/* Projects Grid */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.project-card {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.project-card .content {
    padding: 1.5rem;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-card h3 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 25px;
    font-weight: 500; /* Medium */
    letter-spacing: normal; /* Changed to auto/normal */
    margin-bottom: 0.5rem;
    text-align: left;
    width: 100%;
}

.project-card time {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    text-align: left;
    width: 100%;
    margin-top: 1rem; /* Add space above the date */
}

.project-card p {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #666;
    text-align: left;
    width: 100%;
    margin-bottom: 0; /* Remove bottom margin since date will have top margin */
}

/* Footer Styles */
footer {
    width: 100%;
    padding: 2rem;
    text-align: center;
    margin-top: auto;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.copyright {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
:focus {
    outline: 2px solid #333;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #333;
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Add these styles for the header */
header {
    padding: 4rem 2rem;
    text-align: center;
}

header h1 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 40px;
    font-weight: 500; /* Medium */
    letter-spacing: normal;
    color: #3c3c3c;
    margin: 0;
} 