/* index.css – global styles & theme tokens */

:root {
    --gold: #f7c948;
    --gold-soft: #ffe08a;
    --offblack: #0b0b0d;
    --offblack-soft: #18181d;
    --offwhite: #f7f7f9;
    --offwhite-soft: #e4e4ec;
    --accent: #ffdd75;
    --danger: #ff4d4f;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
    --shadow-subtle: 0 10px 25px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.18s ease-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--offblack);
    color: var(--offwhite);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

/* Utility */

.section-padding {
    padding: 4rem clamp(1.5rem, 3vw, 3.5rem);
}

@media (max-width: 768px) {
    .section-padding {
        padding-inline: 1.25rem;
    }
}

a {
    color: var(--gold-soft);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    font-family: inherit;
}

/* Focus states */

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}
