@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");

@font-face {
    font-family: "CircularXXWeb-Medium";
    src: url("../fonts/CircularXXWeb-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
}

:root {
    --flinders-blue: #002f60;
    --flinders-dark-blue: #232D4B;
    --flinders-yellow: #ffd300;
    --text-dark: #1f2a37;
    --text-light: #f8f9fa;
    --surface: #ffffff;
    --line: #dbe2ea;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f5f8fc 0%, #eef3f9 100%);
    display: flex;
    flex-direction: column;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.site-header {
    background: var(--flinders-blue);
    color: var(--text-light);
    box-shadow: 0 2px 12px rgba(1, 28, 44, 0.25);
}

.site-header .container {
    padding: 18px 0 14px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.header-logo {
    width: 148px;
    height: auto;
}

.header-crumb {
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-top: 10px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.92);
}

.header-crumb span {
    color: var(--flinders-yellow);
    font-weight: 700;
}

/* HERO HEADER */
.hero {
    height: 240px;
    background-image: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(35, 45, 75, 0.55);
}

.hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.hero h1 {
    margin: 0;
    font-size: 40px;
    /* reduced */
    color: var(--flinders-yellow);
    font-weight: 700;
}

.main {
    flex: 1;
    padding: 44px 0 56px;
}

.notice-shell {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: clamp(20px, 3vw, 36px);
    box-shadow: 0 16px 30px rgba(7, 35, 66, 0.08);
}

.notice-kicker {
    display: inline-block;
    background: #fff8cc;
    border: 1px solid #ffe37e;
    color: #5f4b00;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 10px;
    margin-bottom: 14px;
}

.notice-title {
    margin: 0;
    font-family: inherit;
    font-weight: 700;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    line-height: 1.2;
    color: #0c2238;
}

.notice-intro {
    margin-top: 10px;
    margin-bottom: 28px;
    color: #32465d;
    max-width: 75ch;
}

.notice-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 22px;
}

.notice-main {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 20px;
    background: #fff;
}

.notice-main h2 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    color: var(--flinders-blue);
}

.notice-main p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
}

.notice-meta {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fbfdff;
    padding: 20px;
}

.notice-meta h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #26415f;
}

.notice-meta ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 0.95rem;
}

.notice-meta li strong {
    display: inline-block;
    min-width: 70px;
}

.notice-contact {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed #bfd0e2;
    font-size: 0.92rem;
    color: #304b67;
}

.notice-cta {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--flinders-yellow);
    color: #111;
    border: 1px solid #e4c100;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.94rem;
    padding: 10px 16px;
    text-decoration: none;
}

.notice-cta:hover,
.notice-cta:focus {
    background: #111;
    color: var(--flinders-yellow);
}

.footer-top {
    background: var(--flinders-yellow);
    color: #111;
}

.footer-top .container {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-social a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s ease;
}

.footer-social a i {
    font-size: 1.2rem;
}

.footer-social a:hover,
.footer-social a:focus {
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    background: var(--flinders-dark-blue);
    color: var(--text-light);
}

.footer-bottom .container {
    padding: 24px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 0.92rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--flinders-yellow);
    text-decoration: underline;
}

.footer-legal {
    font-size: 0.84rem;
    line-height: 1.7;
    color: rgba(248, 249, 250, 0.9);
}

.footer-tagline {
    margin-top: 16px;
    text-align: center;
    font-family: "CircularXXWeb-Medium", "Open Sans", Arial, sans-serif;
    letter-spacing: 0.22em;
    font-size: 1.375rem;
    line-height: 1.75rem;
    font-weight: 400;
}

@media (max-width: 860px) {
    .notice-grid {
        grid-template-columns: 1fr;
    }

    .main {
        padding-top: 28px;
    }
}

@media (max-width: 560px) {
    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top .container {
        align-items: flex-start;
    }

    .footer-social {
        flex-wrap: wrap;
        gap: 10px;
    }
}