:root {
  --navy-deep: #080d33;
  --navy: #0c1547;
  --navy-mid: #122064;
  --navy-light: #1a2d7c;
  --gold: #d9a441;
  --gold-light: #f3d488;
  --gold-lighter: #fce7ae;
  --gold-dark: #a9791f;
  --cream: #fdf6e3;
  --leaf: #7c9b6b;
}

* {
  box-sizing: border-box;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1420px;
  }
}

body {
  font-family: "Anek Gujarati", "Poppins", sans-serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.display-font {
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
}

.gold-text {
  color: var(--gold);
}

a {
  text-decoration: none;
}

/* ===== Reusable starfield ===== */
.stars-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle ease-in-out infinite;
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* ===== Fireflies (jugnoo) ===== */
.fireflies-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.firefly {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff6cf 0%,
    #ffd85e 40%,
    rgba(255, 216, 94, 0) 75%
  );
  box-shadow:
    0 0 6px 2px rgba(255, 216, 94, 0.8),
    0 0 14px 6px rgba(255, 183, 50, 0.35);
  animation-name: firefly-move, firefly-flicker;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}
@keyframes firefly-flicker {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 1;
  }
}
@keyframes firefly-move {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(18px, -22px);
  }
  50% {
    transform: translate(-10px, -40px);
  }
  75% {
    transform: translate(-25px, -10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* ===== Beat / equalizer strips ===== */
.beat-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  overflow: hidden;
  z-index: 3;
}
.beat-strip-thin {
  height: 44px;
  background: linear-gradient(
    180deg,
    var(--gold-light) 0%,
    var(--gold) 55%,
    var(--gold-dark) 100%
  );
  padding: 0;
}
.cart-page-header .beat-strip-thin {
  margin-top: 40px;
}
.beat-strip-thin .bar {
  width: 5px;
  min-width: 5px;
  border-radius: 2px;
  background: var(--navy-deep);
  animation: beatpulse ease-in-out infinite;
}
.beat-strip-thick {
  height: 90px;
  background: transparent;
  gap: 8px;
  padding: 0;
}
.beat-strip-thick .bar {
  width: 14px;
  min-width: 14px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    var(--gold-light),
    var(--gold) 60%,
    var(--gold-dark)
  );
  animation: beatpulse ease-in-out infinite;
}
@keyframes beatpulse {
  0%,
  100% {
    transform: scaleY(var(--min, 0.25));
  }
  50% {
    transform: scaleY(var(--max, 1));
  }
}

/* ===== Header / Hero ===== */

header#home {
  padding-top: 80px;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(
    ellipse at 70% 30%,
    var(--navy-light) 0%,
    var(--navy) 45%,
    var(--navy-deep) 100%
  );
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5vw 0;
  flex-wrap: wrap;
  gap: 14px;
}
.date-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 2.5rem;
  color: #fff;
}
.date-badge .pill {
  background: #fff;
  color: var(--navy-deep);
  font-weight: 800;
  padding: 0px;
  border-radius: 6px;
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
  width: 60px;
  display: inline-flex;
  height: 60px;
  justify-content: center;
}
.date-badge .pill.gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.date-badge .data_dash {
  margin: 0px 8px;
  font-weight: 800;
  font-size: 1.2rem;
}
.date-badge small {
  display: block;
  font-weight: 700;
  opacity: 1;
  font-size: 1.3rem;
  margin-top: 15px;
}

.hero-logo img {
  height: 110px;
  margin-bottom: -100px;
}

.btn-gold {
  background: linear-gradient(
    180deg,
    var(--gold-light),
    var(--gold) 60%,
    var(--gold-dark)
  );
  color: var(--navy-deep) !important;
  font-weight: 700;
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
  padding: 8px 18px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: inline-block;
  font-size: 2.2rem;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: var(--navy-deep);
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  margin-top: 8vh;
  padding: 0 5vw;
}
.hero-content h1 {
  font-size: clamp(1.6rem, 5.2vw, 4.1rem);
  font-weight: 400;
  line-height: 1.3;
  margin-top: 100px;
}
.hero-content h1 .gold-text {
  font-weight: 800;
}

.hero-visuals {
  position: relative;
  flex: 1;
  min-height: 340px;
}
.hero-temple-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 78%;
  max-height: 430px;
  z-index: 3;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}
.hero-plants-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
}

/* ===== Impact section ===== */
.impact-section {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--navy-deep),
    var(--navy-mid) 60%,
    var(--navy) 100%
  );
  padding: 40px 0 0;
  text-align: center;
  overflow: hidden;
}
.eyebrow {
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
  z-index: 4;
}
.eyebrow span.gold-text {
  font-weight: 700;
}
.impact-number {
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
  font-size: clamp(5rem, 9vw, 6.5rem);
  font-weight: 800;
  background: linear-gradient(
    180deg,
    var(--gold-lighter),
    var(--gold) 55%,
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 4;
  line-height: 1;
  margin-bottom: 40px;
}
.impact-number span {
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
  font-size: clamp(3.5rem, 4vw, 4.5rem);
  font-weight: 400;
  background: none;
  -webkit-text-fill-color: var(--cream);
  color: var(--cream);
  margin-left: 14px;
  vertical-align: middle;
}
.impact-text {
  margin: 0px;
  width: 100%;
  max-width: 100%;
  font-size: 2.1rem;
  line-height: 1.4;
  opacity: 0.92;
  position: relative;
  z-index: 4;
  padding: 0 20px;
}
.impact-text2 {
  font-size: 2.1rem;
  font-weight: 500;
  opacity: 0.95;
  position: relative;
  z-index: 4;
  padding: 0 20px 50px;
}

/* ===== Artists section ===== */
.artists-section {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--navy),
    var(--navy-mid) 50%,
    var(--navy) 100%
  );
  padding: 60px 0 70px;
  overflow: hidden;
}
.watermark {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 14vw, 9rem);
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: 10px;
  z-index: 1;
  white-space: nowrap;
}
.section-title {
  position: relative;
  z-index: 4;
  text-align: center;
  font-weight: 700;
  margin-bottom: 44px;
  font-size: clamp(3.5rem, 5vw, 5.5rem);
}
.section-title .gold-text {
  display: block;
  font-size: 3rem;
  letter-spacing: 3px;
  font-weight: 600;
}
.artist-card {
  position: relative;
  z-index: 4;
  text-align: center;
}
.artist-photo-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  aspect-ratio: 232/300;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
}
.artist-card:hover .artist-photo-wrap {
  transform: translateY(-6px);
}
.artist-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artist-day {
  font-weight: 700;
  font-size: 2.2rem;
  margin-top: 14px;
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
  line-height: 1.2;
}
.artist-date {
  font-size: 1.78rem;
  opacity: 0.8;
  margin-bottom: 6px;
}
.artist-name {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  margin-top: 20px;
}
.artist-count {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--gold);
}

/* ===== Pricing / cart section ===== */
.pricing-section {
  position: relative;
  background: var(--navy);
  padding: 10px 0 80px;
}
.pricing-card {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 34px clamp(18px, 4vw, 44px);
  backdrop-filter: blur(6px);
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 10px;
}
.price-row:last-of-type {
  border-bottom: none;
}
.price-row .label {
  font-weight: 600;
  font-size: 1.05rem;
}
.season-pass-row {
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 18px;
  background: rgba(217, 164, 65, 0.08);
}
.season-pass-row .label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.season-pass-row .label .sub-label {
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(253, 246, 227, 0.65);
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 14px;
}
.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.qty-btn:hover {
  transform: scale(1.08);
}
.qty-val {
  min-width: 26px;
  text-align: center;
  font-weight: 700;
  font-size: 1.15rem;
}
.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  flex-wrap: wrap;
  gap: 16px;
}
.total-row .total-label {
  font-weight: 600;
  font-size: 1.1rem;
}
.total-row .total-amount {
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 1.5rem;
}
.pay-btn {
  background: linear-gradient(
    180deg,
    var(--gold-light),
    var(--gold) 60%,
    var(--gold-dark)
  );
  color: var(--navy-deep);
  font-weight: 800;
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
  padding: 12px 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}
.pay-btn:hover {
  transform: translateY(-2px);
}
.pay-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.cf-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--cream);
  border-radius: 8px;
  padding: 10px 14px;
  width: 100%;
}
.cf-input::placeholder {
  color: rgba(253, 246, 227, 0.55);
}
.cf-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--cream);
  box-shadow: 0 0 0 0.2rem rgba(217, 164, 65, 0.25);
  outline: none;
}
.booking-msg {
  margin-top: 14px;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.booking-msg.error {
  color: #ff8686;
}
.booking-msg.success {
  color: #8de08d;
}

/* ===== Booking rows (day cards + season pass, index.html ticket booking) ===== */
.booking-row {
  align-items: center;
  padding: 16px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}
.booking-row:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.booking-row.season-pass-row {
  background: rgba(217, 164, 65, 0.08);
  border: 1px solid rgba(217, 164, 65, 0.4);
  margin-bottom: 22px;
}
.booking-row.season-pass-row .booking-day-badge.season-badge {
  background: var(--navy-deep);
  color: var(--gold-light);
  border: 1px solid rgba(217, 164, 65, 0.5);
}
.booking-day-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 105px;
  background: linear-gradient(
    180deg,
    var(--gold-light),
    var(--gold) 60%,
    var(--gold-dark)
  );
  color: var(--navy-deep);
  border-radius: 10px;
  padding: 8px 10px;
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
  line-height: 1.2;
}
.booking-day-badge .booking-day-num {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}
.booking-day-badge .booking-day-date {
  font-weight: 600;
  font-size: 1.2rem;
  opacity: 0.85;
  margin-top: 2px;
}
.booking-info {
  flex: 1 1 200px;
  min-width: 160px;
}
.booking-artist {
  font-weight: 700;
  font-size: 1.5rem;
}
.booking-meta {
  font-size: 1.1rem;
  opacity: 0.7;
  margin-top: 3px;
}
.booking-price-qty {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.booking-price {
  font-weight: 800;
  color: var(--gold);
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
  font-size: 1.4rem;
}

/* ===== Add to Cart CTA (bottom of pricing-card) ===== */
.cart-cta-row {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.cart-cta-summary {
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.add-to-cart-btn {
  width: 100%;
  max-width: 420px;
}
@media (max-width: 575px) {
  .booking-day-badge {
    min-width: 58px;
    padding: 6px 8px;
  }
  .booking-price-qty {
    align-items: flex-start;
    width: 100%;
  }
}

/* ===== Cart page ===== */
.cart-page-header {
  position: relative;
  background: radial-gradient(
    ellipse at 70% 30%,
    var(--navy-light) 0%,
    var(--navy) 45%,
    var(--navy-deep) 100%
  );
  overflow: hidden;
}
.continue-shopping-link {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  margin-bottom: -80px;
}
.continue-shopping-link:hover {
  color: var(--gold-light);
}
.cart-title {
  position: relative;
  z-index: 4;
  text-align: center;
  font-weight: 700;
  margin-top: 30px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.cart-section {
  position: relative;
  background: var(--navy);
  padding: 40px 0 80px;
}
.cart-empty {
  max-width: 480px;
  margin: 40px auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 50px 30px;
}
.cart-empty i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.cart-empty p {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.checkout-card {
  margin-top: 26px;
}
.cart-item-row .label {
  flex: 1 1 auto;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cart-item-row .label .sub-label {
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(253, 246, 227, 0.65);
}
.cart-row-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-subtotal {
  font-weight: 700;
  color: var(--gold);
  min-width: 80px;
  text-align: right;
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
}
.remove-btn {
  background: none;
  border: none;
  color: rgba(253, 246, 227, 0.55);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
.remove-btn:hover {
  color: #ff8686;
}

/* ===== Thank you / confirmation page ===== */
.thankyou-section {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(
    ellipse at 70% 30%,
    var(--navy-light) 0%,
    var(--navy) 45%,
    var(--navy-deep) 100%
  );
  display: flex;
  align-items: center;
  padding: 40px 0;
  overflow: hidden;
}
.thankyou-logo {
  position: relative;
  z-index: 4;
  text-align: center;
  margin-bottom: 30px;
}
.thankyou-logo img {
  height: 60px;
}
.thankyou-card {
  position: relative;
  z-index: 4;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 48px clamp(20px, 5vw, 50px);
  backdrop-filter: blur(6px);
}
.ty-checkmark {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
}
.ty-checkmark svg {
  width: 100%;
  height: 100%;
}
.ty-check-circle {
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: ty-circle 0.6s ease-out forwards;
}
.ty-check-path {
  stroke: var(--gold-light);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: ty-check 0.4s 0.55s ease-out forwards;
}
@keyframes ty-circle {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes ty-check {
  to {
    stroke-dashoffset: 0;
  }
}
.ty-warn-icon {
  font-size: 3.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.ty-heading {
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 6px;
}
.ty-sub {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.ty-message {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.92;
  max-width: 460px;
  margin: 0 auto 22px;
}
.ty-booking-code {
  display: inline-block;
  background: rgba(217, 164, 65, 0.12);
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: 10px;
  padding: 12px 24px;
  font-family: "Anek Gujarati", "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}
.ty-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 28px;
}
.ty-note a {
  color: var(--gold-light);
}
.ty-home-btn {
  display: inline-block;
}

/* ===== Soul / Old roots new beats section ===== */
.soul-section {
  position: relative;
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  padding: 90px 0;
  overflow: hidden;
  padding-bottom: 40px;
}
.soul-heading h2 {
  font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.35;
}
.soul-heading h3 {
  font-weight: 700;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  margin-top: 22px;
  color: var(--gold);
}
.soul-visual {
  position: relative;
  height: 380px;
}
.soul-visual img.temple-shrub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.temple-shrub {
  margin-top: -300px;
  width: 100%;
}
.soul-visual img.dancer-img {
  position: absolute;
  right: 6%;
  bottom: -36px;
  height: 105%;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.4));
}
@media (max-width: 1110px) {
  .temple-shrub {
    margin-top: -250px;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .soul-visual {
    height: 300px;
    margin-top: 40px;
  }
  .temple-shrub {
    margin-top: -200px;
    width: 100%;
  }
}

/* ===== Gallery section ===== */
.gallery-section {
  position: relative;
  background: var(--navy-deep);
  padding: 70px 0 60px;
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  position: relative;
  z-index: 4;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .temple-shrub {
    margin-top: -200px;
    width: 100%;
  }
  .hero-nav {
    justify-content: center;
  }
  .continue-shopping-link {
    margin-bottom: 0px;
  }
  .cart-page-header .hero-nav.cart {
    justify-content: space-between;
  }
  .hero-nav .date-badge {
    order: 2;
    margin: 30px 0px;
  }
  .date-badge small {
    text-align: center;
  }
  .hero-logo {
    order: 1;
  }
  .hero-nav a.btn-gold {
    order: 3;
  }
  .hero-logo img {
    margin-bottom: 0;
    height: auto;
  }
  header#home {
    padding-top: 50px;
  }
  .eyebrow {
    font-size: 2.4rem;
  }
  .impact-number span {
    font-size: 3rem;
  }
  .impact-text {
    font-size: 1.3rem;
  }
  .impact-text2 {
    font-size: 1.3rem;
  }
  .section-title .gold-text {
    font-size: 2.4rem;
  }
  .artist-day {
    font-size: 1.6;
  }
  .artist-name {
    font-size: 2rem;
  }
  .booking-price-qty {
    align-items: center;
  }
  .booking-row {
    flex-direction: column;
  }
  .booking-day-badge {
    padding: 10px 20px;
    flex-direction: row;
    gap: 10px;
  }
  .booking-day-badge .booking-day-num {
    line-height: 1;
  }
  .booking-day-badge .booking-day-date {
    margin-top: -1px;
  }
  .booking-info {
    flex: auto;
    min-width: auto;
    text-align: center;
  }
}

/* ===== Sponsors ===== */
.sponsors-section {
  position: relative;
  background: linear-gradient(180deg, var(--navy-deep), var(--navy-mid));
  padding: 60px 0 0;
  text-align: center;
  overflow: hidden;
}
.sponsor-marquee {
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 50px 0 60px;
  z-index: 4;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}
.sponsor-marquee .sponsor-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: sponsor-scroll 25s linear infinite;
}
.sponsor-item {
  flex-shrink: 0;
  height: 60px;
  display: flex;
  align-items: center;
}
.sponsor-item img {
  height: 100%;
  width: auto;
  opacity: 0.85;
  filter: grayscale(20%);
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}
.sponsor-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@keyframes sponsor-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.sponsor-marquee:hover .sponsor-track {
  animation-play-state: paused;
}
@media (max-width: 767px) {
  .sponsor-item {
    height: 42px;
  }
  .sponsor-marquee {
    gap: 40px;
  }
  .sponsor-marquee .sponsor-track {
    gap: 40px;
    animation-duration: 18s;
  }
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  /* background:linear-gradient(180deg,var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%); */
  background-image: url("./assets/D_EDIT/bg_yellow.webp");
  background-size: cover;
  background-position: center;
  padding: 150px 0 0;
  text-align: center;
  color: var(--navy-deep);
  overflow: hidden;
}
.site-footer img.footer-logo {
  height: 120px;
  margin-bottom: 22px;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  z-index: 999;
  position: relative;
}
.footer-link {
  font-size: 2rem;
  color: #0c1d59;
}
.footer-link a {
  color: #0c1d59;
  z-index: 999;
  position: relative;
}
.footer-social a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}
.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--gold-light);
}
.footer-social a img {
  width: 60px;
}
.footer-plants-img {
  width: 100%;
  display: block;
  margin-top: -130px;
}
.footer-bottom {
  font-size: 0.78rem;
  opacity: 0.75;
  padding: 10px 0 18px;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 100px 0 0;
  }
  .site-footer img.footer-logo {
    height: 90px;
  }
  .footer-contact {
    gap: 10;
  }
  .footer-link {
    font-size: 1.6rem;
  }
  .footer-social a {
    width: 40px;
    height: 40px;
  }
  .footer-social a img {
    width: 40px;
  }
  .footer-plants-img {
    margin-top: -50px;
  }
}

@media (max-width: 626px) {
  .footer-contact {
    gap: 0;
  }
  .footer-contact {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .hero-content {
    margin-top: 5vh;
  }
  .hero-content h1 {
    margin-top: 30px;
  }
  .hero-nav {
    justify-content: center;
  }
  .hero-visuals {
    min-height: 260px;
  }

  .temple-shrub {
    margin-top: -90px;
    width: 100%;
  }
}
@media (max-width: 424px) {
  .cart-page-header .hero-nav.cart {
    justify-content: center;
  }
}
