:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-red: #e63946;
    --secondary-black: #1a1a1a;
    --light-gray: #f4f4f4;
    --transition: all 0.3s ease;
}

/* FIX: Changed selector to match JS class */
body.dark-mode {
    --bg-color: #121212;
    --text-color: #ffffff;
    --light-gray: #1e1e1e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: var(--transition);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- FORCE DARK MODE STYLES --- */
/* This ensures everything turns black/white correctly */

body.dark-mode {
    background-color: #121212 !important;
    color: #ffffff !important;
}

body.dark-mode .main-header {
    background-color: #1a1a1a !important;
    border-bottom: 1px solid #333;
}

body.dark-mode .footer-col ul li a,
body.dark-mode p {
    color: #cccccc;
}

body.dark-mode input, 
body.dark-mode textarea,
body.dark-mode select {
    background-color: #2c2c2c !important;
    color: #fff !important;
    border: 1px solid #444;
}

body.dark-mode .mobile-drawer {
    background-color: #121212 !important;
}