/*
Theme Name: Doonside Anglican Church Child
Theme URI: #
Author: Doonside Anglican Church
Author URI: #
Description: Child theme for Doonside Anglican Church.
Template: doonsideanglican
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: doonsideanglican-child
*/

/* ══════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════ */
:root {
  --dac-primary:    #009bf7;
  --dac-accent:     #ff8b33;
  --dac-dark:       #0f172a;   /* deepest navy – page base */
  --dac-surface:    #1e293b;   /* mid-dark – alternate sections */
  --dac-card-bg:    #243047;   /* card backgrounds */
  --dac-muted:      #94a3b8;   /* subdued text on dark */
  --dac-light:      #f5f7fb;   /* light section bg */
  --dac-text-dark:  #0f172a;   /* body text on light bg */
}

/* ══════════════════════════════════════
   BASE
══════════════════════════════════════ */
body {
  background: var(--dac-dark) !important;
  font-family: 'DM Sans', 'Barlow', sans-serif;
}

/* ══════════════════════════════════════
   INFO BAR  — removed, hidden
══════════════════════════════════════ */
.main-header .header-top {
  display: none !important;
}

/* ══════════════════════════════════════
   SERVICE TIMES BAR
══════════════════════════════════════ */
.dac-topbar {
  background: var(--dac-surface);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}

/* left accent line */
.dac-topbar::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--dac-primary);
}

.dac-topbar-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.dac-topbar-label {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 6px;
}
.dac-topbar-label i {
  color: var(--dac-primary);
  font-size: 0.82rem;
}

.dac-topbar-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  margin: 0 2px;
}

/* Service time trigger — pill button style */
.dac-topbar-link {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none !important;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(0, 155, 247, 0.12);
  border: 1px solid rgba(0, 155, 247, 0.3);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dac-topbar-link i {
  font-size: 0.65rem;
  color: var(--dac-primary);
  opacity: 0.8;
}
.dac-topbar-link:hover {
  background: rgba(0, 155, 247, 0.22);
  border-color: var(--dac-primary);
  color: #ffffff;
}
.dac-topbar-link:hover i {
  opacity: 1;
}

/* "Every Sunday" suffix */
.dac-topbar-every {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
  font-weight: 500;
  margin-left: 4px;
  font-style: italic;
}

/* ══════════════════════════════════════
   SLIDER SECTION
══════════════════════════════════════ */
.boxed_wrapper {
  background: var(--dac-dark) !important;
}
.slider-section .slide-item {
  background: transparent !important;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.dac-hero {
  padding: 72px 0 60px;
  background: var(--dac-dark);
  position: relative;
  overflow: hidden;
}

/* radial glow behind the title */
.dac-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(0, 155, 247, 0.13) 0%, transparent 68%);
  pointer-events: none;
}

.dac-hero .dac-hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: lowercase;
  color: #ffffff;
  margin-bottom: 22px;
}

/* wrap a word in <em> inside the ACF title field to highlight it in blue */
.dac-hero .dac-hero-title em {
  font-style: normal;
  color: var(--dac-primary);
}

.dac-hero .dac-hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--dac-muted);
  max-width: 640px;
  line-height: 1.7;
}

.dac-hero .dac-hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Hero about-content overrides ── */

/* Hide the "ABOUT US" h6 label above the title */
.dac-hero .sec-title h6 {
  display: none !important;
}

/* Remove excess bottom margin on sec-title inside hero */
.dac-hero .sec-title {
  margin-bottom: 16px !important;
}

.dac-hero .sec-title h2,
.dac-hero .sec-title h3 {
  color: #ffffff !important;
  font-family: 'DM Sans', 'Barlow', sans-serif !important;
  font-weight: 800 !important;
}

.dac-hero .sec-title .sub-title {
  color: var(--dac-primary) !important;
  font-family: 'DM Sans', 'Barlow', sans-serif !important;
  font-weight: 700 !important;
}

.dac-hero .dac-hero-body p {
  color: var(--dac-muted);
  font-size: 1rem;
  line-height: 1.72;
}


.dac-hero .dac-hero-image {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.dac-hero .dac-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

@media (max-width: 991px) {
  .dac-hero .dac-hero-image { margin-top: 36px; }
}

/* ══════════════════════════════════════
   PILL / BADGE
══════════════════════════════════════ */
.dac-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(0, 155, 247, 0.15);
  color: var(--dac-primary);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 155, 247, 0.28);
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.dac-section {
  padding: 84px 0;
  /* default: dark */
  background: var(--dac-dark);
  color: #ffffff;
}

.dac-section.alt {
  background: var(--dac-surface);
  color: #ffffff;
}

.dac-section.light {
  background: var(--dac-light);
  color: var(--dac-text-dark);
}

/* ── section heading ── */
.dac-section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.dac-section .dac-section-title,
.dac-section.alt .dac-section-title {
  color: #ffffff;
}

.dac-section.light .dac-section-title {
  color: var(--dac-text-dark);
}

/* ── lead text ── */
.dac-lead {
  font-size: 1.15rem;
  line-height: 1.72;
}

.dac-section .dac-lead,
.dac-section.alt .dac-lead {
  color: var(--dac-muted);
}

.dac-section.light .dac-lead {
  color: #4a5568;
}

/* ── parent-theme classes used in the about row ── */
.dac-section .sec-title h2,
.dac-section .sec-title h3,
.dac-section.alt .sec-title h2,
.dac-section.alt .sec-title h3 {
  color: #ffffff !important;
}

.dac-section .sec-title .sub-title,
.dac-section.alt .sec-title .sub-title {
  color: var(--dac-primary) !important;
}

.dac-section .text p,
.dac-section.alt .text p {
  color: var(--dac-muted) !important;
}

/* light overrides */
.dac-section.light .sec-title h2,
.dac-section.light .sec-title h3 {
  color: var(--dac-text-dark) !important;
}

.dac-section.light .sec-title .sub-title {
  color: var(--dac-primary) !important;
}

.dac-section.light .text p {
  color: #4a5568 !important;
}

/* ══════════════════════════════════════
   CARDS
══════════════════════════════════════ */
.dac-card {
  background: var(--dac-card-bg);
  border: 1px solid rgba(0, 155, 247, 0.12);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.dac-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(0, 155, 247, 0.38);
}

.dac-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.dac-card p {
  color: var(--dac-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.dac-card .dac-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  color: var(--dac-primary);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.dac-card .dac-card-link::after {
  content: '→';
  transition: transform 0.15s ease;
}

.dac-card .dac-card-link:hover {
  color: #ffffff;
}

.dac-card .dac-card-link:hover::after {
  transform: translateX(3px);
}

/* ══════════════════════════════════════
   GRID
══════════════════════════════════════ */
.dac-grid {
  display: grid;
  gap: 24px;
  margin-top: 44px;
}

.dac-grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.dac-grid.cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ══════════════════════════════════════
   CTA GRID
══════════════════════════════════════ */
.dac-cta-grid .dac-card {
  border-left: 3px solid var(--dac-primary);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* alternate accent colour on even cards */
.dac-cta-grid .dac-card:nth-child(even) {
  border-left-color: var(--dac-accent);
}

.dac-cta-grid .dac-card:nth-child(even) .dac-card-link {
  color: var(--dac-accent);
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.dac-testimonial {
  background: var(--dac-card-bg);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease;
}

.dac-testimonial:hover {
  transform: translateY(-4px);
}

.dac-testimonial p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.dac-testimonial p::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--dac-primary);
  font-style: normal;
}

.dac-testimonial .dac-testimonial-name {
  margin-top: 20px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--dac-primary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   FINAL CTA BANNER
══════════════════════════════════════ */
.dac-final {
  padding: 100px 0;
  background: var(--dac-dark);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* bottom glow */
.dac-final::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(0, 155, 247, 0.11) 0%, transparent 68%);
  pointer-events: none;
}

/* top accent line */
.dac-final::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--dac-primary);
  border-radius: 0 0 4px 4px;
}

.dac-final .dac-section-title {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.dac-final .dac-lead {
  color: var(--dac-muted);
  max-width: 560px;
  margin: 0 auto 38px;
}

.dac-final .theme-btn.btn-two {
  background-color: var(--dac-accent);
  border-color: var(--dac-accent);
}

/* ══════════════════════════════════════
   1:30 PM SIDE PANEL
══════════════════════════════════════ */
.dac-130-trigger,
.dac-1030-trigger {
  cursor: pointer;
  border-bottom: 2px dashed rgba(255,255,255,0.5);
}

.dac-130-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.dac-130-panel.active {
  display: block;
}

.dac-130-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.dac-130-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--dac-surface);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: -6px 0 32px rgba(0,0,0,0.4);
  animation: dac-slide-in 0.28s ease;
}

@keyframes dac-slide-in {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.dac-130-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.15s ease;
}

.dac-130-close:hover { color: #ffffff; }

.dac-130-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.dac-130-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dac-primary);
  margin: 0;
}

.dac-130-social {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dac-130-social li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dac-130-social li a i {
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
}

.dac-130-yt:hover  { background: #ff0000; border-color: #ff0000; }
.dac-130-ig:hover  { background: #e1306c; border-color: #e1306c; }
.dac-130-fb:hover  { background: #1877f2; border-color: #1877f2; }

/* ══════════════════════════════════════
   MOBILE MENU — FULL-SCREEN OVERLAY
══════════════════════════════════════ */

/* Expand the outer container to full viewport */
.mobile-menu {
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

/* Hide separate backdrop — the menu-box IS the overlay */
.mobile-menu .menu-backdrop {
  display: none !important;
}

/* Full-screen panel */
.mobile-menu .menu-box {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  background: rgba(10, 16, 30, 0.97) !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  overflow-y: auto !important;
  transform: none !important;
}

/* Radial glow for visual depth */
.mobile-menu .menu-box::before {
  content: '';
  position: fixed;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 155, 247, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Close button — top right corner */
.mobile-menu .close-btn {
  position: fixed !important;
  top: 24px !important;
  right: 28px !important;
  left: auto !important;
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.2s !important;
  z-index: 10 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.mobile-menu .close-btn:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  transform: rotate(90deg) !important;
}
.mobile-menu .close-btn i {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 1rem !important;
}

/* Logo — top left corner */
.mobile-menu .nav-logo {
  position: fixed !important;
  top: 20px !important;
  left: 28px !important;
  padding: 0 !important;
  border-bottom: none !important;
  display: block !important;
}
.mobile-menu .nav-logo img {
  height: 42px !important;
  width: auto !important;
}

/* Nav wrapper — base */
.mobile-menu .menu-outer {
  padding: 0 !important;
  text-align: center !important;
  /* width/sizing set below with the nav links */
}

/* Nav list — vertical centred column */
.mobile-menu ul.navigation,
.mobile-menu .navigation {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

/* Nav items — no divider lines */
.mobile-menu .navigation > li {
  border-bottom: none !important;
}

/* Nav wrapper — constrain to 40% of viewport, centred */
.mobile-menu .menu-outer {
  width: 40vw !important;
  min-width: 320px !important;
  max-width: 600px !important;
  margin: 0 auto !important;
}

/* Nav links — large, centred */
.mobile-menu .navigation > li > a {
  display: block !important;
  padding: 14px 24px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(2.8rem, 6vw, 4.2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  text-transform: lowercase !important;
  text-decoration: none !important;
  text-align: center !important;
  transition: color 0.2s, transform 0.2s !important;
  line-height: 1.15 !important;
}
.mobile-menu .navigation > li > a:hover,
.mobile-menu .navigation > li.current-menu-item > a {
  color: #ffffff !important;
  transform: scale(1.04) !important;
  background: transparent !important;
}
.mobile-menu .navigation > li.current-menu-item > a {
  color: var(--dac-primary) !important;
}

/* No arrow pseudo-element in overlay mode */
.mobile-menu .navigation > li > a::after {
  display: none !important;
}

/* Social icons — centred row below nav */
.dac-mobile-social {
  display: flex !important;
  gap: 12px !important;
  justify-content: center !important;
  list-style: none !important;
  margin: 36px 0 0 !important;
  padding: 0 !important;
  border-top: none !important;
}

.dac-mobile-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.dac-mobile-social li a:hover {
  background: var(--dac-primary);
  border-color: var(--dac-primary);
  color: #ffffff !important;
}

/* ══════════════════════════════════════
   SHARED INNER-PAGE STYLES
══════════════════════════════════════ */

/* Hero banner used on About, Ministry, Resources */
.dac-inner-hero {
  padding: 72px 0 52px;
  background: var(--dac-dark);
  position: relative;
  overflow: hidden;
}

.dac-inner-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0,155,247,0.11) 0%, transparent 68%);
  pointer-events: none;
}

.dac-inner-hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: lowercase;
  color: #ffffff;
  margin: 14px 0 0;
  line-height: 1.05;
}

/* Shared content body text */
.dac-inner-body p,
.dac-inner-body li {
  color: var(--dac-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.dac-inner-body h2,
.dac-inner-body h3,
.dac-inner-body h4 {
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin: 24px 0 10px;
}

.dac-inner-body a:not(.theme-btn) {
  color: var(--dac-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dac-inner-body a:not(.theme-btn):hover {
  color: #ffffff;
}

.dac-inner-body--wide {
  max-width: 900px;
}

.dac-inner-body--centered {
  text-align: center;
}

.dac-inner-body--centered h2,
.dac-inner-body--centered h3 {
  text-align: center;
}

/* Shared inner-page image */
.dac-inner-image {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
}

.dac-inner-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* sec-title overrides on dark sections */
.dac-section .sec-title h2,
.dac-section.alt .sec-title h2 {
  color: #ffffff !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 800 !important;
}

/* Resources page */
.dac-resource-block {
  padding-bottom: 40px;
}

.dac-resource-image {
  margin: 16px 0 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  display: block;
  position: relative;
}

.dac-resource-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.dac-resource-image:hover img {
  transform: scale(1.03);
}

.dac-resource-image--yt {
  cursor: pointer;
}

.dac-resource-yt-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background 0.2s ease;
}

.dac-resource-yt-overlay i {
  font-size: 4rem;
  color: #ff0000;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  transition: transform 0.2s ease;
}

.dac-resource-yt-link:hover .dac-resource-yt-overlay {
  background: rgba(0,0,0,0.5);
}

.dac-resource-yt-link:hover .dac-resource-yt-overlay i {
  transform: scale(1.15);
}

@media (max-width: 991px) {
  .dac-inner-image  { margin-top: 36px; }
  .dac-resource-block { padding-bottom: 20px; }
  .col-lg-7 .dac-resource-block { padding-top: 32px; }
}

/* ══════════════════════════════════════
   VISIT US PAGE
══════════════════════════════════════ */

/* Hero */
.dac-visit-hero {
  padding: 80px 0 60px;
  background: var(--dac-dark);
  position: relative;
  overflow: hidden;
}

.dac-visit-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,155,247,0.12) 0%, transparent 68%);
  pointer-events: none;
}

.dac-visit-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-transform: lowercase;
  color: #ffffff;
  margin: 16px 0 18px;
  line-height: 1.05;
}

.dac-visit-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--dac-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* Service time cards */
.dac-visit-card {
  background: var(--dac-dark);
  border: 1px solid rgba(0,155,247,0.15);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.dac-visit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,155,247,0.4);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

.dac-visit-card-time {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--dac-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.dac-visit-card-time span {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.dac-visit-card-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
}

.dac-visit-card p {
  color: var(--dac-muted) !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
}

/* Special service card — orange accent */
.dac-visit-card--special {
  border-color: rgba(255,139,51,0.2);
}

.dac-visit-card--special .dac-visit-card-time {
  color: var(--dac-accent);
}

.dac-visit-card--special:hover {
  border-color: rgba(255,139,51,0.5);
}

/* Content + map row */
.dac-visit-content p,
.dac-visit-content li {
  color: var(--dac-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.dac-visit-content h1,
.dac-visit-content h2,
.dac-visit-content h3 {
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ── Find Us section ── */
.dac-findus-section .row {
  gap: 0;
}

.dac-findus-info {
  padding-right: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.dac-findus-info .dac-pill {
  margin-bottom: 16px;
  display: inline-block;
  align-self: flex-start;
}
.dac-findus-heading {
  color: #fff !important;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 28px !important;
}

.dac-findus-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.dac-findus-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(0, 155, 247, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dac-primary);
  font-size: 0.85rem;
}
.dac-findus-item h4 {
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 4px !important;
}
.dac-findus-item p {
  color: #fff !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}
.dac-findus-item p span {
  color: var(--dac-muted);
  font-size: 0.82rem;
}
.dac-findus-item a {
  color: var(--dac-primary) !important;
  text-decoration: none !important;
}

.dac-findus-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 24px;
  background: var(--dac-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: 6px;
  text-decoration: none !important;
  transition: opacity 0.2s, transform 0.15s;
  align-self: flex-start;
  margin-top: 28px;
}
.dac-findus-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  color: #fff !important;
}

/* Map container */
.dac-findus-map {
  height: 460px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  position: relative;
}

/* Neutralise whatever WordPress/the page content puts around the iframe */
.dac-findus-map .center-container,
.dac-findus-map > p,
.dac-findus-map > div {
  display: block !important;
  width: 100% !important;
  height: 460px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Force iframe to fill */
.dac-findus-map iframe {
  display: block !important;
  width: 100% !important;
  height: 460px !important;
  border: 0 !important;
}

@media (max-width: 991px) {
  .dac-findus-info { padding-right: 0; margin-bottom: 36px; }
  .dac-findus-map,
  .dac-findus-map .center-container,
  .dac-findus-map > p,
  .dac-findus-map > div { height: 320px !important; }
  .dac-findus-map iframe { height: 320px !important; }
}

/* ══════════════════════════════════════
   CONTACT PAGE – DARK THEME OVERRIDE
══════════════════════════════════════ */
.contact-1 .bg-white,
.contact-1 .content-area-7 {
  background: transparent !important;
}

.contact-1 .giving-section {
  background-color: var(--dac-card-bg) !important;
  border: 1px solid rgba(0, 155, 247, 0.12) !important;
  border-radius: 16px !important;
}

.contact-1 .giving-section h3,
.contact-1 .giving-section h4 {
  color: #ffffff !important;
}

.contact-1 .giving-section p,
.contact-1 .giving-section li,
.contact-1 .giving-section ul {
  color: var(--dac-muted) !important;
}

.contact-1 .giving-section strong {
  color: rgba(255, 255, 255, 0.9) !important;
}

.contact-1 .giving-section blockquote {
  border-left-color: var(--dac-primary) !important;
  color: var(--dac-muted) !important;
  background: rgba(0, 155, 247, 0.06);
  padding: 12px 16px !important;
  border-radius: 0 8px 8px 0;
}

.contact-1 .giving-section blockquote strong {
  color: #ffffff !important;
}

.contact-1 .main-title h1,
.contact-1 .main-title h2,
.contact-1 .main-title h3 {
  color: #ffffff !important;
}

/* ══════════════════════════════════════
   GLOBAL INNER-PAGE TEXT (dark bg fix)
══════════════════════════════════════ */

/* Main body/paragraph text */
body,
p,
.entry-content p,
.page-content p,
.post-content p,
.content-box p,
.text-box p,
.auto-container p {
  color: var(--dac-muted);
}

/* Headings */
h1, h2, h3, h4, h5,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.content-box h1,
.content-box h2,
.content-box h3,
.content-box h4,
.sec-title h2,
.sec-title h3 {
  color: #ffffff;
}

/* Page/post titles */
.page-title,
.entry-title,
.inner-title h1,
.inner-title h2 {
  color: #ffffff !important;
}

/* Inner page banner/header area background */
.page-title-area,
.inner-banner,
.page-header {
  background: var(--dac-surface) !important;
}

/* General links in content */
.entry-content a:not(.theme-btn),
.content-box a:not(.theme-btn),
.text-box a:not(.theme-btn) {
  color: var(--dac-primary);
}

.entry-content a:not(.theme-btn):hover,
.content-box a:not(.theme-btn):hover {
  color: #ffffff;
}

/* Tables, lists */
.entry-content li,
.content-box li {
  color: var(--dac-muted);
}

/* Section wrappers used by parent theme on inner pages */
.auto-container .sec-title h6 {
  color: var(--dac-primary) !important;
}

/* ══════════════════════════════════════
   TOPBAR – SERVICE TIMES (now below red bar)
══════════════════════════════════════ */
.dac-topbar {
  background: var(--dac-dark);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ══════════════════════════════════════
   BURGER / PAUSE-ICON NAV
══════════════════════════════════════ */

/* Push the whole header-upper content to the right */
/* Header row: logo left, actions right */
.dac-header-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 0 !important;
}

.dac-header-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.dac-header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

/* Always hide the regular nav, regardless of screen size */
.main-header .header-upper .main-menu {
  display: none !important;
}

/* ── Sticky header – dark bar replacing the footer ── */
.sticky-header {
  background: var(--dac-dark) !important;
  border-bottom: 1px solid rgba(0, 155, 247, 0.15) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4) !important;
}

.sticky-header .outer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-header .logo img {
  height: 40px;
  width: auto;
}

/* Logo + social stacked vertically in sticky header */
.dac-logo-with-social {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px !important;
}

/* Social icons row */
.dac-sticky-social {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.dac-sticky-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.8rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

/* Facebook – blue on hover */
.dac-sticky-social li a.dac-social-facebook:hover,
.dac-sticky-social li a.dac-social-facebook-f:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff !important;
}

/* YouTube – red on hover */
.dac-sticky-social li a.dac-social-youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff !important;
}

.sticky-header .navigation li a {
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 6px 12px !important;
  transition: color 0.15s ease !important;
}

.sticky-header .navigation li a:hover {
  color: var(--dac-primary) !important;
}

/* Style nav items in sticky header and mobile drawer */
.sticky-header .navigation li a,
.navigation li a,
.mobile-menu .navigation li a {
  font-family: 'DM Sans', 'Barlow', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
}

/* Force horizontal layout on all navigation instances */
ul.navigation {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 0 6px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

ul.navigation > li {
  display: inline-flex !important;
  float: none !important;
  position: relative !important;
  width: auto !important;
}

ul.navigation > li > a {
  white-space: nowrap;
  padding: 8px 12px !important;
  display: inline-block !important;
}

/* ── Give button in header-upper ── */
/* Give pill button */
.dac-give-upper {
  color: #ffffff !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 9px 20px !important;
  background: var(--dac-accent) !important;
  border-radius: 999px !important;
  transition: opacity 0.2s, transform 0.15s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  line-height: 1 !important;
}

.dac-give-upper:hover {
  opacity: 0.88 !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

/* Menu pill button */
.dac-menu-btn {
  color: #ffffff !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 9px 20px !important;
  background: var(--dac-primary) !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  transition: opacity 0.2s, transform 0.15s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  line-height: 1 !important;
}

.dac-menu-btn:hover {
  opacity: 0.88 !important;
  transform: translateY(-1px) !important;
}

/* Always show the menu button */
.main-header .header-upper .mobile-nav-toggler {
  display: inline-flex !important;
}

/* ══════════════════════════════════════
   UTILITY
══════════════════════════════════════ */
.dac-center {
  justify-content: center;
}

/* ══════════════════════════════════════
   HOME HERO
══════════════════════════════════════ */
.dac-hero--home {
  position: relative;
  padding: 120px 0 96px;
  overflow: hidden;
}

.dac-hero--home .dac-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* Pill in hero */
.dac-hero--home .dac-pill {
  margin-bottom: 24px;
  display: inline-block;
}

/* The ACF sec-title output (h2/h6 wrapper) inside hero */
.dac-hero--home .dac-hero-sec-title {
  margin-bottom: 20px;
}
.dac-hero--home .dac-hero-sec-title h2,
.dac-hero--home .dac-hero-sec-title h3 {
  color: #fff !important;
  font-size: clamp(2.4rem, 5vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  margin: 0 !important;
}
.dac-hero--home .dac-hero-sec-title h6,
.dac-hero--home .dac-hero-sec-title .sub-title {
  display: none !important;
}

/* Body text */
.dac-hero--home .dac-hero-body {
  max-width: 640px;
  margin-bottom: 36px;
}
.dac-hero--home .dac-hero-body p,
.dac-hero--home .dac-hero-body {
  color: var(--dac-muted) !important;
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
}

/* CTA buttons */
.dac-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.dac-hero-actions a {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: opacity 0.2s, transform 0.2s;
}
.dac-hero-actions a:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
/* Primary button style */
.dac-hero-actions .theme-btn,
.dac-hero-actions a.theme-btn {
  background: var(--dac-primary) !important;
  color: #fff !important;
  border: none !important;
}
/* Secondary link style */
.dac-hero-actions .dac-text-link,
.dac-hero-actions a:not(.theme-btn) {
  color: var(--dac-primary) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(0, 155, 247, 0.4);
  border-radius: 0 !important;
}

/* Radial glow behind hero text */
.dac-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 40%, rgba(0, 155, 247, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── Section header (pill + title + lead, centred) ── */
.dac-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.dac-section-header .dac-pill {
  margin-bottom: 14px;
  display: inline-block;
}
.dac-section-header .dac-section-title {
  margin-bottom: 12px !important;
}
.dac-section-header .dac-lead {
  max-width: 580px;
  margin: 0 auto;
}

/* ── Location cards ── */
.dac-card--location {
  border-top: 3px solid var(--dac-primary) !important;
}
.dac-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 155, 247, 0.12);
  border-radius: 50%;
  margin-bottom: 16px;
}
.dac-card-icon i {
  color: var(--dac-primary);
  font-size: 1.1rem;
}

/* ── Belong banner ── */
.dac-belong {
  background: linear-gradient(135deg, var(--dac-primary) 0%, #006fc7 100%);
  padding: 72px 0;
}
.dac-belong-inner {
  position: relative;
  max-width: 720px;
}
.dac-belong-accent {
  width: 48px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  margin-bottom: 24px;
}
.dac-belong-title {
  color: #fff !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin: 0 0 16px !important;
}
.dac-belong-text {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.05rem !important;
  margin: 0 !important;
}

/* ── Ministry cards ── */
.dac-card--ministry {
  position: relative;
}
.dac-card-dot {
  width: 10px;
  height: 10px;
  background: var(--dac-accent);
  border-radius: 50%;
  margin-bottom: 16px;
}

/* ── CTA cards ── */
.dac-card--cta {
  border-left: 3px solid var(--dac-accent) !important;
}

/* ── Testimonials ── */
.dac-testimonials-section .dac-section-header {
  margin-bottom: 40px;
}
.dac-testimonial-quote-icon {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--dac-primary);
  opacity: 0.5;
  margin-bottom: 8px;
}

/* ── Final CTA ── */
.dac-final-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.dac-final-inner .dac-hero-actions {
  justify-content: center;
  margin-top: 28px;
}

/* ══════════════════════════════════════
   EVENTS PAGE
══════════════════════════════════════ */
.dac-events-desc {
  max-width: 640px;
  margin-top: 14px;
}
.dac-events-desc p {
  color: var(--dac-muted) !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  margin: 0 !important;
}

/* ══════════════════════════════════════
   CONTACT / GIVING PAGE
══════════════════════════════════════ */

/* Inner hero subtitle */
.dac-inner-hero-sub {
  color: var(--dac-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 12px 0 0;
  line-height: 1.7;
}
.dac-inner-hero-sub p {
  color: inherit !important;
  font-size: inherit !important;
  margin: 0 !important;
}

/* Giving block */
.dac-giving-block {
  background: var(--dac-card-bg);
  border-radius: 12px;
  padding: 40px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.dac-giving-heading {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 18px !important;
}

.dac-giving-intro {
  color: var(--dac-muted) !important;
  line-height: 1.75 !important;
  margin-bottom: 24px !important;
}

/* Styled scripture quote */
.dac-giving-quote {
  position: relative;
  background: rgba(0, 155, 247, 0.08);
  border-left: 4px solid var(--dac-primary);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px 20px 28px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
}
.dac-giving-quote-mark {
  display: block;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.8;
  color: var(--dac-primary);
  opacity: 0.5;
  margin-bottom: 6px;
  font-style: normal;
}
.dac-giving-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dac-primary);
}

.dac-giving-subheading {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 20px !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem !important;
}

/* Give option rows */
.dac-give-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.dac-give-option {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.dac-give-option-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(0, 155, 247, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dac-primary);
  font-size: 1.1rem;
}
.dac-give-option-body h4 {
  color: #fff !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  margin: 0 0 8px !important;
}
.dac-give-option-body p {
  color: var(--dac-muted) !important;
  margin: 0 !important;
  font-size: 0.9rem !important;
}
.dac-bank-details {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.dac-bank-details li {
  color: var(--dac-muted);
  font-size: 0.9rem;
  padding: 3px 0;
}
.dac-bank-details li span {
  display: inline-block;
  min-width: 120px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dac-giving-footer {
  color: var(--dac-muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
  margin-bottom: 12px !important;
}
.dac-giving-thanks {
  color: var(--dac-primary) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  margin: 0 !important;
}

/* Contact block */
.dac-contact-block {
  background: var(--dac-surface);
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.dac-contact-heading {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 28px !important;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dac-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.dac-contact-item-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(0, 155, 247, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dac-primary);
  font-size: 0.95rem;
}
.dac-contact-item-body h4 {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 4px !important;
}
.dac-contact-item-body p,
.dac-contact-item-body div {
  color: #fff !important;
  font-size: 0.92rem !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}
.dac-contact-item-body a {
  color: var(--dac-primary) !important;
  text-decoration: none !important;
}
.dac-contact-item-body a:hover {
  text-decoration: underline !important;
}

.dac-contact-social {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dac-contact-social h4 {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px !important;
}
.dac-social-icons {
  display: flex;
  gap: 10px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.dac-social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: var(--dac-muted) !important;
  font-size: 1rem;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
}
.dac-social-icon:hover {
  background: var(--dac-primary);
  color: #fff !important;
}

/* Map section */
.dac-map-section {
  background: var(--dac-surface);
}
.dac-map-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
}
.dac-map-wrap iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

/* Override parent contact page container to dark */
.contact-1,
.contact-1 .bg-white,
.contact-1 .container {
  background: transparent !important;
  color: #fff !important;
}


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .dac-hero    { padding: 72px 0 60px; }
  .dac-section { padding: 64px 0; }
  .dac-final   { padding: 72px 0; }
}

@media (max-width: 767px) {
  .dac-hero    { padding: 56px 0 48px; }
  .dac-hero .dac-hero-title { letter-spacing: -0.015em; }
  .dac-grid.cols-3,
  .dac-grid.cols-4 { grid-template-columns: 1fr; }
  .dac-hero .dac-hero-actions { flex-direction: column; align-items: flex-start; }

  /* Give & Menu buttons scale down on mobile */
  .dac-give-upper,
  .dac-menu-btn {
    padding: 7px 14px !important;
    font-size: 0.7rem !important;
  }
  .dac-header-actions {
    gap: 8px !important;
  }
  .dac-header-logo img {
    height: 42px;
  }
  .dac-giving-block,
  .dac-contact-block {
    padding: 28px 20px;
  }
  .dac-belong { padding: 56px 0; }
  .dac-hero--home { padding: 80px 0 64px; }
  .dac-map-wrap { height: 280px; }
}

/* ══════════════════════════════════════
   LIGHT MODE
══════════════════════════════════════ */

/* ── Variable overrides ── */
body.dac-light {
  --dac-dark:       #f8f6ef;
  --dac-surface:    #efebd9;
  --dac-card-bg:    #ffffff;
  --dac-muted:      #5c6878;
  --dac-light:      #f0ede4;
}

/* ── Base ── */
body.dac-light {
  background: var(--dac-dark) !important;
  color: #1e293b !important;
}

/* ── Headings — all white → dark navy ── */
body.dac-light h1,
body.dac-light h2,
body.dac-light h3,
body.dac-light h4,
body.dac-light h5,
body.dac-light h6,
body.dac-light .dac-section-title,
body.dac-light .dac-inner-hero-title,
body.dac-light .dac-visit-title,
body.dac-light .dac-findus-heading,
body.dac-light .dac-giving-heading,
body.dac-light .dac-contact-heading {
  color: #0f172a !important;
}

/* ── Body text ── */
body.dac-light p,
body.dac-light li,
body.dac-light .dac-hero-body p,
body.dac-light .dac-hero-body,
body.dac-light .dac-inner-body p,
body.dac-light .dac-inner-body li,
body.dac-light .dac-visit-content p,
body.dac-light .dac-visit-content li,
body.dac-light .dac-events-desc p,
body.dac-light .dac-inner-hero-sub,
body.dac-light .dac-inner-hero-sub p {
  color: #334155 !important;
}

/* ── Lead / muted text ── */
body.dac-light .dac-lead,
body.dac-light .dac-visit-subtitle {
  color: #5c6878 !important;
}

/* ── Sections ── */
body.dac-light .dac-section {
  background: var(--dac-dark) !important;
  color: #1e293b !important;
}
body.dac-light .dac-section.alt {
  background: #f2efe5 !important;
  color: #1e293b !important;
}

/* ── Hero sections ── */
body.dac-light .dac-hero,
body.dac-light .dac-hero--home {
  background: var(--dac-dark) !important;
}
body.dac-light .dac-hero-glow {
  background: radial-gradient(ellipse 70% 60% at 30% 40%, rgba(0, 155, 247, 0.06) 0%, transparent 70%) !important;
}
body.dac-light .dac-inner-hero {
  background: var(--dac-dark) !important;
  border-bottom-color: rgba(0, 0, 0, 0.06) !important;
}
body.dac-light .dac-inner-hero::before {
  background: radial-gradient(circle, rgba(0, 155, 247, 0.05) 0%, transparent 68%) !important;
}
body.dac-light .dac-visit-hero {
  background: var(--dac-surface) !important;
}

/* ── Cards ── */
body.dac-light .dac-card {
  background: var(--dac-card-bg) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}
body.dac-light .dac-card:hover {
  border-color: rgba(0, 155, 247, 0.3) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1) !important;
}
body.dac-light .dac-card h3 {
  color: #0f172a !important;
}
body.dac-light .dac-card p {
  color: #5c6878 !important;
}

/* ── Visit cards ── */
body.dac-light .dac-visit-card {
  background: var(--dac-card-bg) !important;
  border-color: rgba(0, 155, 247, 0.2) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
}
body.dac-light .dac-visit-card-label {
  color: #0f172a !important;
}
body.dac-light .dac-visit-card p {
  color: #5c6878 !important;
}

/* ── Belong banner — keep blue gradient ── */
body.dac-light .dac-belong {
  background: linear-gradient(135deg, var(--dac-primary) 0%, #006fc7 100%) !important;
}
body.dac-light .dac-belong-title {
  color: #fff !important;
}
body.dac-light .dac-belong-text {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ── Final CTA ── */
body.dac-light .dac-final {
  background: var(--dac-surface) !important;
}

/* ── Testimonials ── */
body.dac-light .dac-testimonial {
  background: var(--dac-card-bg) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}
body.dac-light .dac-testimonial p {
  color: #334155 !important;
}
body.dac-light .dac-testimonial-name {
  color: #5c6878 !important;
}

/* ── Giving / Contact blocks ── */
body.dac-light .dac-giving-block {
  background: var(--dac-card-bg) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}
body.dac-light .dac-giving-intro,
body.dac-light .dac-giving-footer {
  color: #5c6878 !important;
}
body.dac-light .dac-giving-quote {
  background: rgba(0, 155, 247, 0.05) !important;
  color: #334155 !important;
}
body.dac-light .dac-give-option {
  background: rgba(0, 0, 0, 0.03) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}
body.dac-light .dac-give-option-body h4 {
  color: #0f172a !important;
}
body.dac-light .dac-give-option-body p {
  color: #5c6878 !important;
}
body.dac-light .dac-bank-details li {
  color: #5c6878 !important;
}
body.dac-light .dac-bank-details li span {
  color: #334155 !important;
}

body.dac-light .dac-contact-block {
  background: var(--dac-card-bg) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}
body.dac-light .dac-contact-heading {
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}
body.dac-light .dac-contact-item-icon {
  background: rgba(0, 155, 247, 0.08) !important;
}
body.dac-light .dac-contact-item-body p,
body.dac-light .dac-contact-item-body div {
  color: #0f172a !important;
}
body.dac-light .dac-contact-item-body h4 {
  color: #5c6878 !important;
}
body.dac-light .dac-contact-social {
  border-top-color: rgba(0, 0, 0, 0.08) !important;
}
body.dac-light .dac-social-icon {
  background: rgba(0, 0, 0, 0.04) !important;
  color: #5c6878 !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

/* ── Find Us section ── */
body.dac-light .dac-findus-item p {
  color: #0f172a !important;
}
body.dac-light .dac-findus-item h4 {
  color: #5c6878 !important;
}
body.dac-light .dac-findus-icon {
  background: rgba(0, 155, 247, 0.08) !important;
}

/* ── Header ── */
body.dac-light .dac-topbar {
  background: var(--dac-surface) !important;
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}
body.dac-light .dac-topbar::before {
  background: var(--dac-primary) !important;
}
body.dac-light .dac-topbar-label {
  color: #5c6878 !important;
}
body.dac-light .dac-topbar-link {
  color: #0f172a !important;
  background: rgba(0, 155, 247, 0.08) !important;
  border-color: rgba(0, 155, 247, 0.2) !important;
}
body.dac-light .dac-topbar-link:hover {
  background: rgba(0, 155, 247, 0.15) !important;
}
body.dac-light .dac-topbar-every {
  color: #94a3b8 !important;
}

body.dac-light .header-upper {
  background: var(--dac-dark) !important;
}

/* ── Sticky header ── */
body.dac-light .sticky-header {
  background: var(--dac-dark) !important;
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}
body.dac-light .sticky-header .navigation li a {
  color: rgba(15, 23, 42, 0.75) !important;
}
body.dac-light .sticky-header .navigation li a:hover,
body.dac-light .sticky-header .navigation li.current-menu-item a {
  color: var(--dac-primary) !important;
}
body.dac-light .dac-sticky-social li a {
  color: rgba(15, 23, 42, 0.6) !important;
  border-color: rgba(15, 23, 42, 0.2) !important;
}
body.dac-light .dac-sticky-social li a:hover {
  color: #ffffff !important;
}

/* ── Pill badges ── */
body.dac-light .dac-pill {
  background: rgba(0, 155, 247, 0.1) !important;
  border-color: rgba(0, 155, 247, 0.2) !important;
}

/* ── Side panels — keep dark ── */
/* (Side panels are overlays, keeping them dark looks better in both modes) */

/* ── Mobile menu — keep dark overlay ── */
/* (The full-screen menu overlay stays dark in both modes for dramatic effect) */

/* ── Sec titles from parent theme ── */
body.dac-light .sec-title h2,
body.dac-light .sec-title h3,
body.dac-light .dac-section .sec-title h2,
body.dac-light .dac-section .sec-title h3,
body.dac-light .dac-section.alt .sec-title h2,
body.dac-light .dac-section.alt .sec-title h3 {
  color: #0f172a !important;
}
body.dac-light .dac-section .text p,
body.dac-light .dac-section.alt .text p {
  color: #4a5568 !important;
}

/* ── Catch-all: any remaining white text ── */
body.dac-light .dac-hero .sec-title h2,
body.dac-light .dac-hero .sec-title h3,
body.dac-light .dac-hero--home .dac-hero-sec-title h2,
body.dac-light .dac-hero--home .dac-hero-sec-title h3,
body.dac-light .dac-hero .dac-hero-title,
body.dac-light .dac-visit-title,
body.dac-light .dac-visit-card-time,
body.dac-light .dac-visit-card-time span,
body.dac-light .dac-resource-block h2 {
  color: #0f172a !important;
}

body.dac-light .dac-hero .sec-title .sub-title {
  color: var(--dac-primary) !important;
}

/* Force all remaining white text to dark in light mode */
body.dac-light [style*="color: #fff"],
body.dac-light [style*="color: white"],
body.dac-light [style*="color:#fff"],
body.dac-light [style*="color: #ffffff"],
body.dac-light [style*="color:#ffffff"],
body.dac-light [style*="color: rgb(255"],
body.dac-light .dac-hero-sec-title h2,
body.dac-light .dac-hero-sec-title h3,
body.dac-light .dac-hero-sec-title p,
body.dac-light .dac-hero-sec-title span,
body.dac-light .dac-hero-sec-title {
  color: #0f172a !important;
}

/* ── Side panels (congregation drawers) ── */
body.dac-light .dac-130-drawer {
  background: #ffffff !important;
  box-shadow: -6px 0 32px rgba(0, 0, 0, 0.12) !important;
}
body.dac-light .dac-130-backdrop {
  background: rgba(0, 0, 0, 0.25) !important;
}
body.dac-light .dac-130-close {
  color: rgba(15, 23, 42, 0.5) !important;
}
body.dac-light .dac-130-close:hover {
  color: #0f172a !important;
}
body.dac-light .dac-130-social li a {
  color: #0f172a !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
}
body.dac-light .dac-130-social li a:hover {
  color: #ffffff !important;
}

/* ── Slider nav arrows ── */
body.dac-light .slider-section .nav-style-one .owl-nav button {
  border-color: rgba(15, 23, 42, 0.25) !important;
}
body.dac-light .slider-section .nav-style-one .owl-nav button::before {
  filter: invert(1) !important;
}

/* ── Map section ── */
body.dac-light .dac-map-section {
  background: var(--dac-surface) !important;
}

/* ── Resource image blocks ── */
body.dac-light .dac-resource-block {
  color: #1e293b !important;
}

/* ── Card link colour stays blue ── */
body.dac-light .dac-card-link {
  color: var(--dac-primary) !important;
}

/* ── Mobile menu — light mode ── */
body.dac-light .mobile-menu .menu-box {
  background: rgba(248, 246, 239, 0.97) !important;
}
body.dac-light .mobile-menu .menu-box::before {
  background: radial-gradient(circle, rgba(0, 155, 247, 0.06) 0%, transparent 65%) !important;
}
body.dac-light .mobile-menu .close-btn {
  background: rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}
body.dac-light .mobile-menu .close-btn:hover {
  background: rgba(0, 0, 0, 0.12) !important;
}
body.dac-light .mobile-menu .close-btn i {
  color: rgba(15, 23, 42, 0.75) !important;
}
body.dac-light .mobile-menu .navigation > li > a {
  color: rgba(15, 23, 42, 0.55) !important;
}
body.dac-light .mobile-menu .navigation > li > a:hover {
  color: #0f172a !important;
}
body.dac-light .mobile-menu .navigation > li.current-menu-item > a {
  color: var(--dac-primary) !important;
}

/* ── Mode toggle — pill with sliding knob ── */
.dac-mode-toggle {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 34px;
  border-radius: 999px;
  background: #1a2540;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.35s, border-color 0.35s;
  overflow: hidden;
}

/* Sliding knob — left in dark, right in light */
.dac-mode-knob {
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s;
  z-index: 2;
}

/* Icons inside knob */
.dac-mode-knob i {
  position: absolute;
  font-size: 0.8rem;
  transition: opacity 0.25s, transform 0.25s;
}
.dac-mode-icon-dark {
  color: #1a2540;
  opacity: 1;
  transform: rotate(0deg);
}
.dac-mode-icon-light {
  color: #ff8b33;
  opacity: 0;
  transform: rotate(-90deg);
}

/* Labels — absolutely positioned to avoid knob overlap */
.dac-mode-label-dark,
.dac-mode-label-light {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.25s;
}
/* Dark mode: knob is left, label sits right */
.dac-mode-label-dark {
  right: 8px;
  color: #ffffff;
  opacity: 1;
}
/* Light mode label: knob is right, label sits left — hidden by default */
.dac-mode-label-light {
  left: 8px;
  color: #334155;
  opacity: 0;
}

/* Hover */
.dac-mode-toggle:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

/* ═══ LIGHT MODE state ═══ */
body.dac-light .dac-mode-toggle {
  background: #e8e4d9;
  border-color: rgba(0, 0, 0, 0.1);
}
body.dac-light .dac-mode-toggle:hover {
  border-color: rgba(0, 0, 0, 0.25);
}

/* Knob slides to the right */
body.dac-light .dac-mode-knob {
  left: calc(100% - 31px);
  background: #1a2540;
}

/* Swap icons */
body.dac-light .dac-mode-icon-dark {
  opacity: 0;
  transform: rotate(90deg);
}
body.dac-light .dac-mode-icon-light {
  opacity: 1;
  transform: rotate(0deg);
  color: #ffffff;
}

/* Swap labels */
body.dac-light .dac-mode-label-dark {
  opacity: 0;
}
body.dac-light .dac-mode-label-light {
  opacity: 1;
}
