/* --- FONT FACE DECLARATION --- */
@font-face {
    font-family: 'BoltonSerif';
    src: url('../fonnts.com-bolton_serif_bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* --- CSS VARIABLES & BASIC SETUP --- */
:root {
    --bg: #0a0a0a;
    --surface: #121212;
    --text: #fff;
    --muted: #9aa0a6;
    --gold: #f5b301;
    --outline: rgba(255, 255, 255, .08);
    --navbar-dark-background: #000000;
}

 /* Reset and Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    color-scheme: dark light;
    scroll-behavior: smooth;
}

body {
    background: #000000;
    color: white;
    font-family: 'BoltonSerif', 'Arial', sans-serif;
    overflow-x: hidden;
    
}