:root {
    --bs-primary: #0073e6;
    --bs-secondary: #5928ED;
    --bs-blue: #054FB9;
    --bs-white: #fff;
    --bs-black: #000;
}

body {
    font-family: 'Roboto', sans-serif;
    background: -webkit-linear-gradient(to left, #FFFFFF, #FFFFFF); /* Chrome 10-25, Safari 5.1-6 */
    background: #fff; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

a {
    color: var(--bs-white);
}

a:hover {
    color: var(--bs-secondary);
}

a:focus-visible {

}

#nav-main {
    /*background: #bdc3c7; !* fallback for old browsers *!*/
    /*background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7); !* Chrome 10-25, Safari 5.1-6 *!*/
    /*background: linear-gradient(to right, #2c3e50, #bdc3c7); !* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ *!*/
    /*background: linear-gradient(to left, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);*/
    background: #d9e4ff;
    border-bottom: 1px solid gray;

}

.section {
    padding: 70px 0;
}

.btn-primary {
    background-color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn-primary:hover {
    background-color: var(--bs-blue);
    border: 1px solid var(--bs-blue);
}

.navbar-nav .nav-link {
    color: var(--bs-black-rgb);
    font-weight: 400;
}

.nav-link {
    transition: all .3s ease-in;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.entry-header h1, h2.blog-post-title {
    text-transform: uppercase;
}

.blog-post-title a {
    color: var(--bs-black-rgb);
}

.nav-link.active {
    font-weight: 600;
    color: var(--bs-black);
}

a.nav-link::before {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all .3s ease-in;
}

ul li a {
    display: inline-block;
    color: var(--bs-secondary);
    transform: scale(1);
    transition: all .3s ease-in-out;
}

ul li a:hover {
    transform: scale(1.07);
    color: var(--bs-primary);
}

header#masthead {
    margin-bottom: 126px;
}

.section-heading {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.9rem;
    font-style: italic;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 2px;
}

.section-heading::after {
    content: '';
    display: block;
    height: 4px;
    width: 50%;
    background-color: var(--bs-secondary);
    position: absolute;
    bottom: 0;
    left: 0;
}

.section-heading.center {
    text-align: center;
}

.section-heading.center::after {
    width: 100%;
}

.post-item {
    margin-bottom: 3rem;
}

.post-item .heading {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    margin: .125rem 0;
    color: var(--bs-black-rgb);
}

@media (min-width: 992px) {
    .post-item .heading {
        min-height: 70px;
    }
}

.post-item .thumbnail {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 0;
    transition: filter .5s linear;
    filter: brightness(100%);
}

.post-item .thumbnail:hover {
    filter: brightness(60%);
}

.post-item:hover .thumbnail {
    filter: brightness(60%);
}

.post-item .wp-post-image {
    max-width: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 300px;
    object-position: center top;
    border-radius: 12px 12px 0 0;
    border: 1px solid transparent;
}

.post-item .post-short-details {
    padding: 15px;
    border: 1px solid #7a7a7a;
    border-radius: 0px 0px 12px 12px;
    border-top: 0;
    transition: all .3s ease-in-out;
}

.post-item .post-categories {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--bs-secondary);
    padding: 15px 17px;
    border-radius: 12px;
    z-index: 2;
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: 600;
    color: var(--bs-white);
}

.post-item .post-short-details > a {
    text-decoration: none;
    color: var(--bs-black-rgb);
}

.post-item .post-categories li a {
    text-decoration: none;
    color: #000;
}

.post-item:hover .post-short-details {
    box-shadow: 0 0 5px 1px var(--bs-gray-400);
}

.post-item .description p {
    min-height: 120px;
}

.read-more {
    color: var(--bs-white);
    background: var(--bs-black);
    background: linear-gradient(to left, var(--bs-black) 50%, var(--bs-primary) 50%) right;
    background-size: 200%;
    transition: .5s ease-out;
    border: 0;
}

.read-more:hover {
    color: var(--bs-white);
    background-position: left;
}

/* SIDEBAR */
aside .card {
    background-color: transparent;
}

.card .card-title {
    font-family: 'Montserrat', sans-serif !important;
    font-style: italic;
    font-size: 1.8rem;
    font-weight: 600;
}

#wp-calendar {
    width: 100%;
}

#wp-calendar td#today {
    background-color: gray;
    color: #fff;
    padding-left: 5px;
}

aside.widget-area ul {
    list-style: disc;
    margin-top: 1rem;
    padding-left: 1rem;
}

aside ul li a {
    margin-bottom: .7rem;
    text-decoration: none;
    color: var(--bs-dark);
    text-transform: uppercase;
}

/* PAGINATION */

.pagination {
    gap: 1.125rem;
}

.pagination li a {
    color: var(--bs-white);
    background: var(--bs-primary); /* default color */
    background: linear-gradient(to left, var(--bs-secondary) 48%, var(--bs-primary) 15%) right;
    background-size: 200%;
    transition: .5s ease-out;
    border: 0;
    border-radius: 5px;
}

.pagination li a::after {
    content: none;
    display: none;
}

.pagination li a:hover {
    color: var(--bs-white);
    background-position: left;
}

/* SINGLE POST */

span.posted-on {
    margin-right: 5px;
}

p.entry-meta a {
    margin-left: 5px;
}

.card-body .read-more {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
}

/* liturgical peroid */

.description-column {
    display: flex;
    flex-direction: column;
}

.peroid-description p {
    font-size: 1.4rem;
}

.peroid-image {
    margin-bottom: 2rem;
}

.peroid-image img {
    max-width: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 700px;
    object-position: center top;
    border-radius: 12px;
    border: 1px solid transparent;
}

/* FOOTER */

.bootscore-footer {
    padding-top: 20px;
    border-top: 1px solid lightgrey;
}

.footer_widget ul li a {
    color: var(--bs-dark);
    text-decoration: none;
    margin-bottom: .5rem;
    position: relative;
}


ul li a::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: transparent;
    transition: width .5s ease-in;

}

ul li a:hover::after {
    background-color: var(--bs-blue);
    width: 100%;

}

ul li a:hover {
    transform: scale(1);
}

/*  CONTACT PAGE */

.contact-left-column {
    display: flex;
    flex-direction: column;
}

.contact-title {
    margin-top: 3rem;
}

.adress {
    font-size: 1.2rem;
}

.adress svg {
    margin-right: .5rem;
}

.adress .phone{
    color: var(--bs-black-rgb);
}

.contact-info {
    max-width: 300px;
    padding: 15px;
    box-shadow: 0 0 6px 1px lightgrey;
    margin-bottom: 4rem;
}

/* MOBILE MENU */
.offcanvas-body {
    background: linear-gradient(to bottom, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);
}

@media (min-width: 992px) {
    .offcanvas-body {
        background: transparent;
    }
}

/* ANNOUNCMENTS */

.announcement {
    text-transform: uppercase;
}

.heading {
    margin: 2.8rem 0;
}

.information {
}

.info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid gray;
    max-width: 500px;
    text-transform: uppercase;
    justify-content: space-between;
    margin-bottom: 20px;
}

.winter {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.125rem;
    border: 1px dashed #000;
    width: fit-content;
    padding: 7px;
    margin: 20px 0;
}

@media (min-width: 992px) {
    .info {
        max-width: 50%;
    }
}

/* GROUPS */

.group-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.group-content {
    text-align: center;
}

.group-name {
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0;
    box-shadow: 1px 1px 5px 1px var(--bs-primary);
    padding: 7px 12px;
    margin-bottom: 1.125rem;
}

/* News */

.news p {
    font-size: 1.125rem;
}

/* WCAG UTILITIES */

.category-badge a {
    letter-spacing: 1px;
    padding: 7px 12px;
    background-color: var(--bs-secondary);
}

#wp-calendar td#today {
    background-color: var(--bs-secondary);
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

table#wp-calendar caption {
    color: var(--bs-black-rgb);
}

.wp-calendar-nav-prev a {
    color: var(--bs-black-rgb);
}

.breadcrumb > a {
    color: var(--bs-black-rgb);
}

p.entry-meta a{
    color: var(--bs-secondary);
}

.entry-content > p a{
    color: var(--bs-black-rgb);
}

#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay ul.pojo-a11y-toolbar-items li.pojo-a11y-toolbar-item a{
    text-decoration: none;
}

.page-template-ogloszenia-page .news a{
    color: var(--bs-black-rgb);
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 720px;
    object-fit: cover;
    object-position: bottom;
    position: relative;
}

.hero-slider-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 52px;
    color: #fff;
    text-align: left;
    z-index: 11;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 12px;
}
@media(max-width: 992px){
    .hero-slider-title {
        font-size: 28px;
        width: 100%;
        height: 100%;
    }
}


.item-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, 0.3);
    z-index: 9;
}

#pojo-a11y-skip-content{
    color: var(--bs-black-rgb);
}

.single-post .text-muted{
    color: var(--bs-black-rgb);
}

.wp-block-file > a{
    color: var(--bs-black-rgb);
}

a.wp-block-file__button.wp-element-button{
    color: #fff;
}

#gdpr-box a{
    color: #000;
}
