
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background: linear-gradient(135deg,
              #101e2e 0%,
              #1a2a3b 30%,
              #3b2a31 60%,
              #5e2a30 100%);
  background-repeat: no-repeat;
  background-size: cover;
}


.top-bar {
  background-color: #11223E;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
   border-radius: 10px;
  padding: 10px 40px;
}
.logo-banner {
  display: block;      /* makes the image a block element */
  margin: 0 auto;      /* centers it horizontally */
  max-width: 300px;    /* your preferred small size */
  height: auto;        /* keeps aspect ratio */
}


.logo-banner {
  max-width: 750px;  /* adjust to desired small size */
  width: 100%;
 
}


.search-bar-overlay {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 10;
}
/* Flex container for banner + search */
.header-top {
  display: flex;
  justify-content: space-between; /* banner left, search right */
  align-items: center;            /* vertical center */
  padding: 10px 40px;             /* optional spacing */
}


/* Reset search bar container if you had absolute positioning */
.search-bar-container {
  position: static;
}


.search-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 40px;
  margin-bottom: 4px;
}

/* Search input field */
.search-input {
  width: 220px;
  padding: 10px 16px;
  font-size: 15px;
  font-family: 'Raleway', sans-serif;
  border: 0.5px solid #11223E;
  border-right: none;
  border-radius: 10px 0 0 10px;
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.search-input:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

/* Search button */
.search-btn {
  background-color: #751D2F; /* ✅ Maroon as default */
  border: none;
  border-radius: 0 10px 10px 0;
  width: 50px; /* ✅ untouched */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.search-btn {
  background-color: #751D2F !important;
}
.search-btn:hover {
  background-color: #0B1D3A !important;
}

/* Search icon inside the button */
.search-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover effects */
.search-btn:hover {
  transform: scale(0.95);
  background-color: #0B1D3A; /* ✅ Navy blue on hover */
  box-shadow: 0 0 6px rgba(11, 29, 58, 0.6);
}

.search-btn:hover .search-icon {
  transform: rotate(10deg) scale(1.1);
}


.main-header {
  position: static;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: #11223E;
  padding: 20px 40px;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* optional but sleek */
}

.dark-mode-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-left: 12px;
}

.dark-checkbox {
  display: none;
}

.dark-switch {
  width: 32px;
  height: 18px;
  background-color: #ccc;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

.dark-switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 2px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

/* Checked state */
.dark-checkbox:checked + .dark-switch {
  background-color: #751D2F;
}

.dark-checkbox:checked + .dark-switch::before {
  transform: translateX(14px);
}
.dark-mode-drawer {
  position: fixed;
  top: 40%;
  right: 0;
  width: 36px;
  height: 40px;
  background-color: #000000cc;
  border-radius: 10px 0 0 10px;
  z-index: 999;
  overflow: hidden;
  transition: width 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dark-mode-drawer:hover {
  width: 140px;
}

/* Inside content */
.toggle-content {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  transition: opacity 0.3s ease;
}

/* Tiny icons */
.theme-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.sun-icon {
  opacity: 0;
  transform: scale(0.8);
}

.moon-icon {
  opacity: 1;
  transform: scale(1.1);
}

.dark-mode .sun-icon {
  opacity: 1;
  transform: scale(1.1);
}

.dark-mode .moon-icon {
  opacity: 0;
  transform: scale(0.8);
}

/* Switch */
.dark-switch {
  width: 24px;
  height: 14px;
  background-color: #ccc;
  border-radius: 4px;
  position: relative;
  transition: background-color 0.3s ease;
}

.dark-switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.dark-checkbox {
  display: none;
}

.dark-checkbox:checked + .dark-switch {
  background-color: #751D2F;
}

.dark-checkbox:checked + .dark-switch::before {
  transform: translateX(10px);
}
body.dark-mode {
  background-color: #111;
  color: #eee;
}

.dark-mode .main-header {
  background-color: #222;
}

.dark-mode .footer {
  background-color: #1A1A1A;
}

/* Base dark mode toggle */
.dark-mode {
  background-color: #121212;
  color: #f1f1f1;
}

/* Header and Nav */
.dark-mode .main-header,
.dark-mode .segmented-navbar,
.dark-mode .top-bar {
  background-color: #1a1a1a;
}

/* Nav buttons */
.dark-mode .nav-segments li a {
  color: #ddd;
}

.dark-mode .nav-segments li a:hover {
  color: #FFD700;
}

/* Quote button */
.dark-mode .quote-segment a.cta-quote {
  background-color: #a83250;
  color: white;
}

/* Search bar */
.dark-mode .search-input {
  background-color: #1f1f1f;
  color: white;
  border-color: #444;
}

.dark-mode .search-input::placeholder {
  color: #aaa;
}

.dark-mode .search-btn {
  border-color: #a83250;
}

.dark-mode .search-btn:hover {
  box-shadow: 0 0 6px #a8325088;
}

/* Footer */
.dark-mode footer {
  background-color: #111;
  color: #ccc;
}
/* Theme toggle wrapper */
.dark-mode-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
}

.dark-mode-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #000000aa;
  padding: 5px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

/* Minimal Toggle Switch */
.dark-switch {
  width: 24px;
  height: 14px;
  background-color: #ccc;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dark-switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.dark-checkbox {
  display: none;
}

.dark-checkbox:checked + .dark-switch {
  background-color: #751D2F;
}

.dark-checkbox:checked + .dark-switch::before {
  transform: translateX(10px);
}

/* Icon logic (moon/sun swap) */
.theme-icon {
  width: 16px;
  height: 16px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sun-icon {
  opacity: 0;
  transform: scale(0.8);
}

.moon-icon {
  opacity: 1;
  transform: scale(1.1);
}

.dark-mode .sun-icon {
  opacity: 1;
  transform: scale(1.1);
}

.dark-mode .moon-icon {
  opacity: 0;
  transform: scale(0.8);
}


/* Navbar Wrapper */
.segmented-navbar {
  width: 100%;
  background-color: #11223E;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
  overflow: hidden;
}

/* UL Flex Layout */
.nav-segments {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Each Segment = Equal Width */
.nav-segments li {
  flex: 1;
  text-align: center;
}

/* Segment Links */
.nav-segments li a {
  display: block;
  padding: 18px 0;
  color: white;
  font-weight: 300;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* Water Fill Effect */
.nav-segments li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
     rgba(117, 29, 47, 0.1),
  rgba(117, 29, 47, 0.3),
  rgba(117, 29, 47, 0.1)
  );
  transition: width 0.5s ease;
  z-index: 1;
}

.nav-segments li a:hover::before {
  width: 100%;
}

/* Keep Text on Top */
.nav-segments li a {
  position: relative;
  z-index: 2;
}

/* Hover Text Color */
.nav-segments li a:hover {
  color: #FFD700;
}

/* Special Quote Button */
.quote-segment a.cta-quote {
  background-color:#751D2F;
  font-weight: bold;
  color: white;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.quote-segment a.cta-quote:hover {
  background-color: #751D2F;
  transform: scale(1.03);
}

@keyframes bounceQuote {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  70%  { transform: scale(0.97); }
  100% { transform: scale(1.05); }
}
.quote-segment {
  margin-left: 20px; /* Or increase to 30px+ for more space */
  flex-shrink: 0; /* Prevents it from squeezing on small screens */
}
.quote-segment {
  position: relative;
  margin-left: 30px;
}

.quote-segment::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2); /* subtle line */
}
.hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  display: block; /* ✅ NEW */
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.carousel-text {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  padding: 16px 32px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
  line-height: 1.4;
  max-width: 90%;
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
}

@keyframes fadeIn {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* Smooth Slide-Fade In */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Smooth Slide-Fade Out */
@keyframes slideFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.fade-in {
  animation: slideFadeIn 0.8s ease forwards;
}

.fade-out {
  animation: slideFadeOut 0.8s ease forwards;
}

.intro-section {
  background: linear-gradient(135deg, #0B1D3A 0%, #5C1F2A 100%);
  padding: 80px 20px 60px 20px; /* ⬅️ top padding fixed */
  color: #fff;
  margin: 0;
}

.intro-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
 
}

.intro-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: maroon;
  margin-top: 0;  /* 👈 ADD THIS */
  margin-bottom: 20px;
}

.underline-wrapper {
  display: inline-block;
  position: relative;
}

.underline-wrapper::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(181, 181, 228);
}

.intro-paragraph {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #ffffff;
  text-align: justify;
  text-justify: inter-word;
}


.site-footer {
  width: 100%;
  background-color: #11223E;
  color: #ffffff;
  padding: 40px 60px 20px;
  font-family: 'Raleway', sans-serif;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-content > div {
  flex: 1;
  min-width: 220px;
}

.footer-brand h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #751D2F;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #751D2F;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin: 8px 0;
}

.footer-links ul li a,
.footer-contact ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
  color: #FFD700;
}

/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #cccccc;
  border-top: 1px solid #ffffff11;
  padding-top: 20px;
  line-height: 1.6;
}

.footer-bottom p:last-child {
  color: #FFD700;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Logo at the bottom */
.footer-logo {
  width: 60px;
  height: auto;
  margin-top: 20px;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}
.intro-paragraph {
  margin-bottom: 60px;
}
.footer-links ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.footer-links ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #751D2F; /* Corporate Maroon */
  border-radius: 50%;
}
/* Webkit Scrollbars (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #751D2F; /* Corporate Maroon */
  border-radius: 10px;
  border: 2px solid #f1f1f1;
  box-shadow: 0 0 6px rgba(117, 29, 47, 0.5); /* Maroon glow */
  transition: box-shadow 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #4A0F1C;
  box-shadow: 0 0 10px rgba(117, 29, 47, 0.7); /* Stronger glow on hover */
}
.about-hero {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-container {
  position: relative;
  width: 100%;
  height: 400px; /* Set max height */
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

.about-carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  max-width: 800px;
}

.about-slide {
  min-width: 100%;
}

.carousel-control {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin-top: 20px;
}
.quote-page {
  padding: 40px;
  background-color: #ffffff;
  color: #333;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid #751D2F;
  padding-bottom: 15px;
}

.category-filters {
  display: flex;
  gap: 12px;
}

.category-btn {
  padding: 10px 20px;
  background-color: #751D2F;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
  background-color: #57111f;
}

.view-options select {
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.quote-content-area {
  margin-top: 20px;
}
.quote-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 20px 40px;
  background-color: #f8f8f8;
  border-bottom: 2px solid #ccc;
  flex-wrap: wrap;
}

.category-filter, .view-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

select {
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #ffffff;
  padding: 40px 20px;
  color: #111;
}

/* Container */
.quote-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Headings */
.quote-container h1 {
  text-align: center;
  margin-bottom: 40px;
  color: #751D2F;
  font-size: 2rem;
}

.category-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}
.product-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 10px;
}

.product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 16px;
  background-color: #fdfdfd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.product-item:hover {
  box-shadow: 0 4px 16px rgba(117, 29, 47, 0.2);
}

.product-thumb {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
}

.product-info {
  flex: 1;
  padding: 0 20px;
}

.product-title {
  font-size: 1.1rem;
  color: #11223E;
  margin-bottom: 4px;
}

.product-category,
.product-date {
  font-size: 0.9rem;
  color: #666;
}

.product-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.product-price {
  font-weight: bold;
  color: #751D2F;
  font-size: 1.1rem;
}

.details-btn {
  padding: 8px 14px;
  background-color: #751D2F;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.details-btn:hover {
  background-color: #5e1425;
}

/* Dark mode compatibility */
.dark-mode .product-item {
  background-color: #1f1f1f;
  border-color: #444;
}

.dark-mode .product-title {
  color: #fff;
}

.dark-mode .product-category,
.dark-mode .product-date {
  color: #bbb;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product-card h4 {
  font-size: 18px;
  margin: 10px 0 4px;
  color: #751D2F;
}

.product-card p {
  margin: 4px 0;
  font-size: 14px;
  color: #444;
}

.product-card button {
  margin-top: 10px;
  padding: 8px 16px;
  background: #751D2F;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.product-card button:hover {
  background: #5e1425;
}
form label {
  margin-top: 12px;
  font-weight: 500;
  color: #333;
}

form input, form textarea {
  width: 100%;
}

/* Italic font for all search inputs */
.search-input {
  font-style: italic;
}

/* Blinking cursor */
.blinking-cursor::after {
  content: "|";
  animation: blink 1s infinite;
  color: #751D2F;
  font-weight: bold;
  margin-left: 3px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.bible-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.bible-wrapper {
  max-width: 1100px;
  margin: auto;
}

.bible-flex {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.bible-text {
  flex: 1;
  color: #fffdfd;
  text-align: justify;
  font-size: 16px;
  line-height: 1.8;
}

.bible-text h2 {
  color: #751D2F;
  margin-bottom: 20px;
  font-size: 28px;
}

.bible-divider {
  width: 1px;
  background: #fffcfc;
  height: 100%;
}

.bible-image {
  flex: 1;
  text-align: center;
}

.bible-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bible-continuation {
  margin-top: 30px;
  font-size: 16px;
  color: #ffffff;
  text-align: justify;
  line-height: 1.8;
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
  .bible-flex {
    flex-direction: column;
  }

  .bible-divider {
    display: none;
  }

  .bible-image {
    margin-top: 20px;
  }
}
.tia-simple {
  
  padding: 60px 20px;
  text-align: center;
}

.tia-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.tia-simple h1 {
  font-size: 2.5rem;
  color: #7e051d;
  margin-bottom: 20px;
}

.tia-simple p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 40px;
}

.coming-soon-banner {
  display: inline-block;
  padding: 14px 28px;
  background-color: #751D2F;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
html {
  scroll-behavior: smooth;
}

.sifuni-tabs {
  position: sticky;
  top: 0;
  background: #11223E;
 
  border-bottom: 1px solid #751D2F;
  padding: 10px 0;
}

.sifuni-tabs ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sifuni-tabs li a {
  display: block;
  padding: 8px 16px;
  
  color: #751D2F;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sifuni-tabs li a:hover,
.sifuni-tabs li a.active {
  background: #751D2F;
  color: white;
}
.csr-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  font-family: 'Raleway', sans-serif;
}

.csr-title {
  text-align: center;
  font-size: 2em;
  color: MAROON;
  margin-bottom: 30px;
}

.csr-content p {
  font-size: 1.1em;
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 20px;
  color: white;
}

.csr-content ul {
  color: white;
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.csr-content li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.csr-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #77031e;
  font-weight: bold;
}

.csr-contact-link {
  display: inline-block;
  margin-top: 10px;
  color: #bb0025;
  text-decoration: underline;
  font-weight: 600;
}

.csr-contact-link:hover {
  color: #75001b;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #f8f8f8;
  z-index: 999;
}

.carousel-nav button {
  background-color: #11223E;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-nav button:hover,
.carousel-nav button.active {
  background-color: #800000;
}
body.dark-mode .carousel-nav {
  background-color: #1e1e1e;
}

body.dark-mode .carousel-nav button {
  background-color: #333;
  color: #f1f1f1;
}

body.dark-mode .carousel-nav button.active {
  background-color: #a00000;
}
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  max-width: 900px;
  color: white;
  padding: 2rem;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.9s ease, transform 0.9s ease;
  text-align: justify;
  pointer-events: none; /* disables clicks when hidden */
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0%);
  position: relative;
  pointer-events: auto; /* enables clicks when visible */
}
.carousel-nav button.active-nav {
  background-color: #800000;
  color: white;
  font-weight: bold;
}
.center-values-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}



/* General footer link styling */
.site-footer a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.site-footer a:hover {
  color: #FFD700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}

.footer-contact .icon-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.footer-contact .icon-label img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}


.site-footer a {
  position: relative;
}

.site-footer a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #a00000;
  transition: width 0.3s;
}

.site-footer a:hover::after {
  width: 100%;
}
.footer-nav-wrapper {
  text-align: center;
  padding: 2rem 1rem 0.5rem; /* reduced bottom padding */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* horizontal separator */
  margin-bottom: 1rem; /* creates space BELOW the line */
}



/* Waterbottle Button Base Style */
.footer-nav-button {
  position: relative;
  background-color: #751D2F; /* Deep maroon base */
  color: white;
  border: none;
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  margin: 0.4rem;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  overflow: hidden;
  transition: transform 0.3s ease;
  z-index: 1;
}

/* Water Fill Animation (adapted from nav) */
.footer-nav-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    rgba(117, 29, 47, 0.1),
    rgba(117, 29, 47, 0.3),
    rgba(117, 29, 47, 0.1)
  );
  transition: width 0.5s ease;
  z-index: 0;
}

.footer-nav-button:hover::before {
  width: 100%;
}

.footer-nav-button:hover {
  color: #FFD700; /* Gold text on hover */
  transform: scale(1.05);
}

.footer-nav-button span {
  position: relative;
  z-index: 2; /* Keep text above water fill */
}
.footer-brand {
  text-align: right;
  padding-right: 1rem;
}
.animated-tagline {
  background: linear-gradient(
    90deg,
    #FFD700 0%,
    #fff8dc 50%,
    #FFD700 100%
  );
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer 5s linear infinite;
  font-weight: 500;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}
.site-footer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
body {
  margin-bottom: 0 !important;
}

.site-footer::after {
  content: "";
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
}
html, body {
  overflow-x: hidden;
  height: 100%;
}
.footer-bottom {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}


/* 🔥 Hover Animation */
.footer-contact .icon-label:hover img {
  transform: scale(1.2) rotate(5deg);
  filter: brightness(1.2) drop-shadow(0 0 4px #FFD70088);
}
@keyframes footerBounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

.footer-contact .icon-label img {
  animation: footerBounce 3s ease-in-out infinite;
}
.footer-contact .icon-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact .icon-label img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  pointer-events: auto;
  transition: transform 0.3s ease;
  will-change: transform;
}

.contact-sections-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.office-block {
  flex: 1 1 450px;
  max-width: 500px;
}

.info-box {
  background-color: #11223E;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.section-heading {
  color: #751D2F;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-top: 2px;
}

.info-row a {
  color: #FFD700;
  text-decoration: none;
}

.info-row a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: white;
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-form-wrapper h3 {
  color: #751D2F;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form label {
  font-weight: bold;
  color: #333;
}

.submit-btn {
  background-color: #751D2F;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #500f20;
}
.search-bar {
  display: flex;
  align-items: center;
}

.search-icon {
  margin: 0; /* Remove weird spacing */
  padding: 0;
  height: 40px; /* Or match the input height if needed */
  width: 30px;
  object-fit: contain; /* Keeps it from stretching */
  display: block; /* Remove inline-img spacing */
}
.search-btn {
  padding: 0;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
.product-tabs {
  margin-top: 40px;
}

.tab {
  background: #751D2F;
  color: white;
  padding: 15px 20px;
  margin-bottom: 5px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.tab:hover {
  background: #5e1425;
}

.tab-content {
  display: none;
  background: #fff5f7;
  padding: 20px;
  border-left: 4px solid #751D2F;
  border-radius: 0 6px 6px 6px;
  margin-bottom: 20px;
}

.hymnbook-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.hymnbook {
  text-align: center;
  max-width: 120px;
}

.hymnbook img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.hymnbook img:hover {
  transform: scale(1.05);
}

.hymnbook a {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  color: #5e1425;
  text-decoration: none;
}
/* Baby blue background for "Today in Africa" */
.today-africa a {
  background-color:#2D7BB5
; /* Replace with the exact baby blue from logo if you have it */
  color: #00334e; /* A strong contrast, assuming navy text from your palette */
  padding: 10px 15px;
  border-radius: 0px;
  transition: all 0.3s ease;
  font-weight: bold;
}

/* On hover, darken a bit */
.today-africa a:hover {
  background-color:#033963 ;
  color: #001f2e;
}
