/* =======================================================================
 *    main.css – Global variables and reset styles
 * ======================================================================= */

/* --------------------------------------------------------------------
 *    1. GLOBAL VARIABLES
 * -------------------------------------------------------------------- */
:root {
    --bg-dark: #1a1a1a;
    --bg-light: #ffffff;
    --accent: #ff5e00;
    --text-light: #fff;
    --text-dark: #333;
    --text-secondary: #ccc;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --trans: 0.3s ease;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem; /* Consistent left/right padding */
}

/* --------------------------------------------------------------------
 *    2. RESET & BASIC STYLES
 * -------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --------------------------------------------------------------------
 *    3. WRAPPER
 * -------------------------------------------------------------------- */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
