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

body {
    /* This applies Montserrat to the entire page */
    font-family: 'Montserrat', sans-serif; 
}

:root {
    /* Core Brand Blues */
    --color-brand-blue-bright: #008AFC;
    --color-brand-blue-primary: #0294B5;
    --color-brand-blue-dark: #27318A;

    /* Deep Navy / Teal Base */
    --color-brand-navy: #01313C;

    /* Full Blue/Teal Spectrum */
    --color-teal-100: #9AD8E6; /* Lightest */
    --color-teal-200: #68BBCE;
    --color-teal-300: #0294B5; /* Mid/Primary */
    --color-teal-400: #016379;
    --color-teal-500: #01313C; /* Darkest */
    }



/* navbar section */

.navbar-container {
    width: 100%;
    background-color: #fff;
    height: 80px;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Creates 3 columns: Left, Auto-sized Center, Right */
    align-items: center;
    border-bottom: #008AFC 5px solid;
    padding: 0 30px; /* Keeps the logo from touching the exact edge of the screen */
}

.navbar-links {
    display: flex;
    justify-content: center;
    list-style-type: none;
    gap: 15px; /* Adds clean spacing between buttons */
}

.logo {
    width: 300px;
    height: 60px; /* Shrunk slightly to fit comfortably inside the 80px navbar */
    background-image: url("images/logo.avif");
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    display: block;
}

.navbutton {
    color: var(--color-brand-navy);
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
    font-size: 20px;
}

.navbutton:hover {
    color: var(--color-brand-blue-primary);
}




/* --- Footer Section --- */
.site-footer {
    background-color: var(--color-brand-blue-dark);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.footer-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Equal Columns */
    gap: 40px;
}

.footer-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    /* This turns a dark image completely white */
    filter: brightness(0) invert(1); 
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.footer-section .blue-line {
    width: 40px;
    height: 3px;
    background-color: var(--color-brand-blue-bright);
    margin-bottom: 25px;
}

/* Contact List */
.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--color-brand-blue-bright);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px; /* Aligns the icon nicely with the first line of text */
}

.contact-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--color-brand-blue-bright);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    transition: fill 0.3s ease;
}

.social-icons a:hover svg {
    fill: var(--color-brand-blue-bright);
}

/* Quick Links */
.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 15px;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: var(--color-brand-blue-bright);
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: var(--color-brand-blue-bright);
    padding: 25px 30px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
