:root {
    --deep-navy: #05204a;
    --dark-slate: #2c3e50;
    --bright-blue: #2980b9;
    --light-gray: #ecf0f1;
    --silver: #bdc3c7;
    --strong-red: #ff3333;
    --deep-red: #e61f1f;
    --vibrant-green: #28a745;
    --almost-white: #f0f8ff;
    --darkish-yellow: #d4af37; }

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

body {
    font-family: Calibri, 'Trebuchet MS', sans-serif;
    background-color: var(--almost-white);
    color: var(--dark-slate);
}

header,
footer {
    text-align: center;
    position: fixed;
}

header {
    top: 0;
    width: 100vw;
    height: 80px;
    background-color: var(--deep-navy);
    color: var(--almost-white);
    box-shadow: 0 1px 3px var(--dark-slate);
    z-index: 100;
}

.navbar {
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    max-height: 80px;
}

.navbar-bluebudget {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 44px;
}

.navbar-right {
    display: flex;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 32px;
    padding: 0 32px;
    margin: 0;
}

.navbar a {
    color: var(--almost-white);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.navbar a:hover {
    color: var(--bright-blue);
}

main {
    padding: 100px 2rem 60px;
    margin: 0 auto;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    width: 100vw;
    height: 40px;
    background-color: var(--silver);
    color: var(--dark-slate);
    box-shadow: 0 -0px 3px var(--silver);
}


/* Global Styles */
.calibri {
    font-family: Calibri, 'Trebuchet MS', sans-serif;
}

.fs-24 {
    font-size: 24px;
}

.cta-button {
    display: inline-block;
    margin-top: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
    cursor: pointer;
}

.cta-blue {
    background-color: var(--deep-navy);
    color: var(--almost-white);
}

.cta-almost-white {
    background-color: var(--almost-white);
    color: var(--bright-blue);
}

.cta-blue:hover {
    background-color: var(--bright-blue);
}

.cta-almost-white:hover {
    background-color: var(--silver);
}

.hamburger-nav {
    display: none;
    background-color: #28a745;
    font-size: 8px;
}

/* Hidden off-screen by default */
.mobile-nav {
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 948px) {
    .logo {
        max-height: 60px;
    }
    
    .navbar-bluebudget {
        font-size: 28px;
    }
    
    .navbar ul {
        position: fixed;
        top: 80px;
        right: 0;
        height: calc(100% - 80px);
        width: 240px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1rem;
        background-color: var(--deep-navy);
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        z-index: 999;
        gap: 0px;
    }

    .navbar ul.show {
        transform: translateX(0);
    }

    .navbar ul li {
        padding: 8px 0;
        width: 100%;
    }

    .navbar ul li a {
        display: block;
        width: 100%;
    }

    .hamburger-nav {
        display: block;
        background: none;
        border: none;
        color: var(--almost-white);
        font-size: 32px;
        cursor: pointer;
        z-index: 1000;
    }

    .navbar-right {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}