:root {
    --primary: #0d6efd;
    --primary-dark: #062b4a;
    --secondary: #0d6efd;
    --secondary-dark: #495057;
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark: #212529;
}

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

/* Hero background fallback so white text remains readable even before the image loads */
.hero-bg {
    background-color: #062b4a;
    background-size: cover;
    background-position: center;
}

/* Dark sections that use a background image via inline style need a solid fallback colour */
.section.dark-bg {
    background-color: #062b4a;
}

/* Footer */
footer {
    background-color: #062b4a;
    color: #fff;
}
footer .footer-title {
    color: #fff;
}
footer .footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
footer .footer-links li {
    margin-bottom: 0.5rem;
    color: #fff;
}
footer .footer-links a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
}
footer .footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}
footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.12);
    color: #fff;
    text-decoration: none;
    transition: background-color .2s ease;
}
footer .social-icon:hover {
    background-color: rgba(255,255,255,.25);
    color: #fff;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #062b4a;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
    display: none;
}
.cookie-banner.show {
    display: block;
}

.footer-bottom {
    background-color: #062b4a;
    padding: 1rem 0;
}
