/* Contact html - Start*/
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 50px);
  align-items: start;
}

.contact-info-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 10px 30px rgba(37, 28, 25, 0.05);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139, 30, 30, 0.08);
  color: var(--maroon);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  font-size: 14px;
  color: #54443E;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-item a:hover {
  color: var(--maroon);
}

.bank-box {
  background: var(--paper);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: clamp(18px, 3.5vw, 24px);
}

.bank-box h4 {
  font: 700 16.5px var(--serif);
  color: var(--maroon);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bank-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  font-size: 13.5px;
}

.bank-grid strong {
  color: var(--navy);
  display: inline-block;
  margin-bottom: 2px;
}

.bank-grid code {
  font-size: 13px;
  background: rgba(139, 30, 30, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--maroon);
  font-weight: 600;
}

.contact-support-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 10px 30px rgba(37, 28, 25, 0.05);
}

.contact-support-card h3 {
  font: 700 clamp(20px, 2.5vw, 24px) var(--serif);
  color: var(--maroon);
  margin-bottom: 12px;
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bank-grid {
    grid-template-columns: 1fr;
  }

  .bank-grid .full-col {
    grid-column: span 1 !important;
  }
}

/* Contact html - End */

/* Home html - Start */
.hero {
  min-height: clamp(620px, 95vh, 880px);
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 36%, rgba(250, 74, 38, 0.32), transparent 28%),
    linear-gradient(90deg, rgba(22, 7, 8, 0.96) 0%, rgba(73, 13, 13, 0.8) 42%, rgba(40, 7, 8, 0.22) 100%),
    url("../assets/durga-puja-hero.jpg") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(80px, 15vh, 160px);
  z-index: 2;
  background: linear-gradient(transparent, var(--cream));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 5;
  min-height: clamp(620px, 95vh, 880px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  padding-top: clamp(80px, 12vw, 110px);
  padding-bottom: 50px;
}

.hero-copy {
  max-width: 580px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "✦";
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font: 700 clamp(40px, 7.5vw, 92px)/0.96 var(--serif);
  letter-spacing: -0.03em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
  color: var(--gold);
  display: inline-block;
}

.hero-lead {
  margin: clamp(18px, 3vw, 28px) 0 clamp(22px, 3.5vw, 32px);
  max-width: 490px;
  font-size: clamp(14.5px, 2.2vw, 16.5px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  z-index: 7;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.scroll-cue span {
  width: 26px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  display: block;
  margin: 0 auto 6px;
  position: relative;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  background: var(--gold);
  border-radius: 5px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: dot 1.8s infinite;
}

@keyframes dot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 12px);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

.community-strip {
  background: var(--maroon);
  color: #fff;
  border-top: 1px solid rgba(242, 201, 76, 0.35);
  border-bottom: 1px solid rgba(242, 201, 76, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-item {
  padding: clamp(20px, 3vw, 28px) clamp(16px, 2.5vw, 24px);
  display: flex;
  gap: 16px;
  align-items: center;
  border-right: 1px solid rgba(242, 201, 76, 0.3);
  transition: background 0.3s ease;
}

.strip-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.strip-item:last-child {
  border-right: 0;
}

.icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 201, 76, 0.7);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(242, 201, 76, 0.1);
  font-size: 19px;
}

.strip-item strong {
  display: block;
  font: 600 16.5px var(--serif);
  color: #fff;
}

.strip-item span {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  line-height: 1.45;
  opacity: 0.85;
  color: var(--paper);
}

.philosophy {
  position: relative;
  padding: clamp(65px, 9vw, 125px) 0 clamp(60px, 9vw, 120px);
  background: radial-gradient(circle at 75% 45%, rgba(242, 201, 76, 0.12), transparent 28%), var(--cream);
  overflow: hidden;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(35px, 6vw, 75px);
  align-items: center;
}

.section-copy {
  max-width: 480px;
  font-size: clamp(14.5px, 2vw, 16px);
  line-height: 1.85;
  color: #54443E;
  margin-bottom: 16px;
}

.art-frame {
  min-height: clamp(280px, 40vw, 460px);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(139, 30, 30, 0.12), transparent), url("../assets/utsab-community.jpg") center/cover no-repeat;
  box-shadow: 0 24px 60px rgba(57, 31, 18, 0.16);
  position: relative;
  transition: transform 0.4s ease;
}

.art-frame:hover {
  transform: scale(1.015);
}

.art-frame::after {
  content: "";
  position: absolute;
  inset: clamp(10px, 2vw, 18px);
  border: 1px solid rgba(139, 30, 30, 0.35);
  border-radius: 18px;
  pointer-events: none;
}

.heritage {
  padding: clamp(65px, 9vw, 120px) 0 clamp(70px, 9vw, 130px);
  background: linear-gradient(rgba(28, 28, 46, 0.96), rgba(28, 28, 46, 0.98)), url("assets/bengali-script-texture.png") center/cover;
  color: #fff;
  position: relative;
}

.heritage-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto clamp(30px, 5vw, 52px);
}

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.heritage-card {
  min-height: clamp(320px, 35vw, 410px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 201, 76, 0.4);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: center/cover no-repeat;
  isolation: isolate;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.heritage-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(242, 201, 76, 0.25);
}

.heritage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(transparent 12%, rgba(14, 8, 13, 0.92) 88%);
}

.literature {
  background-image: url("../assets/literature.jpg");
}

.music {
  background-image: url("../assets/music.jpg");
}

.thought {
  background-image: url("../assets/thought-leaders.jpg");
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  font-size: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 201, 76, 0.7);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(242, 201, 76, 0.1);
}

.heritage-card h3 {
  font: 600 clamp(22px, 2.8vw, 28px) var(--serif);
  margin: 0 0 8px;
  color: #fff;
}

.heritage-card p {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 300px;
  margin-bottom: 12px;
}

.journey {
  padding: clamp(65px, 9vw, 115px) 0 clamp(70px, 9vw, 125px);
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

.journey-head {
  text-align: center;
  margin-bottom: clamp(30px, 4.5vw, 52px);
}

.journey-title {
  font: 600 clamp(32px, 5.2vw, 68px) var(--serif);
  color: var(--maroon);
  margin: 10px 0 6px;
}

.journey-sub {
  font-size: 13px;
  color: #786B64;
}

.timeline {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--maroon) rgba(139, 30, 30, 0.08);
  -webkit-tap-highlight-color: transparent;
}

.timeline::-webkit-scrollbar {
  height: 6px;
}

.timeline::-webkit-scrollbar-track {
  background: rgba(139, 30, 30, 0.08);
  border-radius: 9999px;
}

.timeline::-webkit-scrollbar-thumb {
  background: var(--maroon);
  border-radius: 9999px;
}

.year {
  flex: 0 0 130px;
  min-width: 130px;
  max-width: 130px;
  position: relative;
  z-index: 2;
  scroll-snap-align: start;
  cursor: pointer;
}

.year::before {
  content: "";
  position: absolute;
  top: 36px;
  left: -9px;
  right: -9px;
  height: 1px;
  background: rgba(139, 30, 30, 0.35);
  z-index: 1;
  pointer-events: none;
}

.year:first-child::before {
  left: 50%;
}

.year:last-child::before {
  right: 50%;
}

.year-label {
  text-align: center;
  font: 15px var(--serif);
  color: var(--maroon);
  margin-bottom: 15px;
  transition: transform 0.2s ease;
  position: relative;
  z-index: 2;
}

.year-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--maroon);
  margin: 0 auto 15px;
  box-shadow: 0 0 0 5px var(--cream);
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease;
}

.year:hover .year-dot {
  background: var(--gold);
  transform: scale(1.4);
}

.year:hover .year-label {
  transform: scale(1.1);
  color: var(--red);
}

.memory {
  aspect-ratio: 1 / 0.82;
  border: 4px solid #fff;
  box-shadow: 0 5px 14px rgba(44, 26, 19, 0.15);
  overflow: hidden;
  background: #eee;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.memory:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 24px rgba(44, 26, 19, 0.25);
}

.memory img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.memory:hover img {
  transform: scale(1.08);
}

.journey-cta {
  text-align: center;
  margin-top: 36px;
}

.cta {
  padding: clamp(50px, 7vw, 75px) 0;
  background: linear-gradient(90deg, rgba(139, 30, 30, 0.97), rgba(100, 13, 22, 0.95)), url("assets/bengali-motif-pattern.png") center/cover;
  color: #fff;
  position: relative;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 30px;
}

.cta h2 {
  font: 600 clamp(28px, 4.5vw, 62px)/1.08 var(--serif);
  margin: 0 0 15px;
  letter-spacing: -0.02em;
}

.cta p {
  opacity: 0.85;
  max-width: 550px;
  line-height: 1.65;
  font-size: clamp(14px, 2vw, 15.5px);
  color: var(--paper);
}

.cta-action {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-45px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(45px);
}

/* Specific Media Queries for Home */
@media (max-width: 900px) {
  .hero {
    background:
      radial-gradient(circle at 80% 20%, rgba(250, 74, 38, 0.3), transparent 30%),
      linear-gradient(180deg, rgba(22, 7, 8, 0.92) 0%, rgba(73, 13, 13, 0.85) 60%, rgba(40, 7, 8, 0.4) 100%),
      url("../assets/durga-puja-hero.jpg") center/cover no-repeat;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: 100px;
    padding-bottom: 70px;
    min-height: auto;
  }

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

  .strip-item:nth-child(2) {
    border-right: 0;
  }

  .strip-item:nth-child(1),
  .strip-item:nth-child(2) {
    border-bottom: 1px solid rgba(242, 201, 76, 0.3);
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .cta p {
    margin: 0 auto;
  }

  .cta-action {
    justify-self: center;
  }
}

@media (max-width: 540px) {
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(242, 201, 76, 0.3);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .scroll-cue {
    display: none;
  }
}

/* Home html - End */


/* Join html - Start */

.join-form-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  padding: clamp(20px, 4vw, 45px);
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 16px 45px rgba(37, 28, 25, 0.08);
}

.join-form-title {
  font: 700 clamp(24px, 3.5vw, 30px) var(--serif);
  color: var(--maroon);
  margin-bottom: 8px;
  text-align: center;
}

.join-form-subtitle {
  font-size: clamp(13.5px, 2vw, 15px);
  color: var(--text-muted);
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 35px);
  line-height: 1.6;
}

.iframe-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #fdfdfd;
}

.iframe-wrap iframe {
  width: 100%;
  min-height: 850px;
  border: 0;
  display: block;
}

.faq-box {
  margin-top: clamp(40px, 7vw, 60px);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  padding: clamp(16px, 3vw, 20px) clamp(18px, 3.5vw, 24px);
  margin-bottom: 14px;
}

.faq-question {
  font: 600 clamp(16px, 2.2vw, 17.5px) var(--serif);
  color: var(--maroon);
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 14px;
  color: #54443E;
  line-height: 1.65;
}

/* Join html - End */