/* --- Base Styles & Variables --- */
:root {
    --bg-color: #faf9f6;       /* Soft cream white */
    --text-color: #222222;     /* Off-black */
    --accent-color: #ff6b6b;   /* Playful coral pink/red */
    --border-color: #e0deda;   /* Subtle divider lines */
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-stack);
    line-height: 1.6;
    padding: 2rem 1rem;
}

/* --- Layout Container --- */
.main-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Header & Nav --- */
.site-header {
    max-width: 1100px;
    margin: 0 auto 4rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--text-color);
}

.logo a {
    font-weight: 800;
    font-size: 1.3rem;
    text-decoration: none;
    color: var(--text-color);
}

.site-nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--accent-color);
}

/* --- Intro --- */
.intro {
    margin-bottom: 4rem;
    max-width: 700px;
}

.intro h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

/* --- Content Split (Gallery + Blog) --- */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Work Grid --- */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    background: transparent;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #ededed;
    border: 2px solid var(--text-color);
    border-radius: 8px; /* Slightly soft corners for a fun feel */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    margin-bottom: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Fun subtle hover effect for images */
.project-card:hover .image-placeholder {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0px var(--text-color);
}

.project-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

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

/* --- Updates / Blog Feed --- */
.updates-feed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.update-post {
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.update-post:last-child {
    border-bottom: none;
}

.post-date {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--accent-color);
}

.update-post h3 {
    font-size: 1.1rem;
    margin: 0.25rem 0 0.5rem 0;
}

.update-post p {
    font-size: 0.95rem;
    color: #333;
}

/* --- About Section --- */
.about-section {
    padding: 3rem 0;
    border-top: 2px solid var(--text-color);
}

.about-section a {
    color: var(--text-color);
    font-weight: bold;
    text-decoration-color: var(--accent-color);
    text-decoration-thickness: 2px;
}

.about-section a:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}