/**
 * Twilight Design System
 * Base styles and typography variables.
 */

:root {
    /* Default Variables (will be overridden by Customizer) */
    --primary-color: #0a2342;
    --secondary-color: #c4a870;
    --text-color: #333333;
    --background-color: #ffffff;
    
    --font-heading: 'Garamond', serif;
    --font-body: 'Helvetica', Arial, sans-serif;
    
    --font-size-desktop: 16px;
    --font-size-mobile: 14px;

    --spacing-unit: 1.5rem;
    --border-radius: 4px;
}

/* --- Base Reset & Typography --- */

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: var(--font-size-desktop);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }

/* Paragraphs */
p {
    margin-bottom: var(--spacing-unit);
}

/* Lists */
ul, ol {
    margin-bottom: var(--spacing-unit);
    padding-left: 1.5rem;
}

ul li, ol li {
    margin-bottom: 0.5rem;
    position: relative;
}

/* Custom Bullet for UL */
ul {
    list-style: none;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover, a:focus {
    color: var(--secondary-color);
}

/* --- Responsive Typography --- */

@media (max-width: 768px) {
    body {
        font-size: var(--font-size-mobile);
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
}