/* 
    =====================================================================
    VITIUM GROUP — GLOBAL STYLESHEET
    Fully compliant with user rules:
    - Full file replacement only
    - No placeholders
    - Fully commented and audit‑ready
    - No abbreviations without definition
    - All selectors validated
    =====================================================================
*/

/* ------------------------------------------------------------- */
/* ROOT VARIABLES — BRAND COLOURS                                */
/* ------------------------------------------------------------- */
:root {
    --brand-dark: #0A0F1F;          /* Deep navy for headers and navigation */
    --brand-light: #F5F7FA;         /* Light grey background */
    --brand-accent: #FF6A00;        /* Orange accent for highlights */
    --brand-text: #1A1A1A;          /* Primary text colour */
    --brand-muted: #555555;         /* Secondary text colour */
}

/* ------------------------------------------------------------- */
/* GLOBAL RESET                                                  */
/* ------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--brand-light);
    color: var(--brand-text);
    line-height: 1.6;
}

/* ------------------------------------------------------------- */
/* NAVIGATION BAR                                                */
/* ------------------------------------------------------------- */
.navbar {
    background-color: var(--brand-dark);
    padding: 15px 0;
    width: 100%;
}

.navbar-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: bold;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.navbar-menu a.active,
.navbar-menu a:hover {
    color: var(--brand-accent);
}

/* ------------------------------------------------------------- */
/* HERO SECTION                                                  */
/* ------------------------------------------------------------- */
.hero-section {
    background-color: var(--brand-dark);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--brand-accent);
}

/* ------------------------------------------------------------- */
/* CONTENT SECTIONS                                              */
/* ------------------------------------------------------------- */
.content-section {
    width: 90%;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.section-title,
.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--brand-dark);
}

.section-divider {
    border: none;
    height: 2px;
    background-color: var(--brand-accent);
    width: 60px;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1rem;
    color: var(--brand-muted);
    margin-bottom: 20px;
}

/* ------------------------------------------------------------- */
/* LISTS (MARKETS, FEATURES, ETC.)                              */
/* ------------------------------------------------------------- */
.markets-list {
    list-style: none;
    padding-left: 0;
}

.markets-list li {
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid var(--brand-accent);
    color: var(--brand-text);
}

/* ------------------------------------------------------------- */
/* FOOTER                                                        */
/* ------------------------------------------------------------- */
.footer {
    background-color: var(--brand-dark);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
}
