@charset "utf-8";

body {
    font-family: "Inclusive Sans", sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: "Inclusive Sans", sans-serif;
	color: #000000;
}


#form {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}


.img-rounded {
    border-radius: 8px;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
}

.responsive-centre-image{
    margin-bottom: 30px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

@view-transition {
    navigation: auto;
}



#wrapper {
    width: 95%;
    margin: 5px auto;
    padding: 0;
    color: #f5f5f5;
}

#header {
    position: relative;
    text-align: center;
    padding: 5px 0 0 0;
}


.header-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}
    

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

.header-logo-right {
    position: absolute;
    top: 20px;
    right: 30px;
    max-height: 60px;
}


#navigation {
    background-color: #d8eaf0;
    width: 100vw;
    margin: 0;
    padding: 0;
}

.primarynav {
    display: flex;
    padding: 0;
    margin: 0 5px 0 5px;
    list-style: none;
    justify-content: center;
}

.primarynav li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: #B3D4DF;
    opacity: 0.6;
}


.primarynav li {
    margin-right: 20px;
}

.primarynav a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 20px;
    padding: 15px 15px 15px 15px;
    height: 100%;
    text-align: center;
    align-items: center;
}



.primarynav a:hover {
    text-decoration: none;
    color: #000000;
    background-color: #a2c5d3;
}

.current {
    background-color: #1A3D4C; 
    color: #FFFFFF !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}


.primarynav li.has-dropdown {
    position: relative;
}
  
.primarynav .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none;
    background-color: #d8eaf0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    z-index: 100;
}

.primarynav li.has-dropdown:hover .dropdown {
    display: block;
}

.primarynav li.has-dropdown:hover {
    background-color: #a2c5d3;
}

.dropdown li {
    border-bottom: 1px solid #B3D4DF;
    width: 100%;
}
  
.dropdown a {
    width: 100%;
    display: block;
    padding: 10px 0 10px 0.5px;
    color: #000;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown a:hover {
    background: #a2c5d3;
}


.primarynav li.has-dropdown::after {
display: none;
}


#content {
    position: relative;
    width: 100%;
    background-color: white;
    padding-bottom: 25px;
} 

#content::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 6px; 
    background: linear-gradient(to bottom, 
        rgba(80, 80, 80, 0.3) 0%,
        rgba(225, 225, 225, 0.3) 80%,
        rgba(255, 255, 255, 0) 100%   
    );
    pointer-events: none;
}



.skip-link {    
    position: absolute;
    left: -9999px;
    z-index: -1;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: 1px solid white;
}

#main-content {
    flex: 1;
    padding: 5px 20px ;
}


#page-body {
    display: flex;
    width: 95%;
    margin: 0 auto;
	padding: 20px 0 0 0;
}

#sidebar {
    display: flex;
	float: left;
    width: 200px;
    background-color: #d8eaf0;
    padding: 0 10px;
    box-sizing: border-box; 
    overflow-y: auto;
    height: 90ch;
}


#sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}


#sidebar-nav li a {
    text-decoration: none;
    color: #000;
    display: block;
    padding: 8px 15px;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}


.indented{
    margin-left: 15px;
}

#sidebar-nav li:nth-child(n-4) a {
    padding-top: 8px; 
    margin-top: 10px;
}


#sidebar-nav li:has(+ li a)::after {
    content: "";
    display: block;
    height: 1px;
    background: #a4b6c6;
    margin: 10px 8px;
}



#sidebar-nav li:has()::after {
    content: "";
    display: block;
    height: 1px;
    background: #a4b6c6;
    margin: 10px 8px;
}


#sidebar-nav li a:hover {
    background-color: #a2c5d3;
    color: #000;
}

.sidebar-heading {
    font-family: "Inclusive Sans", sans-serif;
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000000;
    padding: 12px 8px 8px;
    margin: 30px 0 12px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(179, 212, 223, 0.3) 30%, 
        rgba(179, 212, 223, 0.15) 100%);
    border-left: 4px solid #D86836;
    box-shadow: 0 1px 0 0 rgba(122, 159, 166, 0.2);
    cursor: default;
    text-decoration: none !important;
}



.sidebar-heading:hover,
.sidebar-heading:focus {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(179, 212, 223, 0.3) 30%, 
        rgba(179, 212, 223, 0.15) 100%);
    color: #1A3D4C !important;
}

.currentsidebar {
    background-color: #7a9fa6; 
}




.bstyle1 {
    background-color: #fff9c4;
    padding: 5px 20px 20px 20px;
	font-size: 25px;
    color: #000000;
    margin: 25px 0;
    border: 1px solid #1f1f1f !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}


.inclusive-sans-<uniquifier> {  
	font-family: "Inclusive Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
  }

.bstyle2{
	background-color: #e2f0cb;
    padding: 5px 20px 20px 20px;
    font-family: "Inclusive Sans", sans-serif;
	font-size: 20px;
    margin: 20px 0;
    color: #000000;
    border: 1px solid #1f1f1f !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.bstyle2h {
    color: #000000;
}


#footer {
    background-color: #f5f5f5;
    padding: 30px 5% 20px;
}

#footer {
    background-color: #f5f5f5;
    padding: 30px 5%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.footer-social-section {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.social-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.footer-supporters {
    text-align: center;
}

.supporters-title {
    font-weight: bold;
    font-size: medium;
    margin-bottom: 15px;
    color: #000000;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}


.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
}


.social-link, .email-link, .newsletter-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
}


/* ===== ICON STYLES ===== */
.social-icon,
.mailing-list-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.mailing-list-icon {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

.social-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.social-link,
.email-link,
.newsletter-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link svg {
    margin-right: 6px;
}


.social-link[aria-label="Facebook"]:hover {
    color: #1877f2;
}
.social-link[aria-label="Facebook"]:hover .social-icon {
    fill: #1877f2;
    transform: translateY(-1px);
}

.social-link[aria-label="Twitter"]:hover {
    color: #1da1f2;
}
.social-link[aria-label="Twitter"]:hover .social-icon {
    fill: #1da1f2;
    transform: translateY(-1px);
}

.email-link:hover {
    color: #D86836;
    text-decoration: underline;
}
.email-link:hover .social-icon {
    fill: #D86836;
    transform: translateY(-1px);
}

.newsletter-link:hover {
    color: #D86836;
}
.newsletter-link:hover .mailing-list-icon {
    opacity: 0.8;
    transform: translateY(-1px);
}
.newsletter-link:hover .mailing-list-icon path {
    fill: #D86836;
}


.footerlogos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

ul{
    list-style-type: none;
}

.main-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.main-email-link:hover {
    text-decoration: underline;
}


.main-mailing-list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.main-mailing-list:hover {
    color: #375134;
    text-decoration: underline;
}

hr.newsdivider{
    color: #375134;
    border-top: 2px solid;
}

.advicelink{
    line-height: 1;
    background-color: #ffffff !important;
    border: 1px solid #1f1f1f !important;
    padding: 11px 22px;
    margin-left: 5px;
    margin-bottom: 15px;
    font-size: 1.75rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 5px 5px #7777773e;
    width: auto;
    display: block;
}


.advicelink:hover {
    background-color: #f2f2f2 !important;
    transition: 0.1s;
}


.buttontext {
    color: #1f1f1f !important;
    text-align: center;
    font-size: 1.5rem;
    text-decoration: none;
}

.buttontext:hover {
    color: #5C5100;
    text-decoration: underline;
}


.mobile-checkbox {
    display: none;
}

.hamburger-menu {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    background: #1A3D4C;
    padding: 12px;
    z-index: 1000;
    border-radius: 4px;
    cursor: pointer;
}


.hamburger-bar {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
}


@media (min-width: 769px) {
    #navigation {
        position: relative !important;
        right: auto !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
        padding-top: 0 !important;
    }
    
    .hamburger-menu {
        display: none !important;
    }
    
    .mobile-checkbox:checked ~ #navigation {
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .mobile-checkbox {
        display: none;
    }

    .hamburger-menu {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        background: #1A3D4C;
        padding: 12px;
        z-index: 1000;
        border-radius: 4px;
        cursor: pointer;
    }

    .hamburger-bar {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        margin: 4px 0;
        transition: 0.3s;
    }


    #navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100% !important;
        max-width: 100%;
        height: 100vh;
        background: #d8eaf0;
        transition: 0.3s;
        z-index: 999;
        padding-top: 60px;
        overflow-y: auto;
        margin: 0;
    }

    .mobile-checkbox:checked ~ #navigation {
        right: 0;
    }

    .primarynav {
        flex-direction: column;
        padding: 10px;
    }

    .primarynav li {
        margin: 0;
        border-bottom: 1px solid #B3D4DF;
        position: relative;
    }

    .primarynav a {
        padding: 15px;
        font-size: 18px;
    }

    .has-dropdown {
        position: relative;
    }


    .has-dropdown:focus .dropdown {
        max-height: 500px;
    }

    .dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 20px;
    }

    #sidebar,
    .pull-right,bar
    .primarynav li:not(:last-child)::after {
        display: none !important;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
    }


    #header {
        padding-top: 40px;
    }


    .primarynav li.has-dropdown:hover .dropdown {
        display: none;
    }


    .bstyle1 {
        background-color: #fff9c4;
        padding: 5px 20px 20px 20px;
        font-size: 25px;
        color: #000000;
        margin: 25px 0; 
        border-radius: ; 
        border: 1px solid #1f1f1f !important;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .bstyle2{
        background-color: #e2f0cb;
        padding: 5px 20px 20px 20px;
        font-family: "Inclusive Sans", sans-serif;
        font-size: 20px;
        margin: 20px 0;
        color: #000000;
        border: 1px solid #1f1f1f !important;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .responsive-centre{
        text-align: center;
    }
    
    
    .responsive-centre-image{
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }

    .advicelink{
        line-height: 1;
        background-color: #ffffff !important;
        border: 1px solid #1f1f1f !important;
        padding: 11px 22px;
        margin-left: 5px;
        margin-bottom: 15px;
        font-size: 1.75rem;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 5px 5px #7777773e;
        width: 300px;
        display: block;
    }
}