/* Notion-like Styles */

:root {
    --bg-color: #ffffff;
    --text-color: #37352f;
    --gray-bg: #f7f7f5;
    --border-color: #e9e9e7;
    --hover-bg: #efefef;
    --primary-blue: #0f172a; /* Keeping brand navy */
    --gold-accent: #d4af37; /* Keeping brand gold */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif; /* Keeping prestigious feel */
    font-weight: 700;
    line-height: 1.2;
    color: #111;
}

/* Notion-style Button */
.btn-notion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
    color: white;
    padding: 8px 16px;
    border-radius: 4px; /* Slightly rounded */
    font-weight: 500;
    transition: background-color 0.2s ease;
    border: 1px solid transparent;
}

.btn-notion:hover {
    background-color: #333;
}

.btn-notion-secondary {
    background-color: transparent;
    color: #37352f;
    border: 1px solid #d4d4d4;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-notion-secondary:hover {
    background-color: var(--gray-bg);
}

.btn-large {
    padding: 12px 24px;
    font-size: 1.1rem;
}

/* Cards */
.notion-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 24px;
    transition: box-shadow 0.2s ease;
}

.notion-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: #d4d4d4;
}

/* Forms */
.notion-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    color: var(--text-color);
    background: var(--gray-bg);
    transition: border-color 0.2s, background 0.2s;
}

.notion-input:focus {
    outline: none;
    border-color: #a0a0a0;
    background: white;
}

/* Radio Button Selection Cards */
.radio-card-label {
    cursor: pointer;
    display: block;
}

.radio-card-input {
    display: none;
}

.radio-card-content {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.2s;
}

.radio-card-input:checked + .radio-card-content {
    border-color: var(--gold-accent);
    background-color: #fffbf0; /* Very light gold tint */
}

/* File Upload Dropzone */
.file-dropzone {
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    background-color: var(--gray-bg);
    cursor: pointer;
    transition: all 0.2s;
}

.file-dropzone:hover {
    border-color: #999;
    background-color: #efefef;
}

/* Checkbox */
.custom-checkbox {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 2px solid currentColor;
    border-radius: 0.15em;
    display: grid;
    place-content: center;
}

.custom-checkbox::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--gold-accent);
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.custom-checkbox:checked::before {
    transform: scale(1);
}

/* Navigation */
.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.nav-link:hover {
    background-color: var(--gray-bg);
}

/* Typography Overrides */
.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Illustration Containers */
.ink-illustration {
    mix-blend-mode: multiply; /* Helps integrate white background images */
    display: block;
    margin: 0 auto;
}
