/* Design System for Matt Can Chilli */
:root {
    --khaki-green: #2d3e30; /* Darker khaki from the shirt/background */
    --light-khaki: #4a5d4c;
    --chilli-red: #b32d1e;
    --mustard-yellow: #eeb03b; /* From the text outline */
    --off-white: #f4f1ea;
    --dark-text: #1a1a1a;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--off-white);
    color: var(--dark-text);
    line-height: 1.6;
}

header {
    background-color: var(--khaki-green);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--mustard-yellow);
}

.logo-small {
    height: 50px;
}

main {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

/* Landing Page Specific */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--khaki-green);
    margin-bottom: 1.5rem;
}

.blurb {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-khaki);
}

/* Content Pages */
.content-section {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-left: 5px solid var(--chilli-red);
}

h2 {
    font-family: var(--font-heading);
    color: var(--khaki-green);
    margin-bottom: 2rem;
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item a {
    color: var(--chilli-red);
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 3rem;
    background-color: var(--khaki-green);
    color: var(--off-white);
    margin-top: 4rem;
}

.social-link {
    color: var(--mustard-yellow);
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    .nav-links a {
        font-size: 0.8rem;
    }
    .content-section {
        padding: 1.5rem;
    }
}
