/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #f4f7f8;
    color: #333;
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

/* Header */
.site-header {
    text-align: center;
    margin-bottom: 3rem;
}

.site-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    color: #666;
    font-size: 1.1rem;
}

.contact-links {
    margin-top: 0.5em;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    font-size: 0.95em;
}

.contact-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.contact-links a:hover {
    text-decoration: underline;
}

.project-link .project-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-link .project-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Projects grid: side-by-side layout */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    padding: 0 3vw;
    margin: 0 auto;
    max-width: 1400px;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.project-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.project-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Make entire card clickable */
.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Footer */
.site-footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #777;
}

.site-footer a {
    color: #007acc;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.none {
    text-decoration: none;
    color: inherit;
}