/* Museum The Silicates - Global Styles */

:root {
    --notion-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    --text-main: #37352f;
    --text-subtle: rgba(55, 53, 47, 0.65);
    --border-color: rgba(55, 53, 47, 0.16);
    --accent-bg: #f7f6f3;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--notion-font);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    background: #ffffff;
}

.page-container {
    width: 100%;
    max-width: 900px;
    padding: 80px 40px;
}

/* --- Navigation & Breadcrumbs --- */
.breadcrumb {
    font-size: 14px;
    color: var(--text-subtle);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--text-subtle);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.breadcrumb a:hover {
    color: var(--text-main);
    border-bottom-color: var(--text-subtle);
}

/* --- Typography --- */
h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.intro-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

hr {
    border: none;
    border-bottom: 1px solid var(--border-color);
    margin: 20px 0;
}

/* --- Properties Table (Used in Projects) --- */
.properties {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.property-row {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
}

.property-label {
    width: 160px;
    color: var(--text-subtle);
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-value {
    flex: 1;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag {
    background: #efefef;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}

/* --- Index Page Components --- */
.title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.main-logo {
    width: 48px;
    height: 48px;
    border-radius: 4px;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin: 40px 0;
}

.project-card {
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-card:hover {
    background: var(--accent-bg);
}

.project-card.empty {
    border-style: dashed;
    color: var(--text-subtle);
    pointer-events: none;
}

/* --- Footer --- */
footer {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-subtle);
    line-height: 1.6;
}
