/* Minimal Monochrome Global Styles */

:root {
    --color-black: #000000;
    --color-dark-gray: #1a1a1a;
    --color-white: #ffffff;
    --color-light-gray: #f5f5f5;
    --color-border: #e5e5e5;
    --color-text: #000000;
    --color-text-secondary: #666666;
    --color-text-muted: #999999;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--color-white);
    color: var(--color-text);
    line-height: 1.6;
}

/* Links */
a {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-dark-gray);
    text-decoration: underline;
}

/* Buttons - Minimal */
button {
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-black);
    font-weight: 600;
    margin: 0 0 16px 0;
}

/* Paragraphs */
p {
    color: var(--color-text-secondary);
    margin: 0 0 16px 0;
}

/* Inputs */
input, textarea {
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--color-black);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mt-4 {
    margin-top: 16px;
}

.p-8 {
    padding: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}
