* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #321;
  background: linear-gradient(180deg, #fff8e7 0%, #f6d99f 45%, #8b1a12 100%);
}

.site-hero {
  min-height: auto;
  padding: 22px 28px 48px;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 214, 107, 0.38), transparent 28%),
    linear-gradient(135deg, #fff8e7 0%, #f3c978 52%, #8b1a12 100%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5b0000;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  height: 54px;
  width: auto;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
}

.contact-link {
  color: #5b0000;
  background: #fff8e7;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(91, 0, 0, 0.14);
}

.hero-layout {
  /* max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center; */
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  Optional: define a width
}

.hero-copy {
  color: #5b0000;
}

.eyebrow {
  font-family: 'Amita', cursive;
  font-size: 24px;
  color: #8b0000;
  margin: 0 0 10px;
}

.hero-copy h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: #5b0000;
}

.hero-subtitle {
  font-size: clamp(17px, 2vw, 22px);
  max-width: 620px;
  line-height: 1.7;
  margin: 0;
  color: #4a2115;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-art img {
  width: min(100%, 620px);
  max-height: 520px;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(91, 0, 0, 0.24);
  background: rgba(255, 248, 231, 0.5);
}

main {
  max-width: 1180px;
  margin: -24px auto 0;
  padding: 0 20px 50px;
  position: relative;
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
  background: rgba(255, 248, 231, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
}

.mantra {
  background: #fffdf3;
  color: #7b120e;
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 22px;
  padding: 22px 26px;
  font-family: 'Amita', cursive;
  box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.12);
}

.mantra p {
  margin: 6px 0;
  font-size: clamp(18px, 2.1vw, 25px);
}

.intro-copy h2 {
  font-family: 'Cinzel', serif;
  color: #7b120e;
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 12px;
}

.intro-copy p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.nav-card {
  background: rgba(255, 248, 231, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 22px;
  padding: 22px;
  color: #3a170d;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
  transition: 0.25s ease;
  min-height: 170px;
}

.nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
  border-color: #d4af37;
}

.card-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

.nav-card h2 {
  font-family: 'Cinzel', serif;
  color: #8b0000;
  margin: 0 0 8px;
  font-size: 21px;
}

.nav-card p {
  line-height: 1.6;
  margin: 0;
}

footer {
  text-align: center;
  color: #fff8e7;
  font-family: 'Amita', cursive;
  font-size: 24px;
  padding: 30px;
}

@media (max-width: 900px) {

  .hero-layout,
  .intro-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-hero {
    padding: 16px 16px 34px;
  }

  .topbar {
    margin-bottom: 24px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    height: 46px;
  }

  .contact-link {
    padding: 8px 14px;
  }

  .hero-art img {
    max-height: 360px;
    border-radius: 20px;
  }

  main {
    margin-top: -14px;
  }

  .intro-section {
    padding: 18px;
    border-radius: 20px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .nav-card {
    min-height: auto;
  }

  .mantra {
    padding: 16px;
  }
}







/* LIGHTWEIGHT HOME ATMOSPHERE - fast and subtle */
.light-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: visiblePainted;
  overflow: visible;
  z-index: 1;
}

.site-hero,
main,
footer {
  position: relative;
  z-index: 2;
}

.soft-bell {
  position: absolute;
  top: 100px;
  right: 31%;
  font-size: 50px;
  opacity: 0.8;
  animation: soft-sway 4s ease-in-out infinite;
  will-change: transform;
}

.soft-smoke {
  position: absolute;
  bottom: 10%;
  width: 150px;
  height: 300px;
  border-left: 3px solid rgba(52, 50, 50, 0.605);
  border-radius: 50%;
  opacity: 5;
  animation: soft-smoke-rise 3s ease-in-out infinite;
  will-change: transform, opacity;
}

.smoke-one {
  left: 30%;
}

.smoke-two {
  right: 30%;
  animation-delay: 3.5s;
}

.soft-flower {
  position: absolute;
  font-size: 50px;
  opacity: 0.8;
  animation: soft-float 8s ease-in-out infinite;
  will-change: transform;
}

.flower-one {
  left: 31%;
  bottom: 5%;
}

.flower-two {
  left: 34%;
  bottom: 5%;
  animation-delay: 2s;
}

@keyframes soft-sway {

  0%,
  100% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(4deg);
  }
}

@keyframes soft-smoke-rise {
  0% {
    transform: translateY(80px) translateX(0);
    opacity: 0;
  }

  25% {
    opacity: 0.35;
  }

  100% {
    transform: translateY(-320px) translateX(44px);
    opacity: 0;
  }
}

@keyframes soft-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 768px) {
  .soft-smoke {
    width: 80px;
    height: 190px;
  }

  .soft-bell,
  .soft-flower {
    opacity: 0.12;
  }
}

@media (prefers-reduced-motion: reduce) {

  .soft-bell,
  .soft-smoke,
  .soft-flower {
    animation: none;
  }
}


/* LANGUAGE TOGGLE */
.language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 248, 231, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 8px 24px rgba(91, 0, 0, 0.12);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
  color: #5b0000;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.lang-btn.active {
  background: #8b0000;
  color: #fff8e7;
}

.lang-btn:focus {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .topbar {
    gap: 10px;
    flex-wrap: wrap;
  }

  .language-toggle {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .lang-btn {
    padding: 7px 12px;
  }
}


/* GLOBAL LANGUAGE TOGGLE */
.page-language-switch {
  display: flex;
  justify-content: flex-end;
  padding: 12px 16px 6px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 248, 231, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 8px 24px rgba(91, 0, 0, 0.14);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
  color: #5b0000;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.lang-btn.active {
  background: #8b0000;
  color: #fff8e7;
}

.lang-btn:focus {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .page-language-switch {
    justify-content: center;
    padding-top: 10px;
  }
}


/* HIDE GOOGLE TRANSLATE UI BAR - keep only custom homepage language switch */
#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

iframe.skiptranslate {
  display: none !important;
}


/* CREAM + TEMPLE MAROON + ANTIQUE GOLD THEME OVERRIDES */
:root {
  --cream: #FFF8E7;
  --cream-soft: #F7E4C3;
  --temple-maroon: #7B1113;
  --temple-maroon-dark: #5B0A0C;
  --antique-gold: #C8A44D;
  --sacred-brown: #2B1B17;
  --sandstone: #EAD7B7;
}

body {
  color: var(--sacred-brown);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 54%, var(--temple-maroon) 100%);
}

.site-hero {
  background:
    radial-gradient(circle at 72% 24%, rgba(200, 164, 77, 0.28), transparent 30%),
    linear-gradient(135deg, var(--cream) 0%, var(--cream-soft) 58%, var(--temple-maroon) 100%);
}

.brand,
.hero-copy,
.hero-copy h1,
.contact-link,
.lang-btn {
  color: var(--temple-maroon);
}

.eyebrow {
  color: var(--temple-maroon);
}

.hero-subtitle {
  color: var(--sacred-brown);
}

.contact-link,
.language-toggle,
.intro-section,
.nav-card {
  background: rgba(255, 248, 231, 0.96);
  border-color: rgba(200, 164, 77, 0.48);
}

.lang-btn.active {
  background: var(--temple-maroon);
  color: var(--cream);
}

.hero-art img {
  box-shadow: 0 22px 70px rgba(123, 17, 19, 0.24);
  border: 1px solid rgba(200, 164, 77, 0.32);
}

.mantra {
  background: rgba(255, 248, 231, 0.96);
  color: var(--temple-maroon);
  border-color: rgba(200, 164, 77, 0.65);
}

.intro-copy h2,
.nav-card h2 {
  color: var(--temple-maroon);
}

.nav-card {
  color: var(--sacred-brown);
  box-shadow: 0 12px 34px rgba(43, 27, 23, 0.12);
}

.nav-card:hover {
  border-color: var(--antique-gold);
  box-shadow: 0 22px 50px rgba(123, 17, 19, 0.20);
}

footer {
  color: var(--cream);
}