body {
  font-family: "Inter", sans-serif;
  background-color: #fdfbf8; /* Warm Neutral Background */
  color: #4a2e2a; /* Deep Brown Text */
}
h1,
h2,
h3,
h4,
h5,
h6,
[data-lang-key] {
  font-family: "Lora", serif;
}

html[lang="hi"] body,
html[lang="hi"] [data-lang-key] {
  font-family: "Tiro Devanagari Hindi", serif;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4,
html[lang="en"] h5,
html[lang="en"] h6 {
  font-family: "Lora", serif;
}

.nav-link {
  transition:
    color 0.3s,
    border-bottom-color 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: #ff6700; /* Saffron Accent */
  border-bottom-color: #ff6700;
}
.tab-button {
  transition:
    background-color 0.3s,
    color 0.3s;
}
.tab-button.active {
  background-color: #4a2e2a; /* Maroon Accent */
  color: #fdfbf8;
}

/* --- New Footer Styles --- */
.footer-bg {
  background-color: #4a2e2a; /* Your deep brown color */
  background-image: url('../images/footer_background.png');
  background-blend-mode: multiply;
  background-size: 400px;
  color: #fdfbf8;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-link {
  color: #e5e7eb; /* A light gray for links */
  transition: color 0.3s;
}
.footer-link:hover {
  color: #ff6700; /* Your saffron accent color */
}

/* --- New, Thinner Flowing Banner Styles --- */
.flowing-banner-continuous {
  background-color: #4a2e2a; /* Your deep brown color */
  color: #fdfbf8;
  padding: 0.75rem 0; /* Reduced padding to make the strip thinner */
  white-space: nowrap;
  overflow: hidden;
  border-top: 1px solid #4a2e2a;
  border-bottom: 1px solid #4a2e2a;
}

.flowing-text-continuous {
  display: inline-block;
  animation: flow-left 60s linear infinite;
}

.text-item {
  display: inline-block;
  font-family: "Lora", serif;
  font-size: 1rem; /* Reduced font size for a more subtle look */
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 1.5rem; /* Adjusted margin */
  letter-spacing: 1.5px;
}

.text-item::after {
  content: "•";
  margin-left: 1.5rem;
  color: #ff6700; /* Saffron accent color */
}

@keyframes flow-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* GAU SEVA FOUNDATION SECTION CUSTOM STYLES */
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap");

.gau-foundation-section {
  background-color: #faf7f2; /* Matches your site's light cream background */
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid #e8e1d5;
}

.gau-foundation-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Heading Style */
.gau-foundation-title {
  font-family: "Lora", serif; /* Same font as Tirth Sutra headings */
  font-size: 42px;
  color: #5d4037; /* Matches your site's dark brown */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 400;
}

.gau-foundation-title strong {
  font-weight: 700; /* Makes "GAU SEVA FOUNDATION" Bold */
}

/* Logo and Link Styling */
.gau-foundation-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.logo-wrapper {
  width: 180px; /* Big logo size */
  height: 180px;
  border: 2px solid #5d4037;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 15px;
}

.gau-big-logo {
  width: 85%; /* Adjust this to make your image fit nicely inside the circle */
  height: auto;
  object-fit: contain;
}

.gau-label-text {
  font-family: "Lora", serif;
  font-size: 24px;
  color: #5d4037;
  font-weight: 600;
  letter-spacing: 2px;
}

/* Hover Effects */
.gau-foundation-link:hover .logo-wrapper {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(93, 64, 55, 0.15);
}

.gau-foundation-link:hover .gau-label-text {
  color: #8d6e63; /* Subtle color shift on hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .gau-foundation-title {
    font-size: 28px;
  }
  .logo-wrapper {
    width: 140px;
    height: 140px;
  }
}
