/* ============================================================
   DJ TAVIK - Indian OLED Theme
   Design system + shared components + responsive layout
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* OLED base */
  --bg: #000000;
  --bg-soft: #0a0410;
  --bg-card: #12061c;
  --bg-card-2: #170a24;

  /* Indian vibrant palette */
  --saffron: #ff6b00;
  --magenta: #e5006d;
  --gold: #ffc93c;
  --teal: #00c2a8;
  --purple: #6a0dad;
  --pink: #ff3d8b;

  /* Text */
  --text: #f5ecff;
  --text-dim: #b9a7cf;
  --heading: #ffd66b;

  /* Effects */
  --grad-warm: linear-gradient(120deg, var(--saffron), var(--magenta), var(--gold));
  --grad-cool: linear-gradient(120deg, var(--teal), var(--purple), var(--magenta));
  --glow-gold: 0 0 24px rgba(255, 201, 60, 0.45);
  --glow-magenta: 0 0 26px rgba(229, 0, 109, 0.5);
  --glow-teal: 0 0 26px rgba(0, 194, 168, 0.45);

  /* Layout */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 72px;

  /* Fonts */
  --font-display: "Cinzel Decorative", "Cinzel", serif;
  --font-head: "Marcellus", serif;
  --font-body: "Poppins", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Decorative mandala backdrop layered behind content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 18%, rgba(106, 13, 173, 0.28), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(229, 0, 109, 0.22), transparent 40%),
    radial-gradient(circle at 78% 88%, rgba(0, 194, 168, 0.18), transparent 45%),
    radial-gradient(circle at 20% 82%, rgba(255, 107, 0, 0.18), transparent 45%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: -20% -20%;
  z-index: -3;
  background-image: url("../svg/mandala.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 140vmax;
  opacity: 0.05;
  animation: spin 120s linear infinite;
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Typography ---------- */
h1,
h2,
h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--heading);
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--pink);
}

p {
  color: var(--text-dim);
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head h1::after,
.section-head h2::after {
  content: "";
  display: block;
  width: 130px;
  height: 14px;
  margin: 1rem auto 0;
  background: url("../svg/rangoli-divider.svg") center / 300px no-repeat;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.gradient-text {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 60ch;
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--grad-warm);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 999px;
  color: #150011;
  background: var(--btn-bg);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--glow-magenta);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 34px rgba(255, 201, 60, 0.6);
  color: #150011;
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 201, 60, 0.12);
  color: var(--gold);
  box-shadow: var(--glow-gold);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 201, 60, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand span {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand .brand-mark {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 201, 60, 0.7));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--grad-warm);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.nav-cta {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  color: #150011;
}

.nav-links a.nav-cta:hover {
  color: #150011;
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 3rem 0;
}

.hero canvas.motif-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero .kicker {
  font-family: var(--font-body);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--teal);
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  text-shadow: 0 0 30px rgba(229, 0, 109, 0.35);
}

.hero .tagline {
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  color: var(--text);
  margin: 1.2rem auto 2rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-mandala {
  position: absolute;
  width: min(85vw, 620px);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  opacity: 0.16;
  z-index: 0;
  animation: spin 90s linear infinite;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background:
    linear-gradient(160deg, rgba(18, 6, 28, 0.93), rgba(23, 10, 36, 0.93)),
    url("../svg/jali.svg") center / 84px repeat,
    linear-gradient(160deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid rgba(255, 201, 60, 0.2);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-warm);
  opacity: 0.85;
  z-index: 2;
}

/* ornamental inner gold frame (temple niche) */
.card::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 201, 60, 0.22);
  border-radius: 10px;
  pointer-events: none;
  z-index: 0;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 0, 109, 0.5);
  box-shadow: var(--glow-magenta);
}

.card h3 {
  color: var(--text);
  margin-bottom: 0.6rem;
}

/* Mehrab (temple arch) feature card */
.arch-card {
  text-align: center;
  padding-top: 2.75rem;
  border-radius: 150px 150px var(--radius) var(--radius);
}

.arch-card::after {
  border-radius: 140px 140px 10px 10px;
  inset: 9px 9px 9px 9px;
}

.arch-card .icon-badge {
  margin-inline: auto;
}

.arch-card .card-tip {
  position: absolute;
  top: -10px;
  left: 50%;
  translate: -50% 0;
  width: 18px;
  height: 18px;
  background: var(--grad-warm);
  rotate: 45deg;
  border-radius: 4px;
  z-index: 3;
  box-shadow: var(--glow-gold);
}

.icon-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: rgba(255, 201, 60, 0.12);
  border: 1px solid rgba(255, 201, 60, 0.4);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  box-shadow: var(--glow-gold);
}

/* ---------- Toran (decorative hanging border) ---------- */
.toran {
  height: 30px;
  background: url("../svg/toran.svg") repeat-x center top;
  background-size: auto 30px;
  filter: drop-shadow(0 3px 8px rgba(229, 0, 109, 0.35));
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  pointer-events: none;
}

/* ---------- Divider (rangoli) ---------- */
.divider {
  width: 100%;
  height: 60px;
  background: url("../svg/rangoli-divider.svg") center / contain no-repeat;
  opacity: 0.8;
  margin: 0 auto;
}

/* ---------- WhatsApp button ---------- */
/* WhatsApp button variant */
.btn--wa {
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.45);
}

.btn--wa:hover {
  color: #fff;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.7);
}

.btn--wa svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* WhatsApp social icon tint */
.socials a.wa:hover {
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
}

/* ---------- Modal (booking details) ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 660px);
  max-height: 92vh;
  overflow-y: auto;
  background:
    linear-gradient(160deg, rgba(18, 6, 28, 0.94), rgba(23, 10, 36, 0.94)),
    url("../svg/jali.svg") center / 90px repeat,
    linear-gradient(160deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid rgba(255, 201, 60, 0.25);
  border-top: 3px solid transparent;
  border-image: var(--grad-warm) 1;
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--glow-magenta);
  animation: modal-in 0.3s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal-panel .eyebrow {
  margin-bottom: 0.3rem;
}

.modal-panel h2 {
  margin-bottom: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 201, 60, 0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 201, 60, 0.28);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.1rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat .num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  background: var(--grad-cool);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat .label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-photo {
  border-radius: var(--radius);
  border: 2px solid rgba(255, 201, 60, 0.3);
  box-shadow: var(--glow-magenta);
  width: 100%;
  height: auto;
  display: block;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.chip {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(0, 194, 168, 0.12);
  border: 1px solid rgba(0, 194, 168, 0.4);
  color: var(--teal);
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 2rem;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grad-cool);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.8rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: var(--glow-gold);
  translate: 0.35rem 0;
}

.timeline-item .year {
  color: var(--pink);
  font-weight: 600;
  font-size: 0.9rem;
}

.timeline-item h3 {
  color: var(--text);
  margin: 0.2rem 0;
}

/* ---------- Events ---------- */
.event {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 1.75rem;
  background: linear-gradient(160deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid rgba(255, 201, 60, 0.14);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.event:hover {
  border-color: rgba(0, 194, 168, 0.5);
  transform: translateX(4px);
}

.event .date {
  text-align: center;
  min-width: 72px;
  padding-right: 1.3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.event .date .day {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}

.event .date .mon {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--teal);
}

.event .info h3 {
  color: var(--text);
  margin-bottom: 0.2rem;
}

.event .info p {
  font-size: 0.9rem;
}

.event.past {
  opacity: 0.55;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.tab-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(255, 201, 60, 0.35);
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--grad-warm);
  color: #150011;
  border-color: transparent;
}

/* ---------- Music ---------- */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.embed-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 201, 60, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.embed-card iframe {
  width: 100%;
  border: 0;
  display: block;
}

.embed-card .embed-meta {
  padding: 1rem 1.25rem;
}

.embed-card .embed-meta h3 {
  color: var(--text);
  font-size: 1.1rem;
}

.embed-card .embed-meta p {
  font-size: 0.85rem;
}

.ratio-video {
  aspect-ratio: 16 / 9;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery-grid figure {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 201, 60, 0.14);
}

.gallery-grid img {
  width: 100%;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-grid figure::after {
  content: "\2922";
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--gold);
  background: rgba(6, 4, 16, 0.6);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}

.gallery-grid figure:hover::after {
  opacity: 1;
}

/* event caption on each gallery image */
.gallery-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 0.9rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  background: linear-gradient(to top, rgba(6, 2, 12, 0.94), rgba(6, 2, 12, 0.45) 55%, transparent);
  transform: translateY(14px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.gallery-grid figure:hover .gallery-cap {
  opacity: 1;
  transform: none;
}

.gallery-cap .cap-title {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.02rem;
  line-height: 1.2;
}

.gallery-cap .cap-sub {
  color: var(--text);
  font-size: 0.82rem;
}

.gallery-cap .cap-date {
  color: var(--teal);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.gallery-status {
  text-align: center;
  color: var(--text-dim);
  margin-top: 1.5rem;
}

.gallery-status code {
  color: var(--gold);
  background: rgba(255, 201, 60, 0.12);
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 85vh;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  box-shadow: var(--glow-gold);
}

.lightbox-btn {
  position: absolute;
  background: rgba(255, 201, 60, 0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.lightbox-btn:hover {
  background: rgba(255, 201, 60, 0.28);
}

.lb-close {
  top: 1.5rem;
  right: 1.5rem;
}

.lb-prev {
  left: 1.5rem;
  top: 50%;
  translate: 0 -50%;
}

.lb-next {
  right: 1.5rem;
  top: 50%;
  translate: 0 -50%;
}

/* ---------- Booking form ---------- */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.form {
  background:
    linear-gradient(160deg, rgba(18, 6, 28, 0.94), rgba(23, 10, 36, 0.94)),
    url("../svg/jali.svg") center / 90px repeat,
    linear-gradient(160deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid rgba(255, 201, 60, 0.16);
  border-radius: var(--radius);
  border-top: 3px solid transparent;
  border-image: var(--grad-warm) 1;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.field {
  margin-bottom: 1.3rem;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

/* range slider (event duration) */
.field input.range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--saffron), var(--magenta), var(--gold));
  cursor: pointer;
  box-shadow: none;
}

.field input.range:focus {
  box-shadow: var(--glow-gold);
}

.field input.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #150011;
  box-shadow: var(--glow-gold);
  cursor: pointer;
}

.field input.range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #150011;
  box-shadow: var(--glow-gold);
  cursor: pointer;
}

#bm-duration-val {
  color: var(--gold);
  font-weight: 600;
}

.field .error-msg {
  color: var(--pink);
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--pink);
}

.field.invalid .error-msg {
  display: block;
}

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 194, 168, 0.14);
  border: 1px solid var(--teal);
  color: var(--teal);
  margin-bottom: 1.3rem;
}

.form-success.show {
  display: block;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-list .ico {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px rgba(255, 201, 60, 0.6));
}

.contact-list span.k {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
}

.contact-list a,
.contact-list p {
  color: var(--text);
}

/* number row with copy / call icons */
.num-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.icon-btn {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 201, 60, 0.12);
  border: 1px solid rgba(255, 201, 60, 0.4);
  color: var(--gold);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.icon-btn:hover {
  background: rgba(255, 201, 60, 0.28);
  color: var(--gold);
  transform: translateY(-2px);
}

.icon-btn.copied {
  background: var(--teal);
  border-color: var(--teal);
  color: #04201c;
}

.icon-btn.copied::after {
  content: "Copied!";
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  translate: -50% 0;
  background: var(--teal);
  color: #04201c;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(255, 201, 60, 0.18);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--heading);
  font-family: var(--font-head);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-grid a {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.footer-grid a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 201, 60, 0.35);
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.socials a:hover {
  background: var(--grad-warm);
  color: #150011;
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 0, 109, 0.22), transparent 60%);
  border-top: 1px solid rgba(255, 201, 60, 0.18);
  border-bottom: 1px solid rgba(255, 201, 60, 0.18);
  margin: 1rem 0;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 22px;
  background:
    radial-gradient(circle at 20px -8px, transparent 18px, rgba(255, 201, 60, 0.4) 19px, rgba(255, 201, 60, 0.4) 20px, transparent 21px) repeat-x;
  background-size: 40px 22px;
  opacity: 0.7;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    columns: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1.2rem 1.5rem 1.8rem;
    background: rgba(6, 2, 12, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 201, 60, 0.2);
    transform: translateY(-140%);
    transition: transform 0.35s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.7rem 0;
    width: 100%;
  }

  .nav-links .nav-cta {
    margin-top: 0.5rem;
  }

  .event {
    grid-template-columns: auto 1fr;
  }

  .event .cta-cell {
    grid-column: 1 / -1;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
