/* Minimalist Modern Design Styles */
:root {
    --md-bg-color: #fafaf9;
    --md-text-color: #3f3f46;
    --md-text-muted: #71717a;
    --md-border-color: #e4e4e7;
    --md-accent-color: #18181b;
}

body {
    background-color: var(--md-bg-color);
    color: var(--md-text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--md-accent-color);
    font-weight: 600;
    margin-bottom: 0.6em;
    letter-spacing: -0.02em;
}

a {
    color: var(--md-accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

a:hover {
    border-bottom-color: var(--md-accent-color);
}

/* Minimalist Card Utility */
.minimalist-card {
    background: #ffffff;
    border: 1px solid var(--md-border-color);
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.minimalist-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

/* Minimalist Button Utility */
.minimalist-button {
    display: inline-block;
    background-color: var(--md-accent-color);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    border: 1px solid var(--md-accent-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.minimalist-button:hover {
    background-color: transparent;
    color: var(--md-accent-color);
}
