@import url("https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.3.2/css/bootstrap.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");

:root {
  --brand: rgba(233, 101, 101, 1);
  --brand-heading: rgba(241, 95, 95, 1);
  --body-text: rgba(103, 103, 103, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: sans-serif;
}

img {
  max-width: 100%;
}

main {
  background: rgb(245, 244, 244);
}

a {
  color: inherit;
}

/* Header / nav */

.page-topbar {
  background: #fff;
  padding: 10px 20px;
}

.site-nav .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo {
  width: 110px;
  height: 40px;
  object-fit: cover;
}

.title {
  color: var(--brand);
  font-family: Roboto, sans-serif;
  font-weight: bold;
  font-size: 16px;
}

.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--brand);
  cursor: pointer;
  padding: 8px;
}

.nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
}

.nav-links.is-open {
  display: flex;
}

.nav-links .menu-link {
  display: block;
  padding: 10px 0;
  color: var(--brand);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
}

.nav-links .menu-link:hover {
  color: #ff0000;
}

@media (min-width: 993px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    width: auto;
    gap: 24px;
  }

  .nav-links .menu-link {
    padding: 0;
  }

  .logo {
    width: 218px;
    height: 80px;
  }

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

/* Hero / welcome */

.hero {
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-images {
  flex: 1 1 280px;
  position: relative;
  min-height: 320px;
}

.cover-elderwomen-image img {
  width: 60%;
  border-radius: 15px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.25);
}

.cover-seniormen-image img {
  width: 40%;
  border-radius: 15px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: 0;
  right: 0;
}

.v1_153 {
  color: var(--brand-heading);
  font-family: sans-serif;
  font-weight: bold;
  font-size: 24px;
  text-align: justify;
  margin: 0 0 16px;
}

.v1_154 {
  color: var(--body-text);
  font-family: sans-serif;
  font-size: 15px;
  text-align: justify;
  line-height: 1.5;
}

.faith-section {
  padding: 20px;
}

/* Services page */

.services-section {
  padding: 20px;
}

.services {
  color: var(--brand-heading);
  font-family: Poppins, sans-serif;
  font-weight: bold;
  font-size: 28px;
  margin-top: 10px;
}

.services-hero-image {
  display: block;
  margin: 0 auto 20px;
  width: 90%;
}

.divider {
  display: block;
  margin: 0 auto 20px;
  width: 90%;
}

.section-subhead {
  color: var(--brand-heading);
  margin-top: 30px;
}

@media (min-width: 993px) {
  .services {
    font-size: 36px;
  }

  .services-hero-image {
    width: 70%;
  }

  .divider {
    width: 70%;
  }
}

/* Activities page */

.activities-section {
  padding: 20px;
}

.activity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 20px 0;
}

.activity-grid .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.activity-grid .image-container img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.activity-grid .image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5), -1px -1px 0 rgba(255, 255, 255, 0.3);
}

.activities-description {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 993px) {
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activity-grid .image-text {
    font-size: 24px;
  }
}

@media (min-width: 993px) {
  .v1_153 {
    font-size: 40px;
  }

  .v1_154 {
    font-size: 21px;
  }
}

/* Footer */

.page-footer {
  margin-top: auto;
  background: #fff;
}

.footer-cta {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.footer-cta-text {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: bold;
}

.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  width: 100%;
  max-width: 280px;
}

.cta-button-primary {
  background: #fff;
  color: var(--brand);
}

.cta-button-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-button-primary:hover {
  background: #f5f5f5;
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 30px 20px;
  text-align: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: 180px;
  height: 60px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 10px;
}

.footer-about {
  color: var(--body-text);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.5;
}

@media (min-width: 601px) {
  .footer-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-button {
    width: auto;
  }
}

.footer-social {
  margin-top: 20px;
}

.footer-social img {
  height: 36px;
  margin: 0 6px;
}

.footer-contact h5,
.footer-links h5 {
  color: #333;
}

.footer-contact p {
  color: var(--body-text);
  line-height: 1.6;
}

.footer-contact p a {
  color: var(--brand);
  text-decoration: none;
  font-weight: bold;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav .menu-link {
  color: var(--brand);
  text-decoration: none;
}

.footer-nav .menu-link:hover {
  color: #ff0000;
}

.copyright {
  font-size: 12px;
  color: var(--brand);
  margin-top: 20px;
}

@media (min-width: 993px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

  .footer-col {
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* Location page */

.location-section {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.location-map {
  position: relative;
  width: 100%;
  padding-top: 75%;
  border: 2px solid #ececec;
  border-radius: 5px;
  overflow: hidden;
}

.location-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-text {
  border: 2px solid var(--brand);
  border-radius: 50px;
  padding: 30px;
}

@media (min-width: 993px) {
  .location-section {
    flex-direction: row;
    align-items: flex-start;
  }

  .location-map {
    flex: 1 1 50%;
    padding-top: 37.5%;
  }

  .location-text {
    flex: 1 1 50%;
  }
}
