
:root{
  --theme-primary:#f27e45;
  --theme-primary-dark:#d86128;
  --theme-dark:#1c1917;
  --theme-brown:#35261f;
  --theme-soft:#f8f2e6;
  --theme-soft-2:#FDF3CF;
  --theme-text:#6f665f;
  --theme-heading:#2a211c;
  --theme-border:rgba(42,33,28,.08);
  --shadow-lg:0 18px 60px rgba(31,22,17,.12);
  --shadow-md:0 12px 35px rgba(31,22,17,.09);
  --radius-xl:32px;
  --radius-lg:22px;
  --radius-md:16px;
  --transition:all .35s ease;
}

html{scroll-behavior:smooth;}
body{
  font-family:'Mulish',sans-serif;
  color:var(--theme-text);
  line-height:1.8;
  overflow-x:hidden;
  background-image: url('../images/gold-bg.jpg');
  background-size:auto;
  background-repeat: repeat;
}
img{max-width:100%;display:block;}
a{text-decoration:none;transition:var(--transition);}
h1,h2,h3,h4,h5,h6{
  font-family:'Bitter',serif;
  color:var(--theme-heading);
  line-height:1.18;
}
h1{font-size:clamp(2.7rem,6vw,4.65rem);color:#fff;text-shadow:0 8px 24px rgba(0,0,0,.25);}
h2{font-size:clamp(2rem,4vw,2.95rem);margin-bottom:1rem;}
p{font-size:1rem;}
.section-space{padding:110px 0;}
.section-space-sm{padding:90px 0;}
.section-soft{background:var(--theme-soft-2);}
.section-heading{margin-bottom:48px;}
.section-heading.mx-auto{max-width:800px;}
.eyebrow{
  display:inline-block;
  font-family:'Mulish',sans-serif;
  font-size:1rem;
  color:var(--theme-primary);
  margin-bottom:.65rem;
  text-transform: uppercase;
}
.logo img{
  height:80px;
}
.social-icons{
  display: flex;
}
.social-icons a{
  color:#ffffff;
  padding:3px 5px;
}
.header-top{
  padding: 5px 0px;
  border-bottom:1px solid rgba(255, 255, 255, 0.08)
}
.btn{
  border-radius:999px;
  padding:.9rem 1.65rem;
  font-weight:800;
  letter-spacing:.01em;
}
.btn-theme{
  background:linear-gradient(135deg,var(--theme-primary),#ff9d62);
  color:#fff;
  border:none;
  box-shadow:0 16px 30px rgba(242,126,69,.28);
}
.btn-theme:hover{background:linear-gradient(135deg,var(--theme-primary-dark),var(--theme-primary));color:#fff;transform:translateY(-2px);}
.btn-soft{
  border:1px solid rgba(255,255,255,.45);
  color:#2d211c;
}
.btn-sm-rounded{padding:.72rem 1.2rem;font-size:.92rem;}
.page-wrapper{position:relative;}

.navbar{
  padding:1.05rem 0;
  transition:var(--transition);
}
.navbar.scrolled{
  background:rgba(24,18,14,.93);
  backdrop-filter:blur(12px);
  box-shadow:0 8px 30px rgba(0,0,0,.18);
  padding:.8rem 0;
}
.navbar.scrolled .header-top{
  display: none;
}
.brand-mark{
  width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;
  background:rgba(255,255,255,.14);
  color:#fff;font-size:1.05rem;
  border:1px solid rgba(255,255,255,.16);
}
.brand-text{display:flex;flex-direction:column;line-height:1.05}
.brand-text small{
  color:#ffcfb8;
  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.brand-text strong{font-size:1.05rem;letter-spacing:.08em;color:#fff;}
.nav-item .nav-link, .nav-item > span{
  color:rgba(255,255,255,1);
  font-weight:500;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.05em;
  padding:.8rem .5rem !important;
  display: block;
}
.navbar .nav-link:hover,.navbar .nav-link.active{color:#fff;}
.nav-item.dropdown:hover ul{
  display: block;
}
.header-btn{
  padding:5px 12px;
  font-size: 13px;
  font-weight: normal;
}
@media (max-width:1199.98px){
  .navbar-collapse{
    background:rgba(23,17,13,.94);
    border-radius:20px;
    padding:1rem;
    margin-top:1rem;
    box-shadow:var(--shadow-md);
  }
}

.hero-section{position:relative;background:#241710;}
.hero-slider,.hero-slider .swiper-slide,.hero-slide{height:100vh;min-height:780px;}
.hero-slide{
  display:flex;align-items:center;
  background-size:cover;
  background-position:center;
  position:relative;
}
.hero-slide h1{
  max-width: initial;
  font-size: 50px;
}
.glass-panel{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius-xl);
  padding:2rem;
  backdrop-filter:blur(10px);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}
.hero-panel p{color:rgba(255,255,255,.86);margin-bottom:0; line-height: initial;}
.hero-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:54px;height:54px;border-radius:50%;
  display:grid;place-items:center;
  color:#fff;background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.18);
  cursor:pointer;
  backdrop-filter:blur(8px);
}
.hero-nav:hover{background:rgba(242,126,69,.9);}
.hero-prev{left:22px;}
.hero-next{right:22px;}

.feature-ribbon-wrap{
  position:absolute;
  left:0;right:0;bottom:-1px;
  z-index:4;
  background-image: url('../images/feature-ribbon.png');
  background-size: 100% 150px;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.feature-card{
  background:#fff;
  border-radius:22px;
  text-align:center;
  padding:1.35rem .8rem 1rem;
  height:100%;
  transition:var(--transition);
  box-shadow:0 8px 24px rgba(29,21,16,.06);
}
.feature-card:hover,.feature-card.active{transform:translateY(-6px);}
.feature-card.active{border:1px solid rgba(242,126,69,.24);}
.feature-icon{
  width: 80px;
  height: 80px;
  border-radius: 80px;
  -webkit-border-radius: 80px;
  margin:0 auto .75rem;
  display:grid;place-items:center;
  color:var(--theme-primary);
  font-size:1rem;
  background-color: color-mix(in srgb, var(--theme-primary) 10%, transparent);
  font-weight: bold;
}
.feature-card h6{
  font-family: 'Mulish', sans-serif;
  width: 100%;
  margin: auto;
  max-width: 200px;
}
.feature-card p{margin:0;font-size:.88rem;}

.stats-grid{display:flex;gap:1rem;}
.stat-item{
  padding:1.3rem 1.2rem;
  text-align: center;
  border-right:1px solid #dddddd;
}
.stats-grid > div:last-child{
  border:none;
}
.stat-item img{height: 30px;width: auto;display: inline-block;margin-bottom: 10px;}
.stat-item h4{font-family:'Bitter',serif;font-size:1.9rem;color:var(--theme-heading);line-height:1.05;margin:0px;}
.stat-item span{font-size:.95rem;}
.image-card{
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.tilt-card{transform:perspective(1000px) rotateY(-5deg) rotateX(1deg);}
.tilt-card img{width:100%;height:100%;object-fit:cover;}

.value-layout{
  display:grid;
  grid-template-columns:1fr minmax(260px, 380px) 1fr;
  align-items:center;
  gap:1.5rem 10rem;
}
.value-col{display:grid;gap:1rem;}
.value-box{
  text-align:center;
  padding:1rem .8rem;
}
.value-icon{
  width:66px;height:66px;border-radius:50%;
  display:grid;place-items:center;
  margin:0 auto .85rem;
  color:var(--theme-primary);
  font-size:1.25rem;
}
.value-box h6{margin-bottom:.4rem;}
.value-box p{font-size:.95rem;max-width:240px;margin:0 auto;}
.center-visual{
  position:relative;
  min-height:430px;
  display:grid;
  place-items:end center;
}
.center-visual img{
  position:relative;z-index:2;
  max-width:100%;
  max-height:390px;
  object-fit:contain;
  filter:drop-shadow(0 25px 40px rgba(0,0,0,.12));
}
.ring{
  position:absolute;border-radius:50%;
  border:1px solid rgba(242,126,69,.28);
}
.ring-lg{width:360px;height:360px;bottom:5px;}
.ring-sm{width:250px;height:250px;bottom:62px;}

.cta-banner{
  position:relative;
  background:url('../images/priest-bg.png') center/cover no-repeat;
}
.cta-overlay{
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(20,14,11,.9),rgba(20,14,11,.55));
}
.speaker-meta{
  background-image: linear-gradient(to right, #FF6D34 , transparent);
  display: flex;
  padding:5px 20px;
  align-items: center;
  margin-bottom: 20px;
}
.speaker-meta span{display:block;color:#fff;padding-right: 10px;}
.speaker-meta label{display:block;color:rgba(255,255,255,1);font-size:1.2rem;}
.cta-icons{
  display:flex;justify-content:flex-end;gap:.8rem;flex-wrap:wrap;
}
.cta-icons span,.social-links a{
  width:46px;height:46px;border-radius:50%;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.18);
  color:#fff;background:rgba(255,255,255,.07);
}
.social-links{display:flex;gap:.75rem;flex-wrap:wrap;}
.social-links a:hover{background:var(--theme-primary);border-color:var(--theme-primary);}

.event-list{
  background:#fff;
  border-radius:32px;
  padding:1rem 1.5rem;
  box-shadow:var(--shadow-lg);
  margin-bottom: 80px;
}
.event-item{
  display:grid;
  grid-template-columns:90px 120px 1fr 54px;
  align-items:center;
  gap:1.25rem;
  padding:1.2rem 0;
  border-bottom:1px solid var(--theme-border);
}
.event-item:last-child{border-bottom:none;}
.event-date{
  display: flex;
  gap:10px;
  align-items: center;
}
.event-date strong{
  display:block;
  font-size:2.2rem;
  line-height:.9;
  color:var(--theme-primary);
}
.event-date span{font-size:.9rem;line-height:1.3;display:block;}
.event-thumb img{
  width:120px;height:76px;object-fit:cover;border-radius:16px;
}
.event-content h5{font-size:1.15rem;margin-bottom:.45rem;}
.event-content ul{
  list-style:none;padding:0;margin:0;
  display:flex;flex-wrap:wrap;gap:1rem 1.5rem;
}
.event-content li{font-size:.92rem;}
.event-content i{color:var(--theme-primary);margin-right:.35rem;}
.event-link,.slider-arrow{
  width:50px;height:50px;border-radius:50%;
  display:grid;place-items:center;
  border:1px solid rgba(42,33,28,.14);
  color:var(--theme-heading);
  background:#fff;
}
.event-link:hover,.slider-arrow:hover{background:var(--theme-primary);border-color:var(--theme-primary);color:#fff;}

.leaders-slider,.diocese-slider{position:relative;padding:10px 52px;}
.leader-card{
  background:#fff;border-radius:22px;overflow:hidden;
  box-shadow:var(--shadow-md);
  padding:8px;
}
.leader-card img{
  width:100%;height:300px;object-fit:cover;border-radius:16px;
}
.leader-card span{
  color:var(--theme-primary);
  display: block;
  margin: 10px 0px 0px;
}
.leader-card h6{padding:0 0 .8rem;margin:0;}
.slider-arrow{
  position:absolute;top:43%;transform:translateY(-50%);z-index:3;cursor:pointer;
}
.leaders-prev,.diocese-prev, .gallery-prev{left:0;}
.leaders-next,.diocese-next, .gallery-next{right:0;}

.diocese-section{
  background:
    linear-gradient(180deg,rgba(20,14,11,.86),rgba(20,14,11,.72)),
    url('../images/other-bg.png') center/cover no-repeat;
}
.diocese-card{
  background:#fff;
  border-radius:24px;
  padding:2rem 1.4rem;
  text-align:center;
  box-shadow:var(--shadow-lg);
  min-height:320px;
  display:flex;flex-direction:column;justify-content:center;
}
.diocese-logo{
  width:88px;height:88px;border-radius:50%;
  display:grid;place-items:center;
  margin:0 auto 1rem;
  background:linear-gradient(135deg,#fff6f1,#ffe0cf);
  color:var(--theme-primary);
  font-family:'Bitter',serif;
  font-size:1.2rem;
  border:1px solid rgba(242,126,69,.24);
  box-shadow:0 12px 24px rgba(242,126,69,.14);
}
.diocese-logo img{
  border-radius: 100px;
  -webkit-border-radius: 100px;
}
.diocese-card h5{font-size:1.2rem;margin-bottom:1.2rem;}

.footer-area{
  background:#171311;
  color:rgba(255,255,255,.72);
  padding:90px 0 34px;
}
.footer-area h4,.footer-area h5,.footer-area h6{color:#fff;margin-bottom: 20px;}
.footer-links,.footer-contact{list-style:none;padding:0;margin:0;}
.footer-links li,.footer-contact li{margin-bottom:.8rem; position: relative;}
.footer-contact li{
  padding-left:30px;
}
.footer-contact li i{
  position: absolute;
  left: 0px;
  top:0px;
  color: var(--theme-primary);
}
.footer-contact li span{
  color: #ffffff;
  display: block;
}
.footer-links a,.footer-contact li{color:rgba(255,255,255,.72);}
.footer-links a:hover{color:#fff;}
.volunteer-bar{
  margin-top:3rem;
  background:#fff;
  border-radius:26px;
  padding:1.5rem 1.8rem;
  box-shadow:var(--shadow-lg);
  display:grid;
  grid-template-columns:76px 1fr auto;
  align-items:center;
  gap:1rem 1.5rem;
  padding-left:130px;
}
.volunteer-figure img{
  height: 152px;
  position: absolute;
  bottom: -1px;
  left:0px;
}
.volunteer-bar h5{margin:0;color:var(--theme-heading);font-size:1.1rem;}
.footer-bottom{
  padding-top:2rem;
  margin-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.08);
}
.scroll-culture{
  position: relative;
}
.history{
  position: relative;
}
.feature-ribbon{
  top:215px;
  position: relative;
}
#about, #events{
  background-image: url('../images/about-bg.png');
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
#about .container{
  margin-top: 150px;
  margin-bottom: -150px;
}
.journey-section{
  background-image: url('../images/journey-section-bg.png');
  background-size:auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.value-left{
  position: relative;
  right:-100px;
}
.value-right{
  position: relative;
  left:-100px;
}
.book-bg{
  position: absolute;
  height:200px;
  width: auto;
  bottom:0px;
  right:0px;
}
/* shared slider section spacing */
.leaders-section,
.diocese-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.leaders-slider,
.diocese-slider {
  padding: 12px 8px 56px;
}

/* make edge clipping less harsh */
.leaders-slider .swiper-wrapper,
.diocese-slider .swiper-wrapper {
  align-items: stretch;
}

.leaders-slider .swiper-slide,
.diocese-slider .swiper-slide {
  height: auto;
  opacity: 0.72;
  transform: scale(0.96);
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
  filter: saturate(0.9);
}

.leaders-slider .swiper-slide-active,
.leaders-slider .swiper-slide-visible,
.diocese-slider .swiper-slide-active,
.diocese-slider .swiper-slide-visible {
  opacity: 1;
  filter: saturate(1);
}

.leaders-slider .swiper-slide-active,
.diocese-slider .swiper-slide-active {
  transform: scale(1);
}

/* card styling */
.leader-card,
.diocese-card {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.leader-card:hover,
.diocese-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

/* improve content breathing room */
.leader-card .card-body,
.diocese-card .card-body {
  padding: 20px 18px 22px;
}

/* controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #222;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.slider-btn:hover {
  background: #f28c48;
  color: #fff;
  transform: translateY(-2px);
}

.slider-btn:focus-visible {
  outline: 3px solid rgba(242, 140, 72, 0.35);
  outline-offset: 3px;
}

/* pagination */
.leaders-pagination,
.diocese-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}

.leaders-pagination .swiper-pagination-bullet,
.diocese-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d2d2d2;
  opacity: 1;
  transition: all 0.25s ease;
}

.leaders-pagination .swiper-pagination-bullet-active,
.diocese-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: #f28c48;
}


.animate-swipe-right.swipe {
  animation: swipeRight 0.5s ease-out;
  animation-delay: 0.3s; 
  animation-fill-mode: both;
  opacity: 1;
}
.animate-swipe-left.swipe {
  animation: swipeLeft 1s ease-out;
  animation-delay: 0.3s; 
  animation-fill-mode: both;
  opacity: 1;
}
.animate-swipe-up.swipe {
  animation: swipeDown 1.5s ease-out;
  animation-delay: 0.3s; 
  animation-fill-mode: both;
  opacity: 1;
}
.animate-swipe-down.swipe {
  animation: swipeUp 1.5s ease-out;
  animation-delay: 0.3s; 
  animation-fill-mode: both;
  opacity: 1;
}

@keyframes swipeRight {
  0% {
    transform: translate(30px, 0px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes swipeLeft {
  0% {
    transform: translate(-30px, 0px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes swipeDown {
  0% {
    transform: translate(0px, -30px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes swipeUp {
  0% {
    transform: translate(0px, 30px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}


.navbar .nav-link, .navbar .nav-item span {
  position: relative;
  color: #fff;
  padding-bottom: 6px;
}

.navbar .nav-link::after, .navbar .nav-item span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #ff8c42;
}
.navbar .nav-link.active::after, .navbar .nav-link:hover::after, .navbar .nav-item span:hover::after, .navbar .nav-item span.active::after {
  animation: drawLine 0.8s ease forwards;
}

@keyframes drawLine {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.inner-hero {
    padding: 160px 0 80px;
    background-image: linear-gradient(90deg, rgba(24,16,11,.82), rgba(24,16,11,.45)), url('../images/hero-bg1.jpg');
    background-attachment: fixed;
}
.inner-hero h1{
  margin-top: 40px;
  font-size: 50px;
}

.breadcrumb-item,.breadcrumb-item a {
    color: rgba(255,255,255,.84)
}

.breadcrumb-item.active {
    color: #fff
}
.breadcrumb-item+.breadcrumb-item::before{
    color: #fff
}
.mini-stat {
    text-align: center;
    background: #fff;
    border-radius: 22px;
    padding: 1.6rem;
    box-shadow:0 18px 45px rgba(28,18,12,.12);
    height: 100%;
}
.mini-stat strong{
  font-size: 30px;
}
.mini-stat span{
  line-height: initial;
  display: block;
}
.stat-card, .service-card, .download-card, .delegate-card, .list-card, .info-card, .content-card, .highlight-panel, .contact-form-card, .support-card, .timeline-card{
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  box-shadow:0 18px 45px rgba(28,18,12,.12);
  height: 100%;
  transition: all .5s;
}
.service-card:hover, .download-card:hover, .delegate-card:hover, .list-card:hover, .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(28, 18, 12, .16);
}


.service-icon, .download-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: #fff4ed;
    color:#ef7c41;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.contact-mini i{
  background:var(--theme-primary);
  color:#ffffff;
  padding: 6px;
  border-radius: 10px;
  min-width:35px;
  height:35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-mini li{
  margin-bottom: 10px;
  display: flex;
}
.contact-mini li p{
  flex:1;
  padding-left: 10px;
  white-space:nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown-toggle::after{
    content:initial;
    border:none;
}
.dropdown-item:hover{
  color: var(--theme-primary);
}
.dropdown-item.active, .dropdown-item:active{
  color: var(--theme-primary);
}
.dropdown::after{
  content: '▼';
  position: absolute;
  right:-5px;
  top:15px;
  color: #fff;
  font-size: 10px;
}

/* Tabs */
.gallery-tabs .tab-btn {
  border: none;
  background: #ffffff;
  padding: 8px 18px;
  margin: 5px;
  border-radius: 30px;
  transition: 0.3s;
}

.gallery-tabs .tab-btn.active {
  background: #ff8c42;
  color: #fff;
}

/* Gallery */
.gallery-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-item img {
  border-radius: 10px;
  transition: 0.4s ease;
  width: 100%;
  aspect-ratio:1/.8;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.1);
  
}

/* Fade animation */
.gallery-item.hide {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  animation: zoomIn 0.4s ease;
}

/* Controls */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
}

.prev { left: 30px; }
.next { right: 30px; }

.text-link {
    color: var(--theme-primary);
    font-weight: 800;
}
.contact-detail-list li{
  border: var(--bs-border-width) solid var(--bs-border-color);
  padding: 10px;
  border-radius: 10px 15px;
  margin-bottom: 10px;
}

.dropdown-item.active, .dropdown-item:active{
  background: transparent;
}

/* Animation */
@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.contact-detail-list li{
      padding: 10px 15px;
}

.contact-detail-list li strong{
    display: block;
    color: var(--theme-primary);
    display: block;
    margin: 0px 0px 0px;
}

.feature-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 36px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #dddddd;
    background: rgba(255, 255, 255, .75);
    border-radius: 20px;
    padding: 18px 20px;
    color: var(--primary);
    font-weight: 700;
    min-height: 64px;
    box-shadow: 0 12px 32px rgba(20, 58, 126, .05);
}

.feature-pill i {
    color:var(--theme-primary);
    font-size: 1.1rem;
}


.quick-info {
    display: grid;
    gap: 16px;
}
.quick-item {
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 22px;
    padding: 14px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.quick-item i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;;
    color:var(--theme-primary);
    background: rgba(233, 179, 33, .16);
    font-size: 1.15rem;
    flex-shrink: 0;
}
.quick-item span {
    display: block;
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 3px;
    font-weight: 600;
}
.quick-item strong {
    color:var(--theme-primary);
    font-size: 1rem;
}

.gallery-slide-card {
  border-radius: 20px;
  overflow: hidden;
}

.gallery-slide-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .lightbox-img {
    max-width: 95%;
  }
}


@media (max-width: 767.98px) {
  .leaders-section,
  .diocese-section {
    padding: 60px 0;
  }

  .leaders-slider,
  .diocese-slider {
    padding: 8px 6px 48px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
  }
}

/* accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .leaders-slider .swiper-slide,
  .diocese-slider .swiper-slide,
  .leader-card,
  .diocese-card,
  .slider-btn {
    transition: none;
  }
}

.nav-item.dropdown span{
  padding-right: 15px;
}



@media (max-width:1200px){
  .value-layout{
    gap: 1.5rem 1rem;
  }
  .value-left, .value-right{
    position: initial;
  }
  .feature-ribbon-wrap{
    bottom: -5px;
  }
  .journey-section{
    background-size: 42%;
  }
}
@media (max-width:991.98px){
  .hero-slider,.hero-slider .swiper-slide,.hero-slide{min-height:720px;height:auto;}
  .hero-slide .row{padding-top:130px;padding-bottom:130px;}
  .feature-ribbon-wrap{position:relative;bottom:auto;margin-top:-170px;background-repeat: no-repeat;background-position: bottom center;}
  .value-layout{grid-template-columns:1fr;gap:2rem;}
  .center-visual{order:-1;min-height:360px;}
  .event-item{grid-template-columns:80px 100px 1fr 48px;}
  .event-thumb img{width:100px;height:70px;}
  .volunteer-bar{grid-template-columns:64px 1fr;}
  .volunteer-bar .btn{grid-column:1/-1;justify-self:center;}
  .center-visual{
    display:none;
  }
  .value-layout{
    display: flex;
    justify-content: space-between;
  }
  .book-bg{
    height: 100px;
  }
  .scroll-culture, .history{
    position: initial;
  }
  .feature-ribbon{
    margin-top: 50px;
  }
  .feature-ribbon .row{
    justify-content: center;
  }
  .min-vh-100.row{
    align-items: end!important;
  }
  .feature-ribbon{
    top:50px!important;
  }
  .hero-section{
        background: var(--theme-soft-2);
  }
  .min-vh-100 {
    min-height: 83vh !important;
  }
  #about .container {
      margin-top: 0px;
  }
  .quick-item strong {
      max-width: 100%;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      display: block;
      width: 200px;
  }
}
@media (max-width:767.98px){
  .section-space{padding:40px 0;}
  .section-space-sm{padding:70px 0;}
  .glass-panel{padding:1.5rem;}
  .hero-nav{display:none;}
  .feature-ribbon{padding:1rem;border-radius:26px;}
  .event-list{padding:1rem;}
  .event-item{
    grid-template-columns:1fr;
    align-items:start;
    gap:1rem;
  }
  .event-date{display:flex;align-items:center;gap:.7rem;}
  .event-date strong{font-size:1.75rem;}
  .event-thumb img{width:100%;height:190px;}
  .event-link{margin-left:auto;}
  .leaders-slider,.diocese-slider{padding:10px 0 58px;}
  .slider-arrow{top:auto;bottom:0;transform:none;}
  .leaders-prev,.diocese-prev, .gallery-prev{left:calc(50% - 56px);}
  .leaders-next,.diocese-next, .gallery-next{right:calc(50% - 56px);}
  .cta-icons{justify-content:flex-start;}
  #about .container{
    margin-bottom: 0px;
  }
  .speaker-meta{
    align-items: start;
    flex-direction: column;
  }
  .volunteer-bar {
    grid-template-columns: 0px 1fr;
  }
  .min-vh-100 {
    min-height:100vh !important;
  }
  .feature-ribbon-wrap {
    height: auto;
    padding-bottom: 10px;
  }
}
@media (max-width:575.98px){
  .hero-slide .row{padding-top:120px;padding-bottom:120px;}
  .brand-text strong{font-size:.95rem;}
  .brand-text small{font-size:.65rem;}
  .hero-panel .btn{width:100%;justify-content:center;}
  .center-visual{min-height:310px;}
  .ring-lg{width:280px;height:280px;}
  .ring-sm{width:190px;height:190px;}
  .volunteer-figure img {
      height: 175px;
      position: absolute;
      bottom: -1px;
      left: -87px;
  }
  .volunteer-bar{
    overflow: hidden;
  }

      .feature-ribbon-wrap {
        background: var(--theme-soft-2);
        padding-top: 0px;
    }
    .stat-item {
      padding: 1.3rem .5rem;
    }
    .hero-slide h1 {
      max-width: initial;
      font-size: 40px;
      margin-bottom: 40px;
  }
  .hero-panel.glass-panel{
    margin-bottom: 40px;
  }
  .value-layout{
    align-items: start;
    flex-direction: column;
  }
  .center-visual{
    display: none;
  }
  .value-box p{
    max-width: 100%;
  }
  .journey-section{
    background-image: initial;
  }
  .event-date span br{
    display: none;
  }
  .feature-pills {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
