/* 1. FRESH FOREST PALETTE */
:root {
    --light-moss: #e8f3e9;   
    --soft-leaf: #a3c5a9;    
    --deep-forest: #2f3e33;  
    --accent-sage: #7da084;  
    --pure-white: #ffffff;
}

body {
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    background-color: var(--light-moss);
    color: var(--deep-forest);
    margin: 0;
}

/* 2. AIRY TEXT-ONLY HEADER */
header {
    background-color: var(--soft-leaf);
    padding: 3rem 1rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-sage);
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--deep-forest);
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Using a subtle white glow instead of a dark shadow to keep it airy */
    text-shadow: 2px 2px 0px var(--pure-white);
}

.tagline {
    font-size: 14px;
    margin-top: 10px;
    color: var(--deep-forest);
    opacity: 0.9;
    letter-spacing: 1px;
}

/* 3. NAVIGATION */
nav {
    background: var(--deep-forest);
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 12px;
}

nav a {
    color: var(--light-moss);
    text-decoration: none;
    font-size: 13px;
    font-variant: small-caps;
}

nav a:hover {
    color: var(--pure-white);
    text-decoration: underline;
}

/* 4. REFINED CARDS (Less Boxy) */
.project-card, .sidebar-box, .hero {
    background: var(--pure-white);
    padding: 25px;
    margin-bottom: 25px;
    border: 1.5px solid var(--accent-sage);
    border-radius: 12px; /* Increased rounding for a softer feel */
    box-shadow: 4px 4px 0px 0px rgba(125, 160, 132, 0.15);
}

/* Rest of your layout code remains the same... */