/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Bree Serif", sans-serif;
  --nav-font: "Bree Serif", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #7e6f5d;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #31438d;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #23b0e3;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #f6fcfe;
  /* The default color of the main navmenu links */
  --nav-hover-color: #e98c00;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #7e6f5d;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e98c00;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f6f6f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #3e4a72;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #3e4a72;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}



/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}


a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: inherit;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  width: 100%;
  height: 100%;
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #31438d;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
  width: 100%;
}



.footer-before-parent {
  position: relative;
  width: 100%;
}

.footer-before {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: auto;
}

.footer-before path {
  fill: var(--background-color) !important;
  stroke: var(--default-color) !important;
  stroke-width: 0.1px !important;
}



@media (max-width: 768px) {
  .footer-before {
    bottom: 0;
  }
}



.footer .footer-logo {
  max-width: 100%;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  margin-top: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: white;
  background-color: #3e4a72;
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs img {
  height: 11px;
  filter: brightness(0) invert(1)
}


.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, white, transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title .title-wrapper {
  position: relative;
  display: inline-block;
  padding: 30px 0;
}

.section-title .title-content {
  position: relative;
  z-index: 1;
}

.section-title .subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.section-title .subtitle-wrapper .bi {
  color: var(--accent-color);
  font-size: 14px;
  animation: twinkle 1.5s ease-in-out infinite;
}

.section-title .subtitle-wrapper .bi:last-child {
  animation-delay: 0.5s;
}

.section-title .subtitle-wrapper .subtitle {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(120deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title .title-shape {
  width: 200px;
  height: 20px;
  margin: 0 auto;
  color: var(--accent-color);
  opacity: 0.5;
}

.section-title .title-shape svg {
  width: 100%;
  height: 100%;
}

.section-title p {
  margin: 10px auto 0;
  font-size: 16px;
  max-width: 700px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
}

@keyframes rotate {
  from {
    transform: translateX(-50%) rotate(45deg);
  }

  to {
    transform: translateX(-50%) rotate(405deg);
  }
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@media (max-width: 768px) {
  .section-title .title-wrapper {
    padding: 20px 0;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .section-title .subtitle-wrapper .subtitle {
    font-size: 13px;
  }

  .section-title .accent-box {
    width: 45px;
    height: 45px;
  }
}


.container {
  z-index:1;
  position: relative;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 100px;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 44%;
    background-image: linear-gradient(180deg, color-mix(in srgb, var(--background-color), transparent 15%), color-mix(in srgb, var(--background-color), transparent 15%) 100%), linear-gradient(180deg, rgb(0, 0, 0), rgb(0, 0, 0) 100%);
    top: 0;
    bottom: 30px;
    z-index: 2;
    border-radius: 0px 0px 150px 0px;
    opacity: 0.9;
  }
}

.hero:before {
  position: absolute;
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  inset: 0;
  z-index: 2;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container,
.hero .container-fluid {
  z-index: 3;
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.hero blockquote {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding-left: 20px;
  border-left: 2px solid var(--accent-color);
  margin: 40px 0;
}

.btn-church {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  border: none;
}


.btn-church:hover {
  background: var(--heading-color);
  color: white;
}

.hero .btn-church:hover {
  background: var(--accent-color)
}

.about-church .btn-church:hover {
  background: var(--accent-color)
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--default-color);
}

.hero .btn-watch-video:hover i {
  color: var(--default-color);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero .btn-church,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 15px;
  border-radius: 50px;
  display: inline-flex;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.events .nav-tabs li {
  display: inline-block;
  margin: 0 5px;
}

.events .nav-tabs a {
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  background-color: transparent;
  color: var(--default-color);
  padding: 12px 40px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .events .nav-tabs a {
    padding: 10px 30px;
  }
}

@media (max-width: 767px) {
  .events .nav-tabs a {
    padding: 8px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .events .nav-tabs a {
    padding: 8px 20px;
    font-size: 13px;
  }
}

.events .nav-tabs a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.events .nav-tabs a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.events .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 40px auto;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (min-width: 991px) {
  .events .sub-heading {
    width: 80%;
  }
}

.events .tab-pane {
  transition: all ease-in-out 0.3s;
}

.events .schedule-item,
.events .ktn-gatherings li {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 15px;
  transition: all ease-in-out 0.3s;
  border-radius: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
}

.events .schedule-item:hover,
.events .ktn-gatherings li:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  transform: translateX(5px);
}

.events .schedule-item i {
  color: var(--heading-color);
  font-size: 35px;
}

.events .schedule-item time,
.events .ktn-gatherings .ktn-time {
  font-weight: 600;
  color: var(--accent-color);
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 10px;
  width: fit-content;
}

.events .schedule-item .speaker {
  width: 65px;
  height: 65px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 15px 15px 0;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all ease-in-out 0.3s;
}

.events .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}

.events .schedule-item:hover .speaker {
  border-color: var(--accent-color);
}

.events .schedule-item h4,
.events .ktn-gatherings [class^="ktn-type"] {
  font-size: 20px !important;
  font-weight: 700 !important;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-style: normal;
}

.events .schedule-item h4 span {
  font-style: italic;
  color: black;
  font-weight: normal;
  font-size: 16px;
  padding-left: 0px;
}

@media (max-width: 767px) {
  .events .schedule-item h4 {
    font-size: 18px;
  }

  .events .schedule-item h4 span {
    display: block;
    padding-left: 0;
    margin-top: 5px;
  }


  .events .schedule-item i {
    color: var(--heading-color);
    font-size: 35px;
    float: right;
  }

  .events .schedule-item time,
  .events .ktn-gatherings .ktn-time {
    position: absolute;
    top: 20px;
    right: 20px;
  }

}

.events .schedule-item p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .events .schedule-item {
    padding: 20px 10px;
  }

  .events .schedule-item:hover {
    transform: none;
  }
}


/* KERKTIJDEN WIDGET */


.ktn-gatherings .ktn-date {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 5px;
  width: fit-content;
}

.ktn-gatherings .ktn-type-170,
.ktn-gatherings .ktn-type-175 {
  display: none;
}

.events .ktn-gatherings [class^="ktn-type"] {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 5px;
}


.events .ktn-gatherings .ktn-voorganger a {
  background-color: #ecf5ff;
  padding: 10px;
  margin-bottom: 5px;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  line-height: 1;
  color: black;
}

.events .ktn-gatherings .ktn-dienst {
  width: 200px;
  max-width: 100%;
}

.events .ktn-gatherings .ktn-notition {
  display: block;
  width: 100%;
}

.events .ktn-gatherings .ktn-locatie>span {
  margin-left: 0 !important;
  line-height: 1.6;
  font-style: normal;
}

.ktn-locatie {
  margin-left: 0 !important;

}


.ktn-gatherings .ktn-locatie .ktn-locatie-details {
  background-color: transparent;
}



.events .ktn-gatherings .ktn-voorganger a::before {
  content: "\F4DA";
  font-family: "bootstrap-icons" !important;
  font-size: 1.2em;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: -3px;
}

.ktn-more a {
  display: block !important;
  width: fit-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
  color: var(--contrast-color);
  background: rgb(235, 176, 65);
  background: linear-gradient(34deg, rgba(235, 176, 65, 1) 0%, rgba(135, 190, 113, 1) 50%, rgba(235, 176, 65, 1) 96%);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  transition: all .4sease-in-out;
  background-size: 300% 100%;
  animation: fadeInUp 1s both 0.4s;
  color: white;
}

.ktn-more a:hover {
  background-position: 100% 0;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  color: white;

}

.ktn-more img {
  filter: brightness(0) saturate(100%) invert(100%);
}

.modalwelcome .ktn-more {
  display: none;
}

.modalwelcome .ktn-date {
  display: block;
  width: 100%;
}

#scrollModal {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 500px;
  max-width: 80%;
  padding: 15px;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: none;
  z-index: 1000;
  animation: floatUpDown 2s infinite alternate ease-in-out;

}

#scrollModal .close-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 10px;
}

/* Fade-in effect */
#scrollModal.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Fade-out effect */
#scrollModal.hide {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Animatie om de modal zachtjes op en neer te laten bewegen */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-5px);
  }
}

/* Stijl voor de sluitknop */
#scrollModal .close-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 10px;
}

/*--------------------------------------------------------------
# about-church Section
--------------------------------------------------------------*/
.about-church .section-title {
  margin-bottom: 60px;
}

.about-church .content {
  background: #3e4a72;
  color: var(--contrast-color);
  padding: 7rem 0;
}

.about-church .content .img-overlap {
  margin-top: -150px;
  height: 600px;
    object-fit: cover;
}

.about-church p {
  color: var(--contrast-color);
}

.about-church .content-title {
  color: var(--contrast-color);
  font-weight: 300;
  text-align: left;
}

.about-church .content-title strong {
  font-weight: 700;
}

.about-church .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 1.3rem;
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.what-we-believe .about-content {
  position: relative;
  z-index: 1;
}

.what-we-believe .about-content .about-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.what-we-believe .about-content .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.what-we-believe .about-content .about-title .text-underline {
  position: relative;
  display: inline-block;
}

.what-we-believe .about-content .about-title .text-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 0.5rem;
  background-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
  z-index: -1;
}

.what-we-believe .about-content .about-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.what-we-believe .about-content .about-points .about-point {
  margin-bottom: 1.5rem;
}

.what-we-believe .about-content .about-points .about-point .point-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.what-we-believe .about-content .about-points .about-point .point-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.what-we-believe .about-content .about-points .about-point .point-description {
  font-size: 0.875rem;
}



.what-we-believe .about-content::before {
  width: 10rem;
  height: 10rem;
  top: 3rem;
  left: 15rem;
}

.what-we-believe .about-content::after {
  width: 5rem;
  height: 5rem;
  bottom: -2.5rem;
  right: 2.5rem;
}

.what-we-believe .about-image {
  position: relative;
  z-index: 1;
}

.what-we-believe .about-image img {
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.what-we-believe .about-image::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -1rem;
  right: -1rem;
  background-color: color-mix(in srgb, var(--accent-color) 15%, transparent);
  border-radius: 1rem;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .what-we-believe .about-content {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
  border-radius: 0px 20px 20px 20px;
}

.recent-posts .post-box .post-img img {
  transition: 0.5s;
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.recent-posts .post-box .meta {
  margin-top: 15px;
}

.recent-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-color);
}

.recent-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-box .post-title {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-posts .post-box p {
  margin: 15px 0 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-posts .post-box:hover .post-title {
  color: var(--accent-color);
}

.recent-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--heading-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-person {
  display: flex;
}

.contact-2 .info-box {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact-2 .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact-2 .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact-2 .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact-2 .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact-2 .info-box {
    padding: 1.5rem;
  }
}

.contact-2 .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-2 .info-item:last-child {
  margin-bottom: 0;
}

.contact-2 .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact-2 .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact-2 .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact-2 .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-2 .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-2 .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact-2 .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact-2 .contact-form {
    padding: 1.5rem;
  }
}

.contact-2 .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact-2 .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact-2 .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact-2 .contact-form .form-control,
.contact-2 .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact-2 .contact-form .form-control:focus,
.contact-2 .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact-2 .contact-form .form-control::placeholder,
.contact-2 .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-2 .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact-2 .contact-form .btn i {
  font-size: 1.25rem;
}

.contact-2 .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--heading-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  height: 0px;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--heading-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
  height: auto;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.faq .faq-container {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content p {
  margin: 30px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 15px 0;
  font-weight: 400;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-right: 0.5rem;
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 15px;
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: var(--heading-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
  border-radius: 15px;
  text-align: center;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .article {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 15px;
}

.service-details .services-img {
  margin-bottom: 20px;
  border-radius: 10px !important;
}


.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style-position: outside;
}

.service-details ul li::marker {
  color: var(--accent-color)
}

.service-details ol li::marker {
  color: var(--heading-color);
  font-weight: bold;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/

body.blog-page {
  background-color: var(--background-color);

}

.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
  height: 240px;
  object-fit: cover;
}

.blog-posts .post-img img {
  height: 240px;
  object-fit: cover;
  width: 100%;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.post-box .post-categorie {
  position: absolute;
  top: 10px;
  left: -5px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 5px;
  padding: 5px 5px 5px 15px;
  font-size: 15px;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: transparent;
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
body.blog-details-page,
body.blog-details-page section {
  background-color: #f7f6f4;
}

.blog-details {
  margin-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 20px 20px 0px 0px;
  height: 400px;
  object-fit: cover;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 60px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  position: relative;
}

.widget-title:before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  left: 0;
  right: 0;
  bottom: 1px;
}

.widget-title:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  bottom: 1px;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 20px 20px 0px 20px
}

.recent-posts-widget .post-item h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/* CONTENT PAGE */


.videos>div>div {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 of the videos */
  margin-bottom: 20px;
}

.videos>div>div>iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.content-page table {
  width: 100%;
}

.content-page td,
.content-page th {
  border: 1px solid #ddd;
  padding: 8px;
}

.content-page tr:nth-child(even) {
  background-color: #f2f2f2;
}

.content-page tr:hover {
  background-color: #ddd;
}

.content-page th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: var(--heading-color);
  color: white;
  font-style: var(--heading-font);
}

.content-container .container {
  max-width: 100ch;
}

.content-page img.services-img {
  position: relative;
  height: 450px;
  width: 100%;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 20px;

}

.content-page .content-container .container {
  background-color: white;
  padding-top: 10px;
  padding-bottom: 20px;
  border-radius: 20px;
}



.content-page .content-container {
  background-color: #f6f6f7;
}

body.content-page {
  background-color: #f6f6f7;
}

.content-page .service-details {
  background-color: #f6f6f7;

}



/* KERKOMROEP */


#audioPlayerContainer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--heading-color);
  color: white;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-family: Arial, sans-serif;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease-in-out;
  z-index: 3;
}

#audioPlayerHeader {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

#audioPlayerContainer.collapsed {
  transform: translateY(90%);
}

#audioTitle {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--heading-font);
}

#audioInfo {
  text-align: center;
}

#audioControls button {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  margin: 0 10px;
}

#audioControls {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

#progressBar {
  width: 80%;
  margin: 0 15px;
  cursor: pointer;
}

#playPauseButton i {
  padding: 20px;
  background-color: var(--accent-color);
  border-radius: 50px;
}

body.kerkomroep-page {
  margin-bottom: 170px;
}

.kerkomroep-container .container {
  position: relative;
  z-index: 1;
}

.sermon-card {
  background-color: var(--surface-color);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px
}

#sermons-list div>a {
  margin-left: 10px;
}


/*--------------------------------------------------------------
# Team 2 Section
--------------------------------------------------------------*/
.team-2 .member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 15px;
  padding: 20px 15px 30px 15px;
  overflow: hidden;
  width: 100%;
}

.team-2 .member img {
  border-radius: 15px;
  overflow: hidden;
}

.team-2 .member .member-content {
  padding: 0 20px 30px 20px;
}

.team-2 .member h4 {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
}

.team-2 .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team-2 .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.team-2 .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

.team-2 .member .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.team-2 .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team-2 span.mail,
.team-2 span.phone {
  color: var(--accent-color);
  display: block;
  padding-top: 10px;
}

.team-2 span.phone i,
.team-2 span.mail i {
  background-color: var(--accent-color);
  padding: 5px 7px 5px 7px;
  border-radius: 20px;
  color: white;
}


/*--------------------------------------------------------------
# Activities Section
--------------------------------------------------------------*/

.recent-activities,
.contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 0.5fr));
  gap: 15px;
  height: fit-content;
}

.vereniging .recent-activities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 0.33fr));
  gap: 15px;
  height: fit-content;
}

.recent-activities article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.vereniging article.vereniging-event {
  box-shadow: none;
  background-color: transparent;
}

.recent-activities .activities-img,
.contacts .activities-img {
  height: 180px;
  background-size: cover;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-activities .activities-date {
  margin-bottom: 3px;
  padding: 5px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 10px;
  width: max-content;
  font-weight: 600;
  font-size: medium;
  position: absolute;
  top: 10px;
  left: 10px;
  transition: all 0.3s ease-in-out;
}

.recent-activities .activities-more {
  margin-bottom: 0px;
  padding: 10px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  width: max-content;
  font-weight: 800;
  font-size: large;
  position: absolute;
  bottom: 10px;
  right: 10px;
  line-height: 0;
  transition: all 0.3s ease-in-out;
}

.recent-activities article:hover .activities-more {
  background-color: var(--heading-color);
  color: white;
}

.recent-activities article:hover .activities-date {
  background-color: var(--heading-color);
  color: white;
}

.recent-activities .activities-info {
  font-size: small;
  margin: 2px;
}

.recent-activities .activities-info i {
  margin-right: 8px;
}

.recent-activities .activities-category {
  font-size: 16px;
  color: #6f6f6f;
  margin-bottom: 10px;
}

.recent-activities .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-activities .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-activities .title a:hover {
  color: var(--accent-color);
}


/* DONATIONS */
.donation-container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: var(--background-color);
    color: var(--default-color);
}
.donation-container input, select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid black;
}


/* SERMON BANNER */

.sermon-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  background: white;
  color: black;
  padding: 15px;
  text-align: center;
  align-items: center;
  font-size: 14px;
  z-index: 9999;
  border-radius: 10px;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(33, 40, 50, 0.15);
}

#kerk-popup-close {
  color: var(--heading-color);
  cursor: pointer;
  margin-left: 10px;
  font-size: 20px;
}

.date-sermon-popup {
  background-color: var(--heading-color);
  color: white;
  padding: 2px 5px 2px 5px;
  border-radius: 2px;
  font-weight: 600;
}


@media screen and (max-width: 768px) {
  .sermon-banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    transform: translate(0, 0);
    z-index: 999999;
  }
}



/* Accessibility Styles */
.high-contrast {
  --default-color: black !important;
  --accent-color: black !important;
  --heading-color: black !important;
  --nav-mobile-background-color: #1e1e1e;

}



.high-contrast a,
.high-contrast h1,
.high-contrast h2,
.high-contrast h3,
.high-contrast h4,
.high-contrast h5,
.high-contrast h6 {
  color: black !important;
}

.high-contrast .dark-background a,
.high-contrast .dark-background h1,
.high-contrast .dark-background h2,
.high-contrast .dark-background h3,
.high-contrast .dark-background h4,
.high-contrast .dark-background h5,
.high-contrast .dark-background h6,
.high-contrast.dark-mode a,
.high-contrast.dark-mode h1,
.high-contrast.dark-mode h2,
.high-contrast.dark-mode h3,
.high-contrast.dark-mode h4,
.high-contrast.dark-mode h5,
.high-contrast.dark-mode h6 {
  color: #00ff00 !important;
}


.high-contrast .page-title h1 {
  color: white !important;
}

.high-contrast .events .schedule-item p {
  color: black;
  font-weight: 400;
}

.high-contrast.dark-mode .events .schedule-item p {
  color: white;
}

.high-contrast .about-church .content-title {
  color: white !important;
}

.high-contrast a.btn-church {
  color: white !important;
}

.high-contrast .about-church a.btn-church {
  background-color: white;
  color: black !important;
}

.high-contrast .about-church a.btn-church:hover {
  background-color: white;
  color: black !important;
}

.high-contrast .events .nav-tabs a.active {
  color: white !important;
}

.high-contrast .post-box .post-categorie {
  color: white !important;
}

.high-contrast .contact-2 .info-item .content h4 {
  color: white !important;
}

.high-contrast .social-links i {
  color: white !important;
}

.high-contrast .surface-color,
.high-contrast .header {
  background: black !important;
  color: white !important;
}

.high-contrast .header a {
  color: white !important;
}

.high-contrast .call-to-action .content h2,
.call-to-action .content p {
  color: white !important;
}

.call-to-action .content a.btn {
  background-color: white;
  color: black;
}

.high-contrast .dark-background {
  background: black !important;
}

.high-contrast input,
.high-contrast textarea,
.high-contrast select {
  color: white !important;
  border: 2px solid yellow !important;
}

.section.team-2 {
  background-color: transparent;
}

.high-contrast button {
  background: yellow !important;
  color: black !important;
  border: 2px solid black !important;
}

.high-contrast button:hover {
  background: #ffcc00 !important;
  /* Oranjegeel bij hover */
}

.high-contrast .box-shadow {
  box-shadow: 0 0 8px yellow !important;
}

.large-text {
  font-size: 1.2em !important;
}

.large-text p,
.large-text a,
.large-text span,
.large-text li,
.large-text button,
.large-text input,
.large-text textarea,
.large-text h1,
.large-text h2,
.large-text h3,
.large-text h4,
.large-text h5,
.large-text h6 {
  font-size: 1.2em !important;
}

.no-animations *,
.no-animations *::before,
.no-animations *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

.dark-mode {
  --background-color: #121212 !important;
  --default-color: #dcdcdc;
  --heading-color: var(--accent-color);
  --accent-color: var(--accent-color);
  --surface-color: #1e1e1e;
  --contrast-color: white !important;
  --border-color: #444;
  --shadow-color: rgba(255, 255, 255, 0.2);
  --nav-dropdown-background-color: #1e1e1e;
  --nav-mobile-background-color: #1e1e1e;
}

.dark-mode.high-contrast {
  --heading-color: var(--accent-color) !important;
  --default-color: white !important;
}

.dark-mode.high-contrast .content blockquote:after {
  background-color: var(--heading-color);
}

.dark-mode.high-contrast .service-details .services-list a i,
.dark-mode.high-contrast .service-details .download-catalog a i {
  color: white !important;
}

.dark-mode.high-contrast .team-2 span.mail,
.dark-mode.high-contrast .team-2 span.phone {
  color: white !important;
}

.dark-mode.high-contrast .section-title {
  --heading-color: #00ff00 !important;
  --accent-color: #00ff00 !important;
}

.dark-mode.high-contrast button,
.dark-mode.high-contrast button i {
  background: white !important;
  color: black !important;
}

.dark-mode .light-background {
  --background-color: #2a2a2a !important;

}

.dark-mode .about-church .content {
  background-color: #2a2a2a !important
}

.dark-mode .contact-2 .info-box,
.dark-mode .contact-2 .contact-form {
  background-color: black;
}

.dark-mode body,
.dark-mode .surface-color,
.dark-mode .header,
.dark-mode .footer {
  background: var(--background-color) !important;
  color: var(--default-color) !important;
}

.dark-mode a {
  color: var(--accent-color) !important;
}

.dark-mode .navmenu a {
  color: var(--contrast-color) !important;
}

.dark-mode .light-background {
  background: #2a2a2a !important;
  color: var(--default-color) !important;
}

.dark-mode .dark-background {
  background: #000000 !important;
  color: var(--contrast-color) !important;
}

.dark-mode input,
.dark-mode textarea,
.dark-mode select {
  color: var(--contrast-color) !important;
  border: 1px solid var(--border-color) !important;
}


.dark-mode .form-check.form-switch.input {
  background: transparent;
  color: white;
  border: 1px solid white;
}
.dark-mode button {
  background: var(--accent-color) !important;
  color: var(--contrast-color) !important;
}

.dark-mode button i {
  color: var(--contrast-color) !important;
}

.dark-mode .box-shadow {
  box-shadow: 0 4px 8px var(--shadow-color) !important;
}

.dark-mode .events .schedule-item h4 span {
  color: var(--contrast-color) !important;
}

.dark-mode .events .schedule-item time {
  background: var(--border-color) !important;
  color: var(--contrast-color) !important;
}

.dark-mode .footer .social-links a {
  background: var(--accent-color) !important;
  color: var(--contrast-color) !important;
}

.dark-mode .call-to-action .container {
  background-color: #2a2a2a !important;
  color: var(--contrast-color) !important;
}

.dark-mode .call-to-action .btn-cta {
  background-color: var(--accent-color);
  color: white !important;
  border: none;
}

.dark-mode .blog-posts .post-title a {
  color: var(--contrast-color) !important;
}

.dark-mode .blog-posts .post-title a:hover {
  color: var(--accent-color) !important;
}

.dark-mode .toolbox-toggle {
  background: var(--heading-color) !important;
  color: var(--contrast-color) !important;
}

.dark-mode .faq-container .faq-item {
  background: black !important;
  color: var(--contrast-color) !important;
  border: 1px solid var(--border-color) !important;
}

.dark-mode .section-title p,
.dark-mode .btn-church,
.dark-mode .events .nav-tabs a.active {
  color: white !important;
}


.dark-mode .faq-container .faq-item h3 {
  color: var(--heading-color) !important;
}

.dark-mode .faq-container .faq-item .faq-content {
  color: var(--default-color) !important;
}

.dark-mode .footer .footer-links ul a {
  color: white !important;
}

.dark-mode .footer-logo {
  filter: brightness(0) invert(1);
}



.dark-mode .sermon-banner {
  background-color: black;
}

.dark-mode .page-title {
  background-color: black !important;
}

.dark-mode .content-container,
body.dark-mode.blog-details-page,
body.dark-mode.blog-details-page section,
body.dark-mode.content-page .service-details {
  background-color: var(--background-color) !important;
}

.dark-mode.high-contrast .service-details .services-list a.active,
.dark-mode.high-contrast .service-details .services-list a {
  border: 1px solid #00ff00 ;
}

.dark-mode.high-contrast .service-details .services-list a.active {
  color: #00ff00 !important;
}


.dark-mode .content-container .container,
body.dark-mode.content-page .service-details .service-box,
.dark-mode.content-page .service-details .services-list,
.dark-mode .service-details .article {
  background-color: black;
}

.dark-mode.content-page td,
.dark-mode.content-page th {
  border: 1px solid rgb(179, 179, 179);
  padding: 8px;
}

.dark-mode.content-page tr:nth-child(even) {
  background-color: var(--background-color)
}

.dark-mode.content-page th {
  background-color: #8d3175;
}

.dark-mode .blog-pagination li a.active,
.dark-mode .blog-pagination li a:hover,
.dark-mode .tags-widget ul a:hover,
.dark-mode .content-container p,
.dark-mode .sermon-banner a {
  color: white !important;
}


.dark-mode .recent-posts-widget .post-item h4 a {
  color: var(--default-color) !important;
}

.dark-mode #audioPlayerContainer {
  background-color: black;
}

.dark-mode #audioPlayerContainer button {
  background-color: transparent !important;
}

.dark-mode.kerkomroep-page .content-container .container {
  background-color: transparent !important;
}

.dark-mode .sermon-card {
  background-color: black;
}


.dark-mode .service-details .services-list a.active,
.dark-mode .service-details .download-catalog a,
.dark-mode .service-details .services-list a {
  color: white !important;
}

.dark-mode .service-details .help-box {
  background-color: black !important;
}

.dark-mode .btn.btn-cta {
  color: black !important;
}




.dark-mode .navmenu .dropdown ul a:hover,
.dark-mode .navmenu .dropdown ul .active:hover,
.dark-mode .navmenu .dropdown ul li:hover>a {
  color: var(--accent-color) !important;
}


.high-contrast.dark-mode .btn,
.high-contrast.dark-mode .btn-church {
  border: 1px solid white;
}

.dark-mode.high-contrast .recent-posts .post-box p,
.dark-mode.high-contrast .contact-2 .contact-form p,
.dark-mode.high-contrast .contact-2 .info-box p {
  color: white !important;
  opacity: 1;
}

.high-contrast.dark-mode .faq-container .faq-item h3 {
  color: #00ff00 !important;
}

.high-contrast.dark-mode .faq .faq-arrow {
  color: var(--heading-color);
}

.dark-mode .modal-content {
  background-color: black !important;
}


/* Toolbox Styling */
.toolbox {
  position: fixed;
  bottom: 150px;
  right: 10px;
  background: var(--surface-color);
  border: 1px solid black;
  padding: 10px;
  box-shadow: 2px 2px 5px var(--shadow-color);
  display: none;
  z-index: 999;
  color: var(--default-color);
}

.toolbox label {
  display: block;
  margin-bottom: 5px;
}

.toolbox-toggle {
  position: fixed;
  bottom: 100px;
  right: -140px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 10px;
  cursor: pointer;
  border: none;
  border-radius: 20px 0px 0px 20px;
  z-index: 999;
  font-size: large;
}

.toolbox-toggle span {
  visibility: hidden;
}


.toolbox-toggle:hover span {
  visibility: visible;
}

.large-text .toolbox-toggle {
  right: -210px;

}

.toolbox-toggle:hover,
.toolbox-toggle:active {
  right: 0px;
}

@media screen and (max-width: 768px) {
  .toolbox-toggle {
    bottom: 120px;
  }
}



/*--------------------------------------------------------------
# Drive Content
--------------------------------------------------------------*/
.newsletter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  color: var(--default-color);
  background: var(--surface-color);
  transition: 0.2s ease;
  text-decoration: none;
}

.newsletter-link:hover,
.newsletter-link.active {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.newsletter-link i {
  flex: 0 0 auto;
  margin-top: 2px;
  font-size: 1.2rem;
}

.newsletter-link-content {
  min-width: 0;
}

.newsletter-link-title {
  display: block;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.newsletter-link-meta {
  display: block;
  margin-top: 3px;
  font-size: 0.8rem;
  opacity: 0.75;
}

.newsletter-status {
  padding: 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.newsletter-viewer {
  position: relative;
  width: 100%;
  min-height: 750px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  background: #f5f5f5;
}

.newsletter-viewer iframe {
  display: block;
  width: 100%;
  height: 750px;
  border: 0;
}

.newsletter-viewer-message {
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: #666;
  text-align: center;
}

.newsletter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.newsletter-toolbar h2 {
  margin: 0;
}

.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 991.98px) {

  .newsletter-viewer,
  .newsletter-viewer iframe {
    min-height: 600px;
    height: 600px;
  }
}

@media (max-width: 575.98px) {

  .newsletter-viewer,
  .newsletter-viewer iframe {
    min-height: 500px;
    height: 500px;
  }
}
