:root {
  --ink: #201814;
  --muted: #6b625d;
  --line: #e8ded2;
  --paper: #fffaf2;
  --soft: #f6efe4;
  --saffron: #c96f24;
  --ruby: #9d2836;
  --leaf: #2d6a4f;
  --shadow: 0 18px 50px rgba(72, 42, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.has-lightbox {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(32, 24, 20, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.nav-admin {
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  padding: 9px 14px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 130px clamp(22px, 6vw, 88px) 82px;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 18, 12, 0.82), rgba(29, 18, 12, 0.32)),
    var(--hero-image) center/cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffcf88;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: "Noto Serif Malayalam", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

h3 {
  margin-bottom: 10px;
}

.hero p {
  max-width: 620px;
  font-size: 1.2rem;
  line-height: 1.7;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--saffron);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button.secondary {
  background: #efe3d4;
  color: var(--ink);
}

.button.danger {
  background: #b4232f;
  color: #fff;
}

.section {
  padding: 82px clamp(22px, 6vw, 88px);
}

.section.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.centered {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-section h2 {
  text-align: center;
  margin-bottom: 54px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.about-grid > img {
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-grid p,
.connect-section p,
.history-section .section-heading p,
.schedule-section .section-heading p,
.deities-section .section-heading p,
.booking-section .section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-details {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.about-details div {
  display: grid;
  gap: 5px;
  color: var(--ink);
}

.about-details span {
  color: var(--muted);
}

.info-panel,
.contact-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-panel div {
  display: grid;
  gap: 5px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.info-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-panel span {
  color: var(--muted);
}

.deity-list {
  display: grid;
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto;
}

.deity-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.deity-card.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
}

.deity-card.is-reversed figure {
  order: 2;
}

.deity-card figure {
  position: relative;
  margin: 0;
  min-height: 285px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.deity-card img {
  height: 285px;
  object-fit: cover;
  filter: brightness(0.84);
}

.deity-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: grid;
  gap: 2px;
  color: #fff;
}

.deity-card figcaption strong {
  font-size: 1.2rem;
}

.deity-card figcaption span {
  color: #ffcf88;
  font-weight: 800;
}

.deity-card p {
  color: var(--muted);
  line-height: 1.7;
}

.deity-facts {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.deity-facts div {
  display: grid;
  gap: 3px;
}

.deity-facts strong {
  color: var(--ruby);
  font-size: 0.84rem;
}

.deity-facts span {
  color: var(--muted);
}

.mini-button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 12px;
  border-radius: 6px;
  background: #fc4b0b;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 52px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.timeline {
  display: grid;
  gap: 28px;
  position: relative;
  border-left: 2px solid #fc4b0b;
  padding-left: 22px;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  row-gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.timeline span {
  position: static;
  color: var(--ink);
  font-weight: 800;
}

.timeline h3,
.timeline p,
.legacy-panel h3 {
  margin: 0;
}

.timeline h3 {
  font-size: 1rem;
}

.timeline p,
.legacy-panel li {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.history-media-stack {
  display: grid;
  gap: 20px;
}

.history-media-stack img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legacy-panel {
  padding: 22px;
  background: #fff7ed;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.legacy-panel ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.legacy-panel li {
  position: relative;
  padding-left: 18px;
}

.legacy-panel li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: #fc4b0b;
  font-weight: 800;
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 20px;
}

.gallery-item {
  position: relative;
  min-height: 255px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
  box-shadow: var(--shadow);
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 255px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item img {
  height: 100%;
  min-height: 255px;
  object-fit: cover;
  transition: transform 250ms ease;
}

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

.gallery-item figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 64px 86px;
  background: rgba(15, 12, 10, 0.88);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox figure {
  display: grid;
  gap: 14px;
  max-width: min(1080px, 100%);
  max-height: 100%;
  margin: 0;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox figcaption {
  min-height: 24px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
}

.lightbox-close {
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 2.8rem;
  transform: translateY(-50%);
}

.lightbox-arrow.is-prev {
  left: 24px;
}

.lightbox-arrow.is-next {
  right: 24px;
}

.gallery-item span,
.video-card p,
.pooja-card p,
.event-card p {
  color: var(--muted);
  line-height: 1.65;
}

.gallery-item span {
  color: rgba(255, 255, 255, 0.78);
}

.video-grid,
.pooja-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.video-card,
.pooja-card,
.event-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-card {
  padding-bottom: 18px;
}

.video-card h3,
.video-card p {
  padding: 0 16px;
}

.video-card h3 {
  margin-bottom: 8px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  background: #111;
}

.video-frame iframe,
.video-placeholder {
  width: 100%;
  height: 100%;
}

.video-frame iframe {
  border: 0;
}

.video-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  color: #f9e8ce;
  text-align: center;
  font-weight: 800;
  background: linear-gradient(135deg, #321e17, #8d2633);
}

.video-subscribe {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pooja-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 190px;
  padding: 22px;
  box-shadow: none;
  border-color: #d9dee8;
}

.pooja-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.pooja-title-row h3 {
  margin: 0;
  font-size: 1.08rem;
}

.pooja-title-row span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 5px 9px;
  background: #fff0dd;
  color: #fc4b0b;
  font-size: 0.72rem;
  font-weight: 800;
}

.pooja-card p {
  min-height: 48px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.pooja-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.pooja-meta strong:first-child {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.pooja-meta strong:first-child::before {
  content: "◷";
  margin-right: 6px;
  color: var(--muted);
}

.pooja-meta strong:last-child {
  color: #fc4b0b;
  font-size: 1rem;
  font-weight: 700;
}

.pooja-card a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 0;
  border-radius: 6px;
  padding: 11px 12px;
  background: #fc4b0b;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.schedule-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.schedule-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.schedule-card h3 {
  margin-bottom: 18px;
}

.schedule-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.schedule-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.schedule-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.schedule-card dt {
  color: var(--muted);
  font-weight: 700;
}

.schedule-card dd {
  margin: 0;
  color: var(--ruby);
  font-weight: 800;
  white-space: nowrap;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.96fr);
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
}

.booking-form,
.payment-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #d9c9b8;
  border-radius: 7px;
  padding: 11px 12px;
  font: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.payment-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-tabs button {
  min-height: 48px;
  border: 1px solid #fc4b0b;
  border-radius: 7px;
  background: #fff;
  color: #fc4b0b;
  font-weight: 800;
}

.qr-box {
  display: grid;
  place-items: center;
  width: min(240px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 2px solid #fc4b0b;
  border-radius: 8px;
  background: #f0f2f5;
  color: #9aa3b2;
  font-size: 4rem;
  font-weight: 800;
}

.payment-panel p {
  text-align: center;
}

.payment-panel aside {
  margin-top: 8px;
  padding: 18px;
  border-radius: 8px;
  background: #fc4b0b;
  color: #fff;
}

.payment-panel aside ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.payment-panel aside li {
  margin-bottom: 7px;
}

.event-list {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
}

.event-card img {
  height: 210px;
  object-fit: cover;
  border-radius: 0;
}

.event-card > div {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.event-card h3 {
  margin: 0;
  font-size: 1.22rem;
}

.event-meta {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.event-meta li {
  position: relative;
  padding-left: 24px;
}

.event-meta li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
  font-weight: 800;
}

.event-meta li:nth-child(1)::before {
  content: "□";
}

.event-meta li:nth-child(2)::before {
  content: "◷";
}

.event-meta li:nth-child(3)::before {
  content: "⌖";
}

.event-card p {
  margin: 0;
}

.connect-section {
  background: var(--soft);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto 36px;
}

.social-grid a {
  display: grid;
  gap: 5px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.social-grid span {
  color: #fc4b0b;
  font-weight: 800;
}

.social-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.community-band {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 8px;
  background: linear-gradient(100deg, #fc4b0b, #e60012);
  color: #fff;
  text-align: center;
}

.community-band p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.88);
}

.community-band > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 6vw, 88px);
  color: #fff;
  background: #201814;
}

.site-footer a {
  color: #ffcf88;
  text-decoration: none;
}

.admin-body {
  min-height: 100vh;
  background: #f5efe6;
}

.login-panel,
.admin-shell,
.admin-topbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.login-panel {
  display: grid;
  gap: 18px;
  max-width: 460px;
  padding: 54px 0;
}

.back-link {
  color: var(--ruby);
  font-weight: 800;
  text-decoration: none;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px 0 22px;
}

.admin-topbar h1 {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.admin-topbar nav {
  display: flex;
  gap: 12px;
}

.admin-topbar a {
  padding: 10px 13px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.admin-shell {
  padding-bottom: 60px;
}

.alert {
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 800;
}

.alert.success {
  background: #dff3e8;
  color: #165f3b;
}

.alert.error {
  background: #ffe1e5;
  color: #8e1723;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-tabs button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.admin-tabs button.is-active {
  background: var(--ruby);
  color: #fff;
}

.admin-section {
  display: none;
}

.admin-section.is-active {
  display: grid;
  gap: 20px;
}

.admin-section-heading,
.admin-form,
.admin-list {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.admin-form textarea,
.admin-form input {
  width: 100%;
  border: 1px solid #d9c9b8;
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
}

.admin-form textarea,
.form-actions {
  grid-column: 1 / -1;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-record {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
}

.admin-record div:first-child {
  display: grid;
  gap: 4px;
}

.admin-record span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.record-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.record-actions form {
  margin: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(32, 24, 20, 0.98);
    border-radius: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .about-grid,
  .deity-card,
  .deity-card.is-reversed,
  .booking-grid,
  .history-layout,
  .event-list,
  .event-card {
    grid-template-columns: 1fr;
  }

  .deity-card.is-reversed figure {
    order: 0;
  }

  .gallery-grid,
  .video-grid,
  .pooja-grid,
  .schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .legacy-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 86vh;
    padding-bottom: 54px;
  }

  .gallery-lightbox {
    padding: 64px 58px;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 2rem;
  }

  .lightbox-arrow.is-prev {
    left: 8px;
  }

  .lightbox-arrow.is-next {
    right: 8px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .gallery-grid,
  .video-grid,
  .pooja-grid,
  .schedule-grid,
  .form-row,
  .social-grid,
  .admin-form {
    grid-template-columns: 1fr;
  }

  .about-grid > img {
    height: 300px;
  }

  .timeline {
    padding-left: 18px;
  }

  .admin-topbar,
  .admin-record,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .record-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
