/* --- Ultra-Sleek Monochromatic Portfolio Styling --- */
:root {
    --bg-color: #ffffff;       /* Crisp, pure white background */
    --text-color: #000000;     /* Solid black */
    --text-muted: #777777;     /* Balanced mid-gray for descriptions */
    --accent-color: #000000;   /* Black accenting */
    --border-color: #e5e5e5;   /* Crisp, light gray lines */
    --font-serif: 'Lora', serif;
    --font-sans: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    padding-top: 100px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: baseline;
}

.logo {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    color: var(--text-color);
}

/* --- Hero Section (Bold Typography) --- */
.hero-section {
    padding: 120px 0;
}

.hero-section h1 {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    max-width: 900px;
}

.subheading {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-top: 32px;
    font-weight: 400;
    max-width: 600px;
}

/* --- Asymmetrical Work Showcase --- */
#work {
    padding-bottom: 120px;
}

.section-label {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    display: inline-block;
    border-bottom: 2px solid var(--text-color);
    padding-bottom: 4px;
}

.creative-work-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.project-card {
    text-decoration: none;
    color: inherit;
    display: block;
    background: #ffffff;
    padding: 44px;
    border-radius: 0px; /* Square edges for a sharper modern look */
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

/* Shift the cards in an asymmetrical pattern */
.project-card:nth-child(even) {
    margin-top: 80px;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--text-color);
}

.project-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.project-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.project-excerpt {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
}

.view-link {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 2px;
}

/* --- Modernized About Section --- */
.about-section {
    padding: 120px 0;
    border-top: 1px solid var(--border-color);
}

.about-content {
    font-size: 1.3rem;
    max-width: 800px;
    color: #111111;
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 30px;
}

/* --- Contact Section --- */
.contact-section {
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.email-btn {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 30px 0;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 3px solid var(--text-color);
    transition: all 0.2s ease;
}

.email-btn:hover {
    opacity: 0.6;
}

.social-links {
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.social-links a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.social-links a:hover {
    color: var(--text-color);
    border-bottom: 1px solid var(--text-color);
} outdoors

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

/* --- Mobile Fixes --- */
@media (max-width: 800px) {
    .creative-work-flow {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-card:nth-child(even) {
        margin-top: 0;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        font-size: 1.1rem;
    }
    
    .email-btn {
        font-size: 1.8rem;
    }
}