@import url('https://fonts.googleapis.com/css2?family=Belleza&display=swap');

:root {
    --primary-color: #13459c;
    --secondary-color: #AA9759;
}

body {
    font-family: 'Belleza', sans-serif;
    background-color: #fafafa;
    color: #222;
    margin: 0;
    padding: 0;
}

header, footer {
    background-color: #fff;
    color: #000 !important;
    font-family: 'Belleza', sans-serif !important;
}

footer a {
    color: #000 !important;
}

a {
    color: var(--secondary-color) !important;
}

body, h1, h2, h3, h4, h5, h6, p {
    font-family: 'Belleza', sans-serif !important;
}

img {
    max-width: 100%;
    height: auto;
}

.wp-block-button__link {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
}

.wp-block-button__link:hover {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
}

.has-belleza-font-family {
    font-family: 'Belleza', sans-serif !important;
}

.wp-block-site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
}

.wp-block-site-logo img {
    width: 240px;
}

.wp-block-site-logo::before {
    order: 2;
    content: '';
    display: inline-block;
    background-image: url('canada_flag.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 180px;
    aspect-ratio: 3 / 2;
    margin-left: 0rem;
}

.wp-block-site-logo::after {
    content: 'Proudly Canadian Owned';
    display: inline-block;
    padding: 2rem;
    white-space: nowrap;
    font-size: 1.2rem;
    text-align: center;
}

@media (max-width: 1172px) {
    .wp-block-site-logo img {
        width: 240px;
    }

    .wp-block-site-logo {
        flex-wrap: wrap;
        justify-content: center;
    }

    .wp-block-site-logo::before {
        width: 120px;
        margin-left: 20%;
        margin-right: 0;
    }

    .wp-block-site-logo::after {
        order: 3;
        width: 180px;
        margin-left: auto;
        margin-right: auto;
    }

    .wp-block-site-logo::after {
        order: 3;
        width: 180px;
        display: block;
        padding: 0.5rem 0;
        margin-left: auto;
        margin-right: auto;
    }

}
