:root {
    /* Colors */
    --primary-color: #e63946;    /* Red for accents */
    --secondary-color: #1d3557;  /* Deep Blue/Charcoal */
    --bg-dark: #0b0b0d;          /* Main Background */
    --bg-light: #18181b;         /* Section Background */
    --text-main: #f8f9fa;        /* Main Text Color */
    --text-muted: #adb5bd;       /* Subtitles/Muted Text */
    --accent-gold: #c7a44a;      /* Awards/Gold Accents */
    
    /* Fonts */
    --font-header: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 5%;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
}

/* Base Light Theme Toggle (Optional for later) */
body.light-mode {
    --bg-dark: #f8f9fa;
    --bg-light: #ffffff;
    --text-main: #212529;
    --text-muted: #6c757d;
}
