/* 
    Blelec Charging Station - Base Styles
    Variables, Reset, and Global Typography
*/

:root {
    --primary: #003366;
    --primary-light: #004d99;
    --accent: #2ecc71;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    --gradient: linear-gradient(135deg, #003366 0%, #004d99 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-left { text-align: left; }
.text-white { color: var(--white); }
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text; /* Fixed lint error */
    -webkit-text-fill-color: transparent;
}
