/* ROOT COLORS */
:root {
  --primary: #4a6fa5;
  --secondary: #ff6b6b;
  --accent: #51cf66;
  --dark: #2c3e50;
  --light: #f8f9fa;
  --gradient: linear-gradient(135deg, #4a6fa5 0%, #2c3e50 100%);
}

/* GLOBAL */
body {
  font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
  background: var(--light);
  color: #333;
}

/* NAVBAR */
.navbar {
  background: var(--gradient);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* HERO SECTION */
.hero-section {
  background: var(--gradient);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/headback.jpg') center/cover no-repeat;
  opacity: 0.15;
}

/* QUOTE OF THE DAY BOX */
.quote-of-day {
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  padding: 2.5rem;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-left: 5px solid var(--accent);
}

/* FEATURE + TESTIMONIAL CARDS */
.feature-card,
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all .3s ease;
}

.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ICON BOX */
.icon-box {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
}

/* BIBLE WORD BOX */
.bible-word-box {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  margin: 3rem 0;
  border: 2px solid var(--primary);
  position: relative;
}

.bible-word-box::before {
  content: '"';
  font-size: 8rem;
  color: var(--primary);
  opacity: .1;
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: Georgia, serif;
}

/* APP SECTION */
.app-section {
  background: var(--gradient);
  color: #fff;
  padding: 5rem 0;
  border-radius: 20px;
  margin: 4rem 0;
}

/* BUTTONS */
.btn-primary {
  background: var(--primary);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

.btn-app {
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  margin: 0 10px;
  transition: all .3s;
}

.btn-app:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-3px);
}

/* TEXT GRADIENT */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

/* SPIRITUAL SECTION */
.spiritual-section {
  margin: 4rem auto;
  text-align: center;
  max-width: 900px;
  padding-top: 1rem;
}

.spiritual-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2.5rem !important;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spiritual-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spiritual-card:hover {
  transform: translateY(-5px);
}

.spiritual-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid var(--primary);
}

/* FLOATING ACTION BUTTON */
.fab-download {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: bounce 2.5s infinite ease-in-out;
  overflow: visible;
}

.fab-download:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  animation: none;
}

.fab-label {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transition: 0.3s ease;
  white-space: nowrap;
}

.fab-download:hover .fab-label {
  opacity: 1;
  transform: translateY(-3px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-6px); }
}

@media (max-width: 576px) {
  .fab-download {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  .fab-label {
    font-size: 13px;
    right: 65px;
  }
}

/* SAINTS CAROUSEL */
.saints-section {
  margin: 4rem auto;
  text-align: center;
  width: 100%;
}

.saints-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.saint-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  max-width: 260px;
  height: 100%;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.saint-card:hover {
  transform: translateY(-6px);
}

.saint-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
}


/*jjhfd*/

.saint-card {
  height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* <-- center vertically */
}

.saint-card h5 {
  min-height: 48px;
  display: flex;
  align-items: center;   /* ensures text is centered inside block */
  text-align: center;
}

.saint-card small {
  min-height: 22px;
  display: flex;
  align-items: center;   /* vertical centering */
  text-align: center;
}

/*fodf*/

.swiper {
  width: 100%;
  padding-bottom: 40px;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--primary);
}

.swiper-pagination-bullet {
  background: var(--primary);
}

/* QUOTE ANIMATION */
.quote-animate-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.quote-animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.liturgy-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  text-align: left;
  line-height: 1.8;
}

.toggle-btn {
  border-radius: 30px;
  padding: 5px 15px;
  font-size: 14px;
}


/* ---- Liturgy design inspired by screenshot ---- */
.liturgy-wrap {
  background: #082947;
  color: #fff;
  padding: 3rem 2rem;
  position: relative;
  overflow: visible;   /* <-- CHANGE THIS */
  border-top: 6px solid rgba(255,255,255,0.03);
}

#liturgy {
  position: relative;
  padding-top: 70px; /* space for date badge */
}

.liturgy-date-badge {
  position: absolute;
  left: 40px;  /* adjust as preferred */
  top: -20px;  /* pulled slightly above the section */
  background: #c62828;
  color: #fff;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 700;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 10;
}

@media (max-width: 992px) {
  .liturgy-date-badge {
    left: 15px; /* adjust for smaller screens */
    top: -10px;
  }
}

/*.liturgy-date-badge i { font-size: 18px; }*/

@media (max-width: 992px) {
  .liturgy-date-badge { left: 20px; top: -12px; }
}

/* Left artwork */
.liturgy-art-frame {
  border-left: 16px solid #ff6b00; /* orange frame left */
  border-top: 6px solid #ff6b00;
  border-bottom: 6px solid #ff6b00;
  max-width: 330px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.liturgy-art { display:block; border-radius: 2px; }

/* Right panel */
.liturgy-content-panel {
  background: transparent;
  /* keep panel look but use transparent so navy background shows through */
}

/* Headings */
.liturgy-small-heading {
  font-size: 1.1rem;
  opacity: 0.85;
}
.liturgy-main-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: .5rem;
}

/* Readings list */
.liturgy-reading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.liturgy-reading .icon {
  font-size: 20px;
  color: #ff8a2b; /* orange cross */
  margin-top: 6px;
}

.liturgy-reading .meta {
  font-weight: 600;
  color: #fff;
}

.liturgy-reading .ref {
  color: #ff8a2b;
  font-weight: 700;
  margin-left: 6px;
}

/* Collapsible content */
.liturgy-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  margin-top: 10px;
  text-align: left;
  line-height: 1.9;
  color: #f3f6f9;
}

/* toggle button */
.liturgy-toggle {
  margin-top: 8px;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 14px;
}

/* language toggle buttons */
.lang-toggle .btn {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  background: transparent;
}
.lang-toggle .btn.active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.8);
}

/* small responsive adjustments */
@media (max-width: 992px){
  .liturgy-main-heading { font-size: 1.9rem; }
  .liturgy-art-frame { max-width: 200px; margin-bottom: 1rem; }
  .liturgy-row { gap: 20px; }
  .liturgy-wrap { padding: 2rem 1rem; }
}



/* --- Modern Spiritual Section --- */

.spiritual-section-v2 {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.spiritual-title-v2 {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4a6fa5, #51cf66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.spiritual-card-v2 {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: 0.3s ease;
  height: 100%;
}

.spiritual-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.20);
}

.spiritual-img-frame {
  width: 130px;
  height: 130px;
  border: 5px solid #4a6fa5;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.spiritual-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spiritual-name {
  margin-top: 10px;
  margin-bottom: 4px;
  font-weight: 700;
}

.spiritual-role {
  color: #666;
  font-size: 0.9rem;
}


/* --- App Section Modern Design --- */

.app-section-v2 {
  background: var(--gradient);
  color: #fff;
  border-radius: 20px;
  padding: 4rem 1rem;
  margin: 4rem auto;
}

.app-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.app-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* Cards */
.app-card {
  background: #ffffff;
  color: #333;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.20);
  transition: 0.3s ease;
  height: 100%;
}

.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.30);
}

/* Images */
.app-img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  margin-bottom: 1.2rem;
}

/* Titles */
.app-feature-title {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.app-feature-text {
  font-size: 0.95rem;
  color: #555;
}

/* Download button */
.app-download-btn {
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.app-download-btn:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-3px);
}


.vm-banner-section {
  margin: 4rem 0;
}

.vm-banner {
  position: relative;
  background: url('/assets/images/saints/cross_sy.jpeg') center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  padding: 4rem 2rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

/* Dark overlay */
.vm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,41,71,0.9), rgba(4,22,38,0.9));
}

/* Content */
.vm-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.vm-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #4a6fa5, #51cf66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Boxes */
.vm-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 2rem;
  border-radius: 16px;
  min-height: 260px;
  transition: 0.3s ease;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.vm-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

.vm-heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffb86c; /* warm Catholic tone */
}

.vm-text {
  line-height: 1.7;
  color: #e4e8ef;
}

/* Mission list */
.vm-list {
  padding-left: 1.2rem;
  color: #e4e8ef;
  line-height: 1.8;
}

.vm-list li::marker {
  color: #ffb86c;
}

@media (max-width: 768px) {
  .vm-title { font-size: 2rem; }
  .vm-box { padding: 1.6rem; }
}


/* --- EPHPHATHA RADIO SECTION --- */

.radio-section {
  background: #082947;
  color: #fff;
  border-radius: 20px;
  margin: 4rem auto;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.radio-title {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4a6fa5, #51cf66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.radio-subtitle {
  color: #d2d7dd;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Radio Card */
.radio-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 2.8rem 2rem;
  max-width: 550px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

.radio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* Icon */
.radio-icon i {
  font-size: 55px;
  color: #ffb86c;
  text-shadow: 0 0 8px rgba(255,184,108,0.6);
}

.radio-now {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 700;
}

/* Player */
.radio-player {
  width: 100%;
  border-radius: 10px;
  outline: none;
}

/* Footer Quote */
.radio-footer-text {
  color: #e4e8ef;
  font-style: italic;
  font-size: 0.95rem;
}


/* ---- EPHPHATHA Radio UI Inspired by official website ---- */

.radio-section {
  background: linear-gradient(135deg, #003087, #001a45);
  padding: 4rem 1.5rem;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  margin: 4rem 0;
}

/* Logo */
.radio-logo {
  width: 160px;
  max-width: 90%;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.4));
}

/* Title */
.radio-title {
  font-size: 2.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4a9eff, #51cf66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.radio-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-top: 8px;
}

/* Card */
.radio-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  padding: 2.5rem 2rem;
  max-width: 480px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  text-align: center;
}

.radio-icon i {
  font-size: 60px;
  color: #4a9eff;
  text-shadow: 0 0 10px rgba(74,158,255,0.8);
}

.radio-now {
  font-weight: 700;
  font-size: 1.4rem;
}

/* Player */
.radio-player {
  width: 100%;
  border-radius: 12px;
  outline: none;
  background: #fff;
}

/* Verse */
.radio-verse {
  margin-top: 1rem;
  font-style: italic;
  color: #dfe6f0;
}


/* ---- FULL-WIDTH EPHPHATHA RADIO (PREMIUM) ---- */

#ephphatha-radio {
  width: 100%;
  padding: 5rem 0;
  background: linear-gradient(135deg, #052038, #08345a, #0a4477);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle gloss texture */
#ephphatha-radio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/images/texture-light.png') center/cover;
  opacity: 0.08;
}

/* Title */
.radio-title {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4ab3ff, #8ae9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.radio-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #e0e7ef;
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Card */
.radio-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  max-width: 850px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 35px rgba(0,0,0,0.4);
  text-align: center;
}

/* Icon */
.radio-icon i {
  font-size: 65px;
  color: #4ab3ff;
  text-shadow: 0 0 18px rgba(74,179,255,0.9);
}

/* Player */
.radio-player {
  width: 100%;
  border-radius: 12px;
  background: #fff;
  padding: 4px 0;
}

/* Verse */
.radio-footer-text {
  font-style: italic;
  color: #d8e6f3;
  font-size: 1.1rem;
}

/* Description text */
.radio-description {
  margin-top: 1rem;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #e8f1fa;
}
.footer-link {
  color: #fff;
  text-decoration: underline;
}
.footer-link:hover {
  color: #ddd;
}
.policy-container {
    max-width: 900px;
    background: #fff;
    margin: 40px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 3px 12px rgba(0,0,0,0.08);
}
.policy-container h1,
.policy-container h2 {
    color: #2c3e50;
}
.policy-container p, 
.policy-container ul {
    line-height: 1.7;
    font-size: 15px;
}


