/* Using CDN, load Bootstrap 5.2, 
    then legacyTemplate.css settings that will be applied to ALL legacy sites, 
    finally domain css is set by project.  */
/* SITE WIDE SETTINGS */
body {
    font-family: 'Poppins', sans-serif;
}

main {
    min-height: calc(100vh - 880px);
}

header {
    background-color: #ffffff;
}
.breadcrumb-item {
    font-weight: bold;
}

a {
    text-decoration: none;
    font-weight: bold;
}
.content h2 {
    margin-top: 35px;
}

.content h3 {
    margin-top: 30px;
}

.content h4 {
    margin-top: 30px;
}


h1 {
    font-size: 2.25rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.30rem;
    text-transform: uppercase;
    font-weight: bold;
}

h4 {
    font-size: 1.20rem;
    text-transform: uppercase;
    font-weight: bold;
}

h5 {
    font-size: 1.10rem;
    text-transform: uppercase;
    font-weight: bold;
}

h6 {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

img {
    max-width: 100%;
}

table {
    border: 1px solid transparent;
}
/* Navbar settings */
.navbar {
    font-family: 'Montserrat', sans-serif;
}

.nav-link {
    font-weight: bold;
    white-space: nowrap;
}

.dropdown-divider {
    width: 100%;
}

.dropdown-menu {
    min-width: 200px
}
/* fix for last drop down menu going off the page */
.nav-item:last-child .dropdown-menu {
    right: 0;
    left: auto;
}

/* fix for Umbraco checkboxes*/
label {
    display: inline;
}
/* make active accordions match the primary buttons */
.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    font-weight: 700;
    border-color: var(--bs-primary);
}

/* RICH TEST AREAS */
.content ul,
.content ul > li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.content ul {
    margin: 2em 0;
}

    .content ul > li {
        margin-left: 3em;
    }

        .content ul > li:before {
            content: '\f00c';
            font-family: 'FontAwesome';
            float: left;
            margin-left: -1.5em;
        }


/*  Button Settings */
.btn {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 1.35rem;
}

/* Right side CTA Div*/
.right-side-widget {
    position: sticky;
    top: 235px;
    height: fit-content;
    margin-bottom: 10px;
}

.right-side-content {
    color: #ffffff;
    background-color: #0b2744;
    border-radius: 16px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.right-side-widget .btn {
    font-size: 1.25em;
}

@media screen and (max-width: 1200px) {
    .right-side-widget {
        display: none;
    }
}

/* SITE WIDE SETTINGS FOR FOOTER */
footer a {
    color: #999;
    font-weight: normal;
    margin: 0 0 5px 0;
    font-size: 14px;
}

    footer a:hover {
        color: #fff;
    }

footer p {
    color: #999;
    font-size: 14px;
}

footer h4 {
    color: #fff;
}

footer hr {
    color: #ffc30c;
    width: 40px;
    border-top: 2px solid #ffc30c;
    opacity: 1.0;
}

footer li {
    border-bottom: 1px solid #999;
}

footer .copyright {
    background-color: #1d1d1d;
}


/* COUPON/SPECIALS/REBATES */
.coupons .border {
    border: 1px dashed #ffc30c !important;
}

/* BLOG PAGES */
.blog-list hr:first-of-type {
    width: 80px;
    color: #ffc30c;
    border-top: 2px solid #ffc30c;
}

.blog-page hr:first-of-type {
    width: 80px;
    color: #ffc30c;
    border-top: 2px solid #ffc30c;
}


/* CONTENT PAGES (INDEXES AND SUBPAGES) */
.content-page hr {
    width: 80px;
    color: #ffc30c;
    border-top: 2px solid #ffc30c;
}

article img {
    max-width: 100%;
    height: auto;
    color: #ffffff;
    border-radius: 5px;
}

/* rich text will add a paragraph tag by default even around images. */
article:first-of-type > p:first-of-type > img:first-of-type {
        margin: 0 0 45px 45px;
    }

/* HOME PAGE */
.hero-div {
    width: 100%;
    min-height: 701px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

    .hero-div h1 {
        font-size: 3rem;
        text-shadow: 1px 1px 1px black;
    }

    .hero-div h2 {
        font-size: 2.25rem;
        text-shadow: 1px 1px 1px black;
    }

    .hero-div h3 {
        font-size: 1.75rem;
        text-shadow: 1px 1px 1px black;
    }

.hero-content {
    width: 100%;
    margin: 10px 0;
    padding: 15px 25px;
    background-color: rgba(72, 72, 72, 0.7);
    border-radius: 10px;
}
 
@media screen and (max-width: 768px) {
    /* rich text will add a paragraph tag by default even around images. */
    article:first-of-type > p:first-of-type > img:first-of-type {
        margin: 0 0 10px 10px;
    }
    .header {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

        .logo img {
            max-width: 150px;
            margin-bottom: 10px;
        }

    .hero-div h1 {
        font-size: 2.25rem !important;
        margin-bottom: 15px;
    }

    .hero-div h2 {
        font-size: 1.50rem !important;
    }

    .hero-div h3 {
        font-size: 1.25rem !important;
    }

    .btn-group-lg > .btn, .btn-lg {
        font-size: 0.9rem;
    }

    .dropdown-menu {
        min-width: 320px;
    }
}

/* Setup lists as columns */
.dual-ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 20px; /* Reduced gap */
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding-inline-start: 0;
    display: block;
    width: 100%; /* Ensure the list takes full width */
}
.triple-ul {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 20px; /* Reduced gap */
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding-inline-start: 0;
    display: block;
    width: 100%; /* Ensure the list takes full width */
}
.quad-ul {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 20px; /* Reduced gap */
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding-inline-start: 0;
    display: block;
    width: 100%; /* Ensure the list takes full width */
}
.dual-ul li, .triple-ul li, .quad-ul li {
    list-style-type: none;
    break-inside: avoid; /* Prevents items from breaking between columns */
    page-break-inside: avoid; /* Also useful for print media */
    -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
    -moz-column-break-inside: avoid; /* Firefox */
}