/* Color Variables */
:root {
    --primary: #1A1A1A;
    --secondary: #404040;
    --accent: #E67E22;
    --bg: #FAFAFA;
    --light-gray: #F5F5F5;
    --medium-gray: #CCCCCC;
    --success: #27AE60;
    --error: #E74C3C;
    --warning: #F39C12;
    --card-bg: #FFFFFF;
    --footer-bg: #1A1A1A;
}

.dark {
    /* Slate Palette for Premium Dark Mode */
    --bg: #0f172a;
    /* Slate 900 */
    --primary: #f8fafc;
    /* Slate 50 */
    --secondary: #cbd5e1;
    /* Slate 300 */
    --light-gray: #1e293b;
    /* Slate 800 */
    --medium-gray: #475569;
    /* Slate 600 */
    --card-bg: #1e293b;
    /* Slate 800 */
    --footer-bg: #020617;
    /* Slate 950 */

    /* Keep accent but ensure it pops */
    --accent: #E67E22;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
.font-display {
    font-family: 'Montserrat', sans-serif;
}

.font-accent {
    font-family: 'Playfair Display', serif;
}

.text-accent {
    color: var(--accent);
}

.bg-accent {
    background-color: var(--accent);
}

.border-accent {
    border-color: var(--accent);
}

/* Common Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}