/* ------------------------------------------
   BASE STYLES
------------------------------------------- */



body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #ffffff;
    color: #000000;
}

/* Banner */
.banner {
    background: #05529c;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    font-size: 2.0rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Page container */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: #111;
}



/* ------------------------------------------
   HERO BANNER — BLUE GRADIENT
------------------------------------------- */
.hero {
    background: linear-gradient(
        180deg,
        #0A2A43 0%,   /* deep navy blue */
        #1E90FF 100% /* lighter blue */
    );
    color: var(--text-light);
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
}


.hero-content h1 {
    font-size: 3.0rem;
    margin-bottom: 5px;
}

.hero-content p {
    font-size: 2.0rem;
    margin-bottom: 20px;
}

/* ------------------------------------------
   CAMPAIGN COLOUR VARIABLES
------------------------------------------- */
:root {
    --primary-black: #000000;
    --deep-red: #8B0000;
    --off-white: #ffffff;
    --steel-blue: #2F4F4F;

    --text-dark: #111;
    --text-light: #fff;
}

/* ------------------------------------------
   NAVIGATION
------------------------------------------- */
nav {
    background: #1E90FF; /* lighter blue */
    border-bottom: 4px solid var(--deep-red);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0;
}

nav a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: bold;
    transition: 0.3s ease;
}

nav a:hover,
nav a.active {
    background: var(--deep-red);
    color: var(--text-light);
}

/* ------------------------------------------
   TOP & BOTTOM BORDERS
------------------------------------------- */
body::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 8px solid var(--primary-black);
    margin-top: 40px;
}

/* ------------------------------------------
   HEADINGS — INVESTIGATIVE STYLE
------------------------------------------- */
h1 {
    color: var(--primary-black);
    border-left: 8px solid var(--deep-red);
    padding-left: 12px;
    margin-bottom: 25px;
}

/* Remove red border from hero banner title */
.hero h1 {
    border-left: none;
    padding-left: 0;
    color: var(--text-light);
}

h2 {
    color: var(--deep-red);
    margin-top: 40px;
    margin-bottom: 10px;
}

h3 {
    color: var(--steel-blue);
}

/* ------------------------------------------
   BUTTONS
------------------------------------------- */
.button {
    display: inline-block;
    background: var(--deep-red);
    color: var(--text-light);
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s ease;
}

.button:hover {
    background: var(--primary-black);
}

/* ------------------------------------------
   HIGHLIGHT BOXES
------------------------------------------- */
.highlight-box {
    background: #047ac4;
    color: var(--text-light);
	h2 {
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 10px;
}
    padding: 20px;
    border-left: 8px solid var(--deep-red);
    margin: 30px 0;
    border-radius: 4px;
}

/* ------------------------------------------
   FOOTER
------------------------------------------- */
.site-footer {
    width: 100%;
    background: #05529c;
    color: var(--text-light);
    text-align: center;
    padding: 25px 10px;
    margin-top: 60px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-top: 8px solid var(--deep-red);
}

.site-footer p {
    margin: 6px 0;
}

/* ------------------------------------------
   RESPONSIVE DESIGN
------------------------------------------- */

/* Mobile phones */
@media (max-width: 600px) {

    .container {
        padding: 0 15px;
        margin: 20px auto;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav a {
        padding: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    h1 {
        font-size: 1.6rem;
        border-left-width: 6px;
    }

    h2 {
        font-size: 1.3rem;
    }

    .banner {
        font-size: 1.1rem;
        padding: 12px;
    }

    .highlight-box {
        padding: 15px;
    }

    .button {
        display: block;
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .container {
        max-width: 95%;
    }
}
