/* ===== LIMETIME AUTO — DESIGN SYSTEM ===== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Colours */
    --navy: #264889;
    --green: #01BF63;
    --green-text: #04342C;
    --white: #FFFFFF;
    --card-bg: #F7F8FA;
    --text-dark: #2C2C2A;
    --text-grey: #5F5E5A;
    --border: #E3E4E8;

    /* Spacing */
    --radius: 10px;
    --gap-sm: 8px;
    --gap-md: 16px;
    --gap-lg: 32px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--navy);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 20px;
}

p {
    color: var(--text-grey);
}

a {
    color: var(--navy);
    text-decoration: none;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--green);
    color: var(--green-text);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: var(--radius);
    padding: 14px 28px;
    text-align: center;
    cursor: pointer;
}

.btn-primary:active {
    transform: scale(0.98);
}

/* ===== CARDS ===== */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--gap-md);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAV (placeholder — we'll expand this next) ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== NAV — MOBILE HAMBURGER ===== */
.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: var(--gap-md) 20px;
    gap: var(--gap-md);
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--navy);
    border-radius: 2px;
}

.navbar {
    position: relative;
}

/* Desktop — show links inline, hide hamburger */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        border: none;
        padding: 0;
        gap: var(--gap-lg);
    }
}