body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #111;
  padding-top: 90px;
  overflow-x: hidden;
}
/* Mobile menu open blur effect */
body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  z-index: 998;
}

/* Navbar should stay above blur */
.sacred-nav {
  z-index: 9999;
}

/* Cross calm ah iruka */
body.menu-open .church-cross {
  opacity: 0.35;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

/* ACTIVE NAV LINK */
.nav-link.active {
  font-weight: 500;
}

.nav-link.active::after {
  width: 100%;
}

/* NAVBAR – SACRED */
.sacred-nav {
  background: rgba(255,255,255,0.95);
  padding: 18px 0;
  transition: all 0.3s ease;
}

/* Brand */
.navbar-brand {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: #620606 !important;
}

/* Links */
.nav-link {
  font-size: 14px;
  letter-spacing: 1px;
  margin-left: 25px;
  color: #ae0f0f !important;
  position: relative;
}

/* Underline on hover (very subtle) */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: #620606;
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile spacing */
@media (max-width: 991px) {
  .nav-link {
    margin: 12px 0;
  }
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 60px 20px;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a91818;
  margin-bottom: 20px;
}

/* H1 – MOST IMPORTANT */
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
  color: #c01313;
}

/* Supporting text */
.hero-text {
  max-width: 600px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

/* Buttons */
.hero-buttons .btn {
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
}
/* ABOUT SECTION */
.about-section {
  background: #fafafa;
  padding: 100px 20px;
}

.section-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 15px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 40px;
  font-weight: 600;
  color: #520909;
  line-height: 1.3;
}

.section-text {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-top: 18px;
}

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .navbar-nav li:nth-child(7) {
    display: none;
  }
}

/* SERVICES SECTION */
.services-section {
  background: #ffffff;
  padding: 100px 20px;
}

.service-card {
  background: #fafafa;
  padding: 45px 30px;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}

.service-time {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 15px;
}

.service-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* Gentle hover – respectful */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* Mobile */
@media (max-width: 768px) {
  .service-card {
    padding: 35px 25px;
  }
}
/* PRAYER REQUEST SECTION */
.prayer-section {
  background: #f5f5f5;
  padding: 100px 20px;
}

.prayer-form {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

/* Inputs */
.prayer-form .form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 12px 5px;
  font-size: 14px;
  box-shadow: none;
}

.prayer-form .form-control:focus {
  border-color: #000;
  box-shadow: none;
}
/* THANK YOU MESSAGE */
.prayer-thankyou {
  display: none;
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.prayer-thankyou h4 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  margin-bottom: 15px;
}

.prayer-thankyou p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* Button */
.prayer-form .btn {
  padding: 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  font-size: 14px;
}
/* FOOTER */
.church-footer {
  background: #620606;
  padding: 80px 20px;
  color: #fff;
}

.footer-verse {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  line-height: 1.8;
  color: #f5f5f5;
}

.footer-verse span {
  font-size: 14px;
  color: #aaa;
}

.footer-church-name {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  letter-spacing: 2px;
}

.footer-copy {
  font-size: 13px;
  color: #888;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-verse {
    font-size: 16px;
  }
}
/* CHURCH BRAND */
.church-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* CROSS BASE */
.cross-symbol {
  position: relative;
  width: 26px;
  height: 40px;
  background: #6b4f2c; /* brown wood */
}

/* Horizontal arm */
.cross-symbol::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 8px;
  background: #6b4f2c;
  top: 10px;
  left: -7px;
}

/* CLOTH COMMON */
.cloth {
  position: absolute;
  width: 14px;
  height: 18px;
  top: 10px;
  border-radius: 2px;
  opacity: 0.95;
}

/* RED CLOTH */
.cloth.red {
  background: #8b1e1e;
  left: -12px;
  transform: rotate(-18deg);
}

/* MAROON CLOTH */
.cloth.maroon {
  background: #4b1d1d;
  right: -12px;
  transform: rotate(18deg);
}

/* CHURCH NAME */
.church-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #000;
  white-space: nowrap;
}
/* BRAND ALIGNMENT */
.church-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

/* CROSS IMAGE */
.church-cross {
  width: 150px;  
  height: auto;
  display: block;
}

/* CHURCH NAME */
.church-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #000;
  white-space: nowrap;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .church-cross {
    width: 28px;
  }

  .church-name {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .church-cross {
    width: 45px;
  }

  .church-name {
    font-size: 16px;
  }
}
.church-cross {
  margin-top: 2px;
}
/* BRAND */
.church-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

/* WRAPPER CONTROLS OVERFLOW */
.cross-wrapper {
  position: relative;
  height: 40px;          
  overflow: visible;     
}

/* CROSS IMAGE – FREE FLOATING */
.church-cross {
  width: 150px;         
  height: auto;
  position: absolute;
  top: -55px;            
  left: -40px;            
  z-index: 10;
  pointer-events: none;  
}

/* CHURCH NAME */
.church-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #000;
  white-space: nowrap;
  z-index: 5;
}
.sacred-nav {
  overflow: visible;
}
@media (max-width: 768px) {
  .church-cross {
    width: 100px;
    top: -35px;
    left: -25px;
  }
  .sacred-nav {
  overflow: visible;
}
}
/* Dropdown sacred look */
.dropdown-menu {
  border-radius: 10px;
  border: 1px solid #810a0a;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  padding: 10px 0;
}

.dropdown-item {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 10px 20px;
}

.dropdown-item:hover {
  background: #f2f2f2;
  color: #7a0000;
}
/* Remove underline / arrow line under Counselling */
.navbar .nav-link {
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Remove dropdown arrow focus line */
.dropdown-toggle::after {
  border: none !important;
}

/* Remove hover / focus underline */
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link:active {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Specifically for dropdown */
.navbar .dropdown-toggle:hover,
.navbar .dropdown-toggle:focus {
  background: transparent !important;
}
/* ================= MOBILE BOTTOM BAR ================= */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e6d8b8;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  z-index: 9999;
  box-shadow: 0 -8px 20px rgba(0,0,0,0.1);
}

.mobile-bottom-bar .bar-item {
  flex: 1;
  text-align: center;
  color: #5a0000;
  font-size: 12px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.mobile-bottom-bar .bar-item i {
  font-size: 20px;
  display: block;
  margin-bottom: 3px;
}

.mobile-bottom-bar .bar-item.highlight {
  color: #7a0000;
  font-weight: 600;
}

/* Page content hide aagadha */
@media (max-width: 991px) {
  body {
    padding-bottom: 70px;
  }
}
.mobile-bottom-bar {
  transition: transform 0.3s ease;
}
  
/* Service */
.service-hero {
  height: 60vh;
  background: #f9f6ef;
  padding-top: 80px;
}

.service-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-box i {
  font-size: 36px;
  color: #7a0000;
  margin-bottom: 15px;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-cta {
  background: #ffffff;
  color: #761010;
  padding: 60px 20px;
}
/* ===== GLOBAL FONT SYSTEM ===== */
body {
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
}
