@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter/Inter-VariableFont_opsz\,wght.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  font-family: Inter, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  padding-left: 0;
}

/* GLOBAL FLUID SIDE PADDING */
section,
header,
footer {
  padding-left: clamp(1rem, 5vw, 7rem);
  padding-right: clamp(1rem, 5vw, 7rem);
}

/* =========================
   HEADER
========================= */

header {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #0341a6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

header .left-side {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

header .left-side .header-logo {
  width: 3rem;
  height: 3rem;
}

header .left-side h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5625rem;
}

header .left-side p {
  color: #bfdbfe;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

header .right-side {
  display: flex;
  gap: 2rem;
  align-items: center;
}

header nav ul {
  display: flex;
  gap: 1rem;
  align-items: center;
  list-style-type: none;
}

header nav ul li a {
  color: #dbeafe;
  line-height: 1.5rem;
}

.current-menu-item a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

header .right-side i {
  color: #fff;
  cursor: pointer;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1102;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE MENU OVERLAY */
.menu-overlay {
  display: none;
}

@media (max-width: 1180px) {
  .hamburger {
    display: flex;
  }

  header .right-side {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 380px);
    height: 100vh;
    padding: 6rem 2rem 2rem;
    background: #0341a6;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 1101;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  }

  header .right-side.active {
    transform: translateX(0);
  }

  header nav {
    width: 100%;
  }

  header nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1.25rem;
  }

  header nav ul li {
    width: 100%;
  }

  header nav ul li a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }

  .menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1100;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
}

/* =========================
   HOME PAGE
========================= */

.home-hero {
  background:
    linear-gradient(90deg, rgba(3, 65, 166, 0.8) 0%, rgba(3, 65, 166, 0) 100%),
    url(../images/stlukes.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-text-section {
  padding: 10rem 0;
  max-width: 52rem;
}

.hero-text-section h1 {
  color: #fff;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 3.75rem;
}

.hero-text-section p {
  color: #eff6ff;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-top: 1rem;
}

.explore-community {
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.explore-community .top-section,
.leadership-section .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

h2 {
  color: #111827;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.25rem;
  text-transform: capitalize;
}

.explore-community .top-section .short-line,
.leadership-section .short-line {
  width: 6rem;
  height: 0.25rem;
  border-radius: 0.25rem;
  background-color: #0341a6;
}

.explore-community .explore-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  width: 100%;
}

.explore-community .explore-grid-container .explore-item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  background: #f0f4f8;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.explore-community .explore-grid-container .explore-item img {
  width: 4rem;
  height: 4rem;
}

.explore-community .explore-grid-container .explore-item h3 {
  margin-top: 1rem;
  color: #111827;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.explore-community .explore-grid-container .explore-item p {
  margin-top: 0.5rem;
  color: #4b5563;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.join-us-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9fafb;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.join-us-section .left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.join-us-section .left-side .join-us-info {
  margin-top: 1.5rem;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.8rem;
}

.join-us-section .service-times-container {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
}

.join-us-section .service-times-container .heading {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.join-us-section .service-times-container .heading img {
  width: 1.25rem;
  height: 1.25rem;
}

.join-us-section .service-times-container .heading h5 {
  color: #0341a6;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.join-us-section .service-times-container .service-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.join-us-section .service-times-container .service-time .service,
.join-us-section .service-times-container .service-time .time {
  color: #374151;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.join-us-section .service-times-container .other-services {
  color: #374151;
  font-size: 0.875rem;
  text-align: right;
  margin-top: 1rem;
}

.join-us-section .service-times-container .other-services a {
  color: #0341a6;
}

.map {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

/* =========================
   FOOTER
========================= */

footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #111827;
}

footer .section-one .heading {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

footer .section-one .heading .footer-logo {
  width: 2rem;
  height: 2rem;
}

footer h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

footer .contact-container {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

footer .contact-container i {
  color: #0341a6;
  font-size: 1rem;
}

footer .contact-container p {
  color: #d1d5db;
  line-height: 1.5rem;
}

/* =========================
   ABOUT PAGE
========================= */

.about-us-hero {
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  background: rgba(3, 65, 166, 0.6);
}

.about-us-hero h1 {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.about-us-hero p {
  max-width: 40rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-align: center;
}

.mission-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.mission-section .left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mission-section .left-side .short-line {
  margin-top: 1.5rem;
  width: 4rem;
  height: 0.25rem;
  border-radius: 0.25rem;
  background-color: #0341a6;
}

.mission-section .left-side p {
  margin-top: 1.5rem;
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.8rem;
}

.mission-section .right-side {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.mission-section .right-side .love-serve-container {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 3.5rem 1.5rem;
  border-radius: 0.75rem;
  background: #f0f4f8;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  align-items: center;
  gap: 4rem;
}

.mission-section .right-side img {
  width: 2.25rem;
}

.mission-section .mission-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission-item h5 {
  color: #111827;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.mission-item p {
  margin-top: 0.5rem;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.mission-section .grow-share-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.grow-share-container .mission-item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: #f0f4f8;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.leadership-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leaders {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.leader {
  width: 24rem;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.leader-profile-pic {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.leader .info-section {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leader .info-section h3 {
  color: #111827;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.leader .info-section .position {
  color: #0341a6;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.leader .info-section .bio {
  margin-top: 1rem;
  color: #4b5563;
  text-align: center;
  line-height: 1.25rem;
}

.leader i {
  margin-top: 1.1rem;
  color: #6b7280;
}

.expect-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.expect-section .left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.expect-section .left-side .short-line {
  margin: 1.5rem 0;
  width: 4rem;
  height: 0.25rem;
  border-radius: 0.25rem;
  background-color: #0341a6;
}

.expect-container {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.expect-container img {
  width: 3rem;
  height: 3rem;
}

.expect-container h4 {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
  text-transform: capitalize;
}

.expect-container p {
  margin-top: 0.5rem;
  color: #4b5563;
  line-height: 1.5rem;
}

.practical-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  background: #f0f4f8;
}

.practical-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.practical-item h3 {
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  text-transform: capitalize;
}

.practical-item img {
  width: 1.25rem;
}

.practical-info h5 {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  text-transform: capitalize;
}

.practical-info p {
  margin-top: 0.25rem;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.our-history-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #111827;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.our-history-section .heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.our-history-section h2 {
  color: #fff;
}

.our-history-section .short-line {
  width: 6rem;
  height: 0.25rem;
  border-radius: 0.25rem;
  background-color: #0341a6;
}

.our-history-section .history-text {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.8rem;
}

/* =========================
   SERMONS
========================= */

.sermon-hero {
  background:
    linear-gradient(90deg, rgba(3, 65, 166, 0.8) 0%, rgba(3, 65, 166, 0) 100%),
    url(../images/bible.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 7rem clamp(1rem, 5vw, 7rem);
}

.sermon-hero h1 {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.sermon-hero p {
  margin-top: 1rem;
  color: #dbeafe;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.sermon-grid {
  padding: 4rem clamp(1rem, 5vw, 7rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background-color: #f9fafb;
}

.sermon,
.news-item {
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  position: relative;
}

.sermon .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sermon .date,
.sermon .speaker,
.news-item .date {
  color: #6b7280;
  font-size: 0.75rem;
}

.sermon h3 {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1rem;
}

.sermon .passage {
  color: #0341a6;
  margin-top: 0.5rem;
}

.sermon .listen {
  margin-top: 1rem;
  display: flex;
  gap: 0.25rem;
  padding: 0.5rem 2rem;
  border-radius: 0.25rem;
  border: 1px solid #e5e7eb;
  background: #f0f4f8;
  width: fit-content;
  align-self: flex-end;
  text-align: right;
  align-items: center;
}

.sermon .listen img {
  width: 0.875rem;
}

.sermon .listen p,
.news-item p {
  color: #1f2937;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

.pagination {
  margin: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.sermon-details {
  padding: 5rem clamp(1rem, 5vw, 7rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.audio {
  margin-top: 2rem;
}

/* =========================
   ACTIVITIES
========================= */

.activities-hero {
  background:
    linear-gradient(90deg, rgba(3, 65, 166, 0.8) 0%, rgba(3, 65, 166, 0) 100%),
    url(../images/activities-hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 7rem clamp(1rem, 5vw, 7rem);
}

.activities-hero h1 {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.activities-hero p {
  margin-top: 1rem;
  color: #dbeafe;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.activities-main-section {
  padding: 3rem clamp(1rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.activities-main-section .left-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.activities-main-section .activity {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.activities-main-section .activity .activity-hero {
  width: 12rem;
  height: 100%;
  object-fit: cover;
}

.activity .right-side {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.activity .right-side .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.activity .top-row .families-container,
.activity .top-row .adults-container {
  display: flex;
  padding: 0.25rem 0.625rem;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 624.9375rem;
  background: #dbeafe;
  color: #0341a6;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1rem;
}

.activity .top-row .adults-container {
  background-color: #dcfce7;
  color: #166534;
}

.activity .group-info-text {
  margin-top: 0.5rem;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.activity .info-section {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.activity .info-section .info-item {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.activity .info-section .info-item img {
  height: 0.875rem;
}

.activity .info-section .info-item i {
  font-size: 0.875rem;
  color: #0341a6;
}

.activity .info-section .info-item p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.small-group-container {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: #0341a6;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.small-group-container img {
  width: 3rem;
  height: 3rem;
}

.small-group-container h3 {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
}

.small-group-container .small-group-text {
  margin-top: 0.5rem;
  color: #dbeafe;
  font-size: 0.875rem;
  line-height: 1.4rem;
}

.volunteer-container {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #f0f4f8;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.volunteer-container img {
  height: 1.875rem;
}

.volunteer-container h3 {
  color: #111827;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.volunteer-container p {
  color: #4b5563;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* =========================
   CAFE
========================= */

.cafe-hero {
  background:
    linear-gradient(90deg, rgba(3, 65, 166, 0.8) 0%, rgba(3, 65, 166, 0) 100%),
    url(../images/cafe.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 7rem clamp(1rem, 5vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cafe-hero h1 {
  color: #fff;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 700;
}

.cafe-hero p {
  margin-top: 1.5rem;
  color: #e5e7eb;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
}

.cafe-info-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 3rem clamp(1rem, 5vw, 7rem);
}

.cafe-info-section .opening-times {
  padding: 2rem;
  border-radius: 0.75rem;
  background: #f0f4f8;
  display: flex;
  gap: 1rem;
}

.cafe-info-section .opening-times img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.cafe-info-section .opening-times .text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cafe-info-section .opening-times h2 {
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.cafe-info-section .opening-times p {
  margin-top: 0.75rem;
  color: #111827;
}

.cafe-info-section .phone-container {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  margin-top: 1.5rem;
}

.cafe-info-section .phone-container img {
  width: 1rem;
  height: 1rem;
}

.cafe-info-section .phone-container a {
  color: #0341a6;
  font-weight: 500;
  line-height: 1.5rem;
}

.menu-highlights-section {
  padding: 4rem clamp(1rem, 5vw, 7rem);
  background-color: #f9fafb;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-highlights-section .highlights-info {
  margin-top: 1rem;
  color: #4b5563;
  text-align: center;
  line-height: 1.5rem;
}

.menu-grid-section {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.menu-grid-item {
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.menu-grid-item img {
  width: 100%;
}

.menu-grid-item .bottom-section {
  padding: 1.5rem;
}

.menu-grid-item .bottom-section h3 {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.menu-grid-item .bottom-section .menu-items {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-grid-item .bottom-section .menu-items .menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-grid-item .bottom-section .menu-item .item {
  color: #374151;
  line-height: 1.5rem;
}

.menu-grid-item .bottom-section .menu-item .price {
  color: #0341a6;
  font-weight: 500;
  line-height: 1.5rem;
}

.cafe-volunteer-section {
  padding: 4rem clamp(1rem, 5vw, 7rem) 5rem;
  background-color: #0341a6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cafe-volunteer-section img {
  width: 3.75rem;
  height: 3rem;
}

.cafe-volunteer-section h2 {
  color: #fff;
}

.cafe-volunteer-section .volunteer-info {
  margin-top: 1.5rem;
  color: #dbeafe;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.8rem;
  width: 100%;
  max-width: 50rem;
}

.cafe-volunteer-section .form-container {
  background-color: #fff;
  padding: 4rem 2rem 2rem 2rem;
  max-width: 42rem;
  width: 100%;
  border-radius: 0.75rem;
  margin-top: 1rem;
}

/* =========================
   SAFEGUARDING
========================= */

.safeguarding-hero {
  background-color: #0341a6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem clamp(1rem, 5vw, 7rem);
}

.safeguarding-hero img {
  width: 3.75rem;
  height: 3.75rem;
}

.safeguarding-hero h1 {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.safeguarding-hero p {
  margin-top: 1.5rem;
  color: #dbeafe;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
  max-width: 45rem;
  width: 100%;
}

.safeguarding-page-container {
  background-color: #f9fafb;
  padding: 4rem clamp(1rem, 5vw, 7rem);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.safeguarding-page-container .left-side {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.our-commitment-section {
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.our-commitment-section .heading-section {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.our-commitment-section .heading-section img {
  height: 1.5rem;
}

.our-commitment-section p {
  margin-top: 1rem;
  color: #374151;
  line-height: 1.5rem;
}

.download-container {
  margin-top: 1.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.download-container img {
  height: 1.875rem;
}

.download-container h3 {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.download-container p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0;
}

.report-concern-section {
  background-color: #f0f4f8;
}

.immediate-danger-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #e63946;
  background: #fff;
}

.immediate-danger-section .immediate-text {
  margin: 0;
  color: #111827;
  font-weight: 700;
  line-height: 1.5rem;
}

.immediate-danger-section .emergency {
  color: #374151;
  line-height: 1.5rem;
}

.immediate-danger-section .emergency span {
  color: #e63946;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.key-contacts-section {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-top: 4px solid #0341a6;
  border-right: 1px solid #0341a6;
  border-bottom: 1px solid #0341a6;
  border-left: 1px solid #0341a6;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.key-contacts-section .position {
  margin-top: 1.5rem;
  color: #0341a6;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.key-contacts-section .person-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.key-contacts-section .person-container img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.key-contacts-section .person-container h3 {
  color: #111827;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.key-contacts-section a {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.key-contacts-section .horizontal-line {
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
  margin-top: 1.5rem;
}

.diocese {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.diocese h2 {
  text-align: left;
}

.diocese-text {
  margin-top: 1rem;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.diocese .contact-container {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.diocese .contact-container i {
  color: #0341a6;
}

.diocese .contact-container p {
  color: #374151;
}

.national-helplines {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.national-helplines .helpline {
  padding: 0.75rem;
  border-radius: 0.25rem;
  background: #eff6ff;
  width: 100%;
}

.national-helplines .helpline .name {
  color: #0341a6;
  font-weight: 700;
  line-height: 1.5rem;
}

.national-helplines .helpline .phone {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* =========================
   GIVING
========================= */

.giving-hero {
  background:
    linear-gradient(90deg, rgba(3, 65, 166, 0.8) 0%, rgba(3, 65, 166, 0) 100%),
    url(../images/giving.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 7rem clamp(1rem, 5vw, 7rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.giving-hero h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}

.giving-hero p {
  color: #dbeafe;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.giving-page-container {
  padding: 3rem clamp(1rem, 5vw, 7rem);
  background-color: #f9fafb;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.why-we-give,
.ways-to-give,
.other-ways-to-give {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.why-we-give h2,
.ways-to-give h2,
.other-ways-to-give h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.why-we-give p,
.why-we-give ul li,
.ways-to-give p,
.other-ways-to-give p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.why-we-give ul {
  margin-left: 3rem;
}

.ways-to-give {
  margin-top: 2rem;
}

.ways-to-give .bank-details-container {
  margin-top: 1.5rem;
  margin-left: 2rem;
}

.ways-to-give .more-info {
  margin-top: 1rem;
}

.ways-to-give .more-info a {
  color: #0341a6;
}

.other-ways-to-give .give-container {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.other-ways-to-give .give-container img {
  width: 2.5rem;
  height: 2.5rem;
}

.other-ways-to-give .give-container h3 {
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.other-ways-to-give .give-container p {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.other-ways-to-give a {
  color: #0341a6;
}

.need-help-container {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #dbeafe;
  background: #f0f4f8;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.need-help-container img {
  width: 1.875rem;
  height: 1.875rem;
}

.need-help-container h3 {
  color: #111827;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.need-help-container .more-info {
  margin-top: 0.5rem;
  color: #4b5563;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.contact-treasurer-button {
  margin-top: 1.5rem;
  width: 10rem;
  height: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
}

/* =========================
   NEWS
========================= */

.news-hero {
  background:
    linear-gradient(90deg, rgba(3, 65, 166, 0.8) 0%, rgba(3, 65, 166, 0) 100%),
    url(../images/news.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 7rem clamp(1rem, 5vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.news-hero h1 {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.news-hero p {
  margin-top: 1rem;
  color: #dbeafe;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.news-item-page-container {
  padding: 4rem clamp(1rem, 5vw, 7rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.news-item-page-container h2,
.news-item-page-container p {
  color: #111827;
}

.calendar-page-container {
  padding: 4rem clamp(1rem, 5vw, 7rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .hero-text-section {
    padding: 6rem 0;
  }

  .hero-text-section h1 {
    font-size: 2.75rem;
    line-height: 1.2;
  }

  .explore-community .explore-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-us-section {
    grid-template-columns: 1fr;
  }

  .join-us-section .right-side iframe {
    width: 100%;
    height: 350px;
  }

  .about-us-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .about-us-hero h1 {
    font-size: 2.5rem;
  }

  .about-us-hero p {
    font-size: 1.1rem;
  }

  .mission-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-section .right-side {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .mission-section .love-serve-container,
  .mission-section .grow-share-container {
    width: 100%;
    max-width: 400px;
  }

  .expect-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .leaders {
    justify-content: center;
  }

  .sermon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-main-section {
    grid-template-columns: 1fr;
  }

  .cafe-info-section {
    grid-template-columns: 1fr;
  }

  .menu-grid-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .safeguarding-page-container {
    grid-template-columns: 1fr;
  }

  .giving-page-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .activities-main-section .activity {
    flex-direction: column;
    align-items: flex-start;
  }

  .activities-main-section .activity .activity-hero {
    width: 100%;
    height: 220px;
  }

  .activity .right-side {
    width: 100%;
  }

  .activity .info-section {
    grid-template-columns: 1fr;
  }

  .sermon-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid-section {
    grid-template-columns: 1fr;
  }

  .cafe-hero h1,
  .hero-text-section h1,
  .sermon-hero h1,
  .activities-hero h1,
  .news-hero h1,
  .giving-hero h1,
  .safeguarding-hero h1 {
    line-height: 1.2;
  }
}

@media (max-width: 640px) {
  header .left-side h3 {
    font-size: 1rem;
    line-height: 1.3;
  }

  header .left-side p {
    font-size: 0.8rem;
  }

  .hero-text-section {
    padding: 4rem 0;
  }

  .hero-text-section h1 {
    font-size: 2rem;
  }

  .hero-text-section p {
    font-size: 1rem;
  }

  .explore-community .explore-grid-container {
    grid-template-columns: 1fr;
  }

  .explore-item {
    padding: 1.25rem;
  }

  .join-us-section .left-side {
    align-items: flex-start;
  }

  .join-us-section .service-times-container {
    padding: 1rem;
  }

  .service-time {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .join-us-section .right-side iframe {
    height: 250px;
  }

  .about-us-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .about-us-hero h1 {
    font-size: 2rem;
  }

  .about-us-hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .mission-section .right-side {
    flex-direction: column;
    align-items: center;
  }

  .mission-section .love-serve-container {
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .mission-section .mission-item {
    text-align: center;
  }

  .expect-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .expect-container img {
    width: 2.5rem;
    height: 2.5rem;
  }

  .practical-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .leader {
    width: 100%;
    max-width: 100%;
  }

  .our-history-section .history-text {
    padding: 0 1rem;
  }

  .sermon-hero,
  .activities-hero,
  .cafe-hero,
  .news-hero,
  .giving-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .sermon-hero h1,
  .activities-hero h1,
  .news-hero h1,
  .giving-hero h1,
  .safeguarding-hero h1 {
    font-size: 2rem;
  }

  .sermon-hero p,
  .activities-hero p,
  .news-hero p,
  .giving-hero p,
  .safeguarding-hero p,
  .cafe-hero p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .cafe-hero h1 {
    font-size: 2.4rem;
  }

  .cafe-hero p {
    margin-top: 1rem;
  }

  .cafe-info-section .opening-times {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-we-give,
  .ways-to-give,
  .other-ways-to-give,
  .our-commitment-section,
  .key-contacts-section {
    padding: 1.5rem;
  }

  .other-ways-to-give .give-container {
    flex-direction: column;
  }

  .why-we-give ul {
    margin-left: 1.25rem;
  }
}

@media (max-width: 400px) {
  .hero-text-section h1,
  .about-us-hero h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .cafe-hero h1 {
    font-size: 2rem;
  }
}
