@charset "UTF-8";
.header__top-row {
  width: 100%;
  background-color: #a57e6d;
  text-align: center;
  padding: 13px 0;
}
.header__top-row-text {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
  color: white;
}
.header__menu {
  position: absolute;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
}
.header__menu .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  max-height: 80px;
}
.header__nav {
  width: 100%;
}
.header__nav ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
  padding-inline: 0;
}
.header__nav ul li a:hover {
  color: #a57e6d;
}
.header__toggle {
  display: none;
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.header__nav-list > li {
  position: relative;
  margin-right: 20px;
}
.header__nav-list > li:last-child {
  margin-right: 0;
}
.header__nav-list > li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 10px 15px;
  display: block;
  transition: color 0.3s ease;
}
.header__nav-list > li a:hover {
  color: #dba860;
}
.header__nav-list > li .submenu-arrow {
  margin-left: 5px;
  font-size: 12px;
  cursor: pointer;
  display: none;
  transition: transform 0.3s ease;
}
.header__nav-list > li .submenu-arrow.open {
  transform: rotate(180deg);
}
.header__nav-list > li.menu-item-has-children .submenu-arrow {
  display: inline-block;
}
.header__nav-list > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  list-style: none;
  padding: 10px 0;
  z-index: 10;
}
.header__nav-list > li .sub-menu li {
  margin: 0;
}
.header__nav-list > li .sub-menu li a {
  padding: 10px 20px;
  color: #333;
  white-space: nowrap;
}
.header__nav-list > li .sub-menu li a:hover {
  background-color: #f5f5f5;
  color: #dba860;
}
.header__nav-list > li:hover:not(.submenu-open) .sub-menu {
  display: block;
}
.header__nav-list > li.submenu-open .sub-menu {
  display: block;
}

@media (max-width: 1060px) {
  .header__menu {
    padding: 10px 0;
  }
  .header__menu .container {
    flex-direction: row;
    align-items: center;
  }
  .header__logo img {
    max-height: 70px;
  }
  .header__nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .header__nav--open {
    display: flex;
    position: absolute;
    top: 90px;
    width: 100%;
    background-color: #dba860;
    left: 0;
  }
  .header__nav ul {
    flex-direction: column;
  }
  .header__nav ul li {
    width: 100%;
  }
  .header__nav ul li a {
    padding: 10px;
    text-align: left;
  }
  .header__nav ul li .sub-menu {
    position: static;
    display: none;
    padding: 0;
  }
  .header__nav ul li .sub-menu li a {
    padding: 10px 20px;
  }
  .header__nav ul li.submenu-open .sub-menu {
    display: block;
  }
  .header__nav ul li .submenu-arrow {
    position: absolute;
    top: 15px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    right: 20px;
  }
  .header__nav ul li:hover .sub-menu {
    display: none;
  }
  .header__toggle {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 24px;
    color: white;
    margin-left: auto;
    background: none;
    border: none;
  }
}
.footer {
  background-color: white;
  padding-top: 70px;
  border-top: 1px solid #ececec;
  font-size: 14px;
  color: #333;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__contact {
  flex: 1;
}
.footer__contact-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}
.footer__contact-icon {
  margin-right: 10px;
  font-size: 18px;
  color: #a57e6d;
}
.footer__donation {
  flex: 1;
}
.footer__donation-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer__donation-prayer {
  margin-bottom: 15px;
  line-height: 1.6;
  font-weight: bold;
}
.footer__donation-header {
  font-weight: bold;
  font-size: 18px;
}
.footer__donation-link {
  width: 100%;
}
.footer__donation-image {
  border-radius: 20px;
  width: 100%;
}
.footer__bottom {
  text-align: center;
}
.footer__logos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.footer__logos .footer__logo {
  max-height: 40px;
  width: auto;
}
.footer__copyright {
  font-size: 12px;
  color: #666;
}

.banner {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.banner__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.banner__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 31, 17, 0.6);
  z-index: 2;
}
.banner .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}
.banner__content {
  margin-top: 60px;
}
.banner__breadcrumb {
  font-size: 14px;
  font-weight: bold;
  color: #dba860;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.banner__breadcrumb a {
  color: #dba860;
  text-decoration: none;
}
.banner__breadcrumb a:hover {
  text-decoration: underline;
}
.banner__title {
  font-size: 3.056em;
  font-weight: 700;
  text-transform: none;
  line-height: 1.182em;
  color: white;
  margin-top: 0;
}
@media (max-width: 767px) {
  .banner__title {
    font-size: 2.2em;
  }
}

.mass-schedule {
  background-color: #a57e6d;
  padding: 20px;
  margin-inline: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 14px;
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
@media (max-width: 767px) {
  .mass-schedule {
    margin-inline: 0;
  }
}
.mass-schedule__box {
  margin-bottom: 20px;
}
.mass-schedule__box:last-child {
  margin-bottom: 0;
}
.mass-schedule__box__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}
.mass-schedule__box__text {
  margin: 0;
  line-height: 1.6;
}

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.hero__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(304deg, rgba(58, 52, 47, 0.8) 56%, #332E2B 94%);
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero__content {
  color: white;
  max-width: 780px;
  margin-top: 50px;
}
.hero__content > * {
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 0.768em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 4.2px;
  color: #DBA860;
  color: white !important;
}
@media (max-width: 768px) {
  .hero__subtitle {
    text-align: center;
  }
}
.hero__title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}
@media (max-width: 768px) {
  .hero__title {
    text-align: center;
    font-size: 38px;
  }
}
.hero__buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .hero__buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

.blocks__grid {
  display: flex;
  row-gap: 40px;
  column-gap: 20px;
  justify-content: center; /* Center items horizontally */
  flex-wrap: wrap;
  margin-top: 30px;
}
.blocks .block {
  background-color: #fff;
  border-radius: 8px;
  padding: 50px 25px;
  width: 27%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1054px) {
  .blocks .block {
    width: 40%;
  }
}
@media (max-width: 690px) {
  .blocks .block {
    width: 100%;
  }
}
.blocks .block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.blocks .block__icon {
  margin-bottom: 15px;
}
.blocks .block__icon img {
  max-width: 95px;
  height: auto;
}
.blocks .block__title {
  font-size: 1.3em;
  font-weight: 800;
  text-transform: none;
  line-height: 1em;
  letter-spacing: 0px;
}
.blocks .block__text {
  font-size: 16px;
  color: #8C8C8C;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: none;
  line-height: 1.857em;
  letter-spacing: -0.42px;
}

.schedule {
  padding-top: 60px !important;
  padding-bottom: 40px !important;
}
.schedule__subtitle {
  font-size: 0.768em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 4.2px;
  color: #DBA860;
}
.schedule__title {
  margin-top: 0;
}

.poslugi-section {
  padding: 60px 0;
  text-align: center;
}
.poslugi-section__subtitle {
  font-size: 0.768em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 4.2px;
  color: #DBA860;
}
.poslugi-section__title {
  font-size: 36px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 40px;
}
.poslugi-section__button {
  margin-top: 40px;
}

.parallax-section {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url("../images/parallax-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.parallax-section__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}
.parallax-section__content > * {
  margin-bottom: 20px;
}
.parallax-section__subtitle {
  font-size: 0.768em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 4.2px;
  color: #DBA860;
  color: white !important;
}
.parallax-section__title {
  font-size: 36px;
  font-weight: 700;
  margin-top: 0;
}
.parallax-section__text {
  font-size: 16px;
  line-height: 1.6;
}
.parallax-section__divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  fill: #F2F0EC;
  z-index: 2;
  transform: rotateX(180deg);
}
.parallax-section__divider svg {
  display: block;
  width: 100%;
  height: 30px;
}
.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.kawiarenka-section {
  padding: 60px 0;
}
.kawiarenka-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}
.kawiarenka-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .kawiarenka-section__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .kawiarenka-section__image {
    text-align: center;
  }
}
.kawiarenka-section__image img {
  width: 80%;
  height: auto;
}
.kawiarenka-section__content {
  text-align: left;
  position: relative;
}
.kawiarenka-section__lottie {
  position: absolute;
  top: 0;
  right: 0;
}
.kawiarenka-section__subtitle {
  font-size: 0.768em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 4.2px;
  color: #DBA860;
}
.kawiarenka-section__title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  margin-top: 0;
}
.kawiarenka-section__text {
  font-size: 16px;
  line-height: 1.6;
}

.grupy-pomocowe {
  padding-bottom: 60px !important;
}
.grupy-pomocowe__title {
  margin: 0 0 15px 0;
}
.grupy-pomocowe__subtitle {
  font-size: 0.768em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 4.2px;
  color: #DBA860;
}
.grupy-pomocowe__slider img {
  position: relative !important;
  width: 100% !important;
  border-radius: 20px;
  filter: brightness(0.5);
  object-fit: cover;
  height: 100% !important;
}

.bracia-section {
  padding: 60px 0;
  text-align: center;
}
.bracia-section__subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #dba860;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.bracia-section__title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}
.bracia-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}
.bracia-section__item {
  text-align: center;
}
.bracia-section__item__image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
}
.bracia-section__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bracia-section__item__name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.kafelki {
  padding: 60px 0;
}
.kafelki__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}
@media (max-width: 1024px) {
  .kafelki__grid {
    grid-template-columns: 1fr;
  }
}

.intencje {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.intencje__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}
@media (max-width: 1024px) {
  .intencje__grid {
    grid-template-columns: 1fr;
  }
}
.intencje__heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}
.intencje__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.intencje__date {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.intencje__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.intencje__table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  color: #333;
}
.intencje__table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.intencje__table tr:nth-child(odd) {
  background-color: #ffffff;
}
.intencje__table tr:hover {
  background-color: #f1f1f1;
}
.intencje__table td:first-child {
  font-weight: 600;
}

.ogloszenia {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.ogloszenia__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}
@media (max-width: 1024px) {
  .ogloszenia__grid {
    grid-template-columns: 1fr;
  }
}
.ogloszenia__content {
  font-size: 1rem;
  line-height: 1.6;
}
.ogloszenia__archiwum {
  margin: 0 30px 50px 30px;
}
@media (max-width: 767px) {
  .ogloszenia__archiwum {
    margin: 0 0 40px 0;
  }
}
.ogloszenia__heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.ogloszenia__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}
.ogloszenia__item {
  margin-bottom: 10px;
}
.ogloszenia__item a {
  text-decoration: none;
  font-weight: 700;
  color: #464646;
}
.ogloszenia__item a:hover {
  text-decoration: underline;
}
.ogloszenia .btn {
  margin-top: 10px;
}

/* ARCHIVE */
.ogloszenia-archive {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.ogloszenia-archive__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.ogloszenia-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .ogloszenia-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ogloszenia-archive__grid {
    grid-template-columns: 1fr;
  }
}
.ogloszenia-archive__item {
  background-color: rgba(255, 255, 255, 0.5254901961);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.ogloszenia-archive__item-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.ogloszenia-archive__pagination {
  margin-top: 40px;
  text-align: center;
}
.ogloszenia-archive__pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 15px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
}
.ogloszenia-archive__pagination .page-numbers:hover {
  background-color: #DBA860;
  color: #fff;
}
.ogloszenia-archive__pagination .page-numbers.current {
  background-color: #DBA860;
  color: #fff;
  font-weight: 700;
}
.ogloszenia-archive .btn {
  padding: 8px 20px;
  font-size: 12px;
}

.co-gdzie-kiedy {
  padding-top: 40px !important;
  padding-bottom: 60px !important;
}
.co-gdzie-kiedy__heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}
.co-gdzie-kiedy__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.co-gdzie-kiedy__row--two-columns {
  display: grid;
  grid-template-columns: 33% 66%;
  gap: 20px;
}
@media (max-width: 768px) {
  .co-gdzie-kiedy__row--two-columns {
    grid-template-columns: 1fr;
  }
}
.co-gdzie-kiedy__column {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 5px 30px;
}
.co-gdzie-kiedy__column--66 {
  display: flex;
  gap: 50px;
}
@media (max-width: 768px) {
  .co-gdzie-kiedy__column--66 {
    flex-wrap: wrap;
  }
}
.co-gdzie-kiedy__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
}
.co-gdzie-kiedy__content {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}
.co-gdzie-kiedy__line {
  border-bottom: 3px solid #DBA860;
  display: block;
  width: 90%;
  margin: 90px auto;
}

.wspolnota {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.wspolnota__card {
  display: flex;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-height: 1000px;
  margin: 0 auto;
}
@media (max-width: 875px) {
  .wspolnota__card {
    flex-direction: column !important;
    max-height: 1500px;
  }
}
.wspolnota__card--reverse {
  flex-direction: row-reverse;
}
.wspolnota__image {
  flex: 0 0 50%;
  width: 50%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 875px) {
  .wspolnota__image {
    max-height: 500px;
    width: 100%;
  }
}
.wspolnota__content {
  flex: 0 1 50%;
  width: 50%;
  padding: 10px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 875px) {
  .wspolnota__content {
    padding: 20px;
    width: 80%;
  }
}
.wspolnota__name {
  font-size: 2.5em;
  font-weight: 700;
  text-transform: none;
  line-height: 1.36em;
  letter-spacing: 0px;
  margin-bottom: 10px;
}
@media (max-width: 875px) {
  .wspolnota__name {
    font-size: 2em;
  }
}
.wspolnota__icon-text {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 15px;
  margin: 15px 0;
}
.wspolnota__icon-content {
  text-align: left;
}
.wspolnota__icon-heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 5px 0;
}
.wspolnota__icon-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wspolnota__icon {
  width: 40px;
  height: 40px;
}
.wspolnota__since {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: bold;
}
.wspolnota__funkcje-list {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}
.wspolnota__funkcje-item {
  margin: 5px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wspolnota__funkcje-item i {
  color: #DBA860;
  font-size: 0.9rem;
}

.wspolnota__siostry .wspolnota__card {
  max-height: 600px !important;
}
@media (max-width: 875px) {
  .wspolnota__siostry .wspolnota__card {
    max-height: 1300px !important;
  }
}

.o-parafii {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.o-parafii__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}
@media (max-width: 1024px) {
  .o-parafii__grid {
    grid-template-columns: 1fr;
  }
}
.o-parafii__content {
  margin-bottom: 40px;
}
.o-parafii__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.o-parafii__description {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.o-parafii__list-container {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .o-parafii__list-container {
    flex-direction: column;
  }
}
.o-parafii__list {
  flex: 1;
  list-style: none;
  padding: 0;
}
.o-parafii__list-item {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.o-parafii__icon {
  color: #DBA860;
  font-size: 1rem;
}
.o-parafii__link {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.dyzury {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.dyzury__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}
@media (max-width: 1024px) {
  .dyzury__grid {
    grid-template-columns: 1fr;
  }
}
.dyzury__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
  font-size: 1rem;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  table-layout: fixed;
}
.dyzury__table-head {
  background-color: #DBA860;
  color: #fff;
}
.dyzury__table-header {
  padding: 10px 15px;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid #ddd;
  word-wrap: break-word;
}
.dyzury__table-body {
  background-color: #f9f9f9;
}
.dyzury__table-row:nth-child(even) {
  background-color: #f1f1f1;
}
.dyzury__table-cell {
  padding: 10px 15px;
  border: 1px solid #ddd;
  word-wrap: break-word;
}
@media (max-width: 600px) {
  .dyzury__table-cell {
    padding: 5px;
    font-size: 13px;
  }
}

.bracia-section {
  padding: 60px 0;
  text-align: center;
}
.bracia-section__subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #dba860;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.bracia-section__title {
  font-size: 36px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 40px;
}
.bracia-section__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.bracia-section__item {
  text-align: center;
  width: 25%;
}
@media (max-width: 1030px) {
  .bracia-section__item {
    width: 30%;
  }
}
@media (max-width: 650px) {
  .bracia-section__item {
    width: 45%;
  }
}
.bracia-section__image {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 15px;
}
@media (max-width: 650px) {
  .bracia-section__image {
    height: 270px;
  }
}
.bracia-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bracia-section__name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.kontakt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
@media (max-width: 767px) {
  .kontakt {
    grid-template-columns: 1fr;
  }
}
.kontakt__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kontakt__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.kontakt__form {
  padding: 38px 10px;
}
@media (max-width: 767px) {
  .kontakt__form {
    padding: 15px 0;
  }
}
.kontakt__details {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}
.kontakt__details li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kontakt__details li i {
  color: #DBA860;
  font-size: 1.2rem;
  width: 24px;
}
.kontakt__map {
  margin-bottom: -10px;
}

body {
  background-color: #F2F0EC;
  margin: 0 0 -10px 0;
  font-family: "Poppins";
  color: #464646;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.main-section-heading {
  margin: 40px 0 -20px 0;
}

.main-section-heading p {
  font-size: 0.768em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 4.4px;
  color: #DBA860;
  margin-bottom: 0;
}

.light-section {
  background-color: #F2F0EC;
  padding: 60px 15px;
  margin: 0;
  text-align: center;
}

.light-section > div {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.separator {
  width: 90px;
  border-bottom: 3px solid #dba860;
  margin-bottom: 15px;
}

.center-icon-box .uagb-ifb-left-title-image {
  justify-content: center;
}

.center-icon-box .uagb-ifb-title-wrap {
  width: auto !important;
  flex-grow: 0 !important;
}

.center-icon-box .uagb-ifb-title {
  text-align: left;
}

.page-content {
  background-color: white;
}

.page-content .container {
  padding-top: 30px;
  padding-bottom: 30px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s;
  width: fit-content;
}
.btn:hover {
  transform: scale(1.05);
}
.btn--primary {
  background-color: #dba860;
  color: white;
  border-radius: 30px;
  padding: 13px 24px;
  font-size: 14px;
}
.btn--primary:hover {
  background-color: #b88a4f;
}
.btn--secondary {
  background-color: #a57e6d;
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.3px;
  padding: 5px 10px;
  border-radius: 10px;
}

h1 {
  font-size: 222px;
}

h2 {
  font-size: 2.5em;
  font-weight: 700;
  text-transform: none;
  line-height: 1.1em;
  letter-spacing: 0px;
}

a {
  font-weight: bold;
  text-decoration: none;
  color: black;
}

.block {
  background-color: #fff;
  border-radius: 8px;
  padding: 50px 25px;
  width: 28%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.block__icon {
  margin-bottom: 15px;
}
.block__icon img {
  max-width: 95px;
  height: auto;
}
.block__title {
  font-size: 1.3em;
  font-weight: 800;
  text-transform: none;
  line-height: 1em;
  letter-spacing: 0px;
}
.block__text {
  font-size: 16px;
  color: #8C8C8C;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: none;
  line-height: 1.857em;
  letter-spacing: -0.42px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.cards .card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 310px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.cards .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
  z-index: 1;
}
.cards .card__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 25px;
}
.cards .card__content .card__title {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}

/* DOUBLE SECTION ON ŻYWY KOŚCIÓŁ */
.double-section {
  gap: 0;
  margin-bottom: 0;
}

.double-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.double-section figure {
  margin: 0 !important;
  height: 100%;
}

.double-section-padding {
  padding: 80px 60px;
}
@media (max-width: 767px) {
  .double-section-padding {
    padding: 40px 15px;
  }
}

/*# sourceMappingURL=style.css.map */






.ogloszenia-archive__item-image img {
  border-radius: 10px;
  height: 220px;
    width: 100%;
    object-fit: cover;
}
@media (max-width: 767px) {
  .homepage-aktualnosci__header {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .homepage-aktualnosci__grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}