/* ========== Unique, page-scoped styles (prefixed) ========== */
:root {
  --ed-primary: #f48a1d;
  /* orange from the banner/CTA */
  --ed-dark: #0c0c20;
  --ed-muted: #6b6b7b;
  --ed-border: #eaeaf0;
  --ed-bg: #fff9f2;
  --ed-card: #ffffff;
  --ed-radius: 12px;
  --ed-shadow: 0 6px 18px rgba(12, 12, 32, 0.06);
}

.ed-wrap {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 16px 80px;
  margin-bottom: 0px;
}

/* Hero */
.ed-hero {
  margin: 24px auto 18px;
  height: 300px;
  background: linear-gradient(
    0deg,
    rgba(244, 138, 29, 0.08),
    rgba(244, 138, 29, 0.08)
  );
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
}

.ed-hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.ed-hero-title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
  padding: 0 16px;
}

.ed-hero-title h1 {
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.15;
  font-size: clamp(20px, 2.6vw, 28px);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  padding: 8px 16px;
}

/* Card blocks */
.ed-card-hero {
  background: var(--ed-card);
  border: 1px solid var(--ed-border);
  border-radius: var(--ed-radius);
  box-shadow: var(--ed-shadow);
}

.ed-card {
  /* background: var(--ed-card); */
  /* border: 1px solid var(--ed-border); */
  border-radius: var(--ed-radius);
  /* box-shadow: var(--ed-shadow); */
  padding: 20px;
  margin-bottom: 20px;
}

.ed-card-detail {
  background: var(--ed-card);
  border: 1px solid var(--ed-border);
  border-radius: var(--ed-radius);
  box-shadow: var(--ed-shadow);
  padding: 20px;
  margin-bottom: 20px;
}

.ed-section {
  padding: 0;
  margin: 0px 0;
}

.ed-section h3 {
  font: 600 18px/1.2 Inter, system-ui, Arial;
  color: var(--ed-dark);
  margin: 0 0 10px;
}

/* Event details grid */
.ed-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 12px;
}

.ed-details-row {
  align-items: start;
  border-bottom: 1px solid #e5e8eb;
  padding: 8px 0;
}

.ed-details-row:last-child {
  border-bottom: none;
}

.ed-label {
  color: #8a7361;
  font: 600 12px/1.1 Inter, Arial;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}

.ed-value {
  color: var(--ed-dark);
  font: 400 14px/1.5 Poppins, Arial;
}

/* Facilities */
.ed-facillitycontainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}

.ed-facilities-list {
  display: flex;
  gap: 20px 10px;
  flex-wrap: wrap;
  /* justify-content: center; */
  /* align-items: center; */
  /* max-width: 800px; */
  margin-top: 18px;
}

.ed-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 16px 18px;
}

.ed-fac-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--ed-border);
  border-radius: 10px;
  background: #fff;
  color: var(--ed-dark);
  font: 500 13px/1 Poppins, Arial;
}

.ed-fac-chip svg {
  width: 18px;
  height: 18px;
  color: var(--ed-primary);
}

/* Pricing cards */
.ed-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px;
}

.ed-price-card {
  border: 1px solid var(--ed-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--ed-shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ed-price-head {
  align-items: center;
}

.ed-tier {
  font: 600 13px/1 Inter;
  color: var(--ed-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.ed-amount {
  font: 700 26px/1 Inter;
  color: var(--ed-dark);
}

.ed-per {
  font: 500 12px/1 Inter;
  color: var(--ed-muted);
  margin-left: 6px;
}

.ed-cta {
  background: var(--ed-primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  font: 600 16px/1 Inter;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.ed-cta:hover {
  filter: brightness(0.95);
}

.ed-ul {
  margin: 6px 0 0 0;
  padding: 0;
  list-style: none;
  color: #3b3b4b;
}

.ed-ul li {
  font: 500 12.5px/1.6 Poppins;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.ed-check {
  color: #20c27a;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

/* CTA band */

.ed-cta-band {
  background: var(--ed-primary);
  border-radius: 14px;
  color: #fff;
  padding: 26px 16px;
  margin: 14px 0 24px;
  position: relative;
  overflow: hidden;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ed-cta-outband {
  text-align: center;
}

.ed-cta-outband h2 {
  font: 700 20px/1.25 Inter;
  font-size: 28px;
  margin-bottom: 40px;
}

.ed-cta-band .ed-cta {
  background: #fff;
  color: var(--ed-dark);
  padding: 15px 28px;
  font-size: 16px;
}

.ed-cta-doodle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.2;
  color: #fff;
}

.ed-cta-doodle.left {
  left: 24px;
}

.ed-cta-doodle.right {
  right: 24px;
  transform: translateY(-50%) scaleX(-1);
}

/* Gallery (CSS Grid) */
.ed-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ed-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  border: 1px solid var(--ed-border);
}

/* Map container (image placeholder) */
.ed-map {
  margin-top: 40px;
  border: 1px solid var(--ed-border);
  border-radius: 12px;
  overflow: hidden;
}

.ed-map img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ----- Bento Grid overrides (keeps existing .ed-gallery base) ----- */
.ed-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.ed-bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--ed-border);
  background: #f7f7f9;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.06);
}

.ed-bento-item img,
.ed-bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.ed-bento-item:hover img {
  transform: scale(1.03);
}

/* Spans for bento look */
.span-2x1 {
  grid-column: span 2;
}
.span-1x2 {
  grid-row: span 2;
}

/* Responsive */
@media (max-width: 900px) {
  .ed-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .span-2x1 {
    grid-column: span 2;
  }
  .span-1x2 {
    grid-row: span 2;
  }
}
@media (max-width: 540px) {
  .ed-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .span-2x1 {
    grid-column: span 1;
  }
  .span-1x2 {
    grid-row: span 1;
  }
}

/* ----- Lightbox ----- */
.ed-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1000;
  padding: 16px;
}

.ed-lightbox.show {
  display: flex;
}

.ed-lightbox-stage {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  margin: 0;
  position: relative;
}

.ed-lightbox-stage img {
  max-width: 100%;
  max-height: 86vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.ed-lightbox-stage figcaption {
  color: #fff;
  text-align: center;
  font: 500 14px/1.6 Inter, system-ui;
  margin-top: 10px;
  opacity: 0.9;
}

.ed-lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.ed-lightbox-nav {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 26px;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}
.ed-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.ed-lightbox-prev {
  margin-right: 8px;
}
.ed-lightbox-next {
  margin-left: 8px;
}

/* Map container */
.ed-map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .ed-details {
    grid-template-columns: 1fr;
  }

  .ed-pricing {
    grid-template-columns: 1fr;
  }

  .ed-gallery {
    grid-template-columns: 2fr 2fr;
  }

  .ed-gallery img {
    height: 200px;
  }
}

@media (max-width: 540px) {
  .ed-hero {
    height: 220px;
  }

  .ed-gallery {
    grid-template-columns: 1fr;
  }

  .ed-gallery img {
    height: 220px;
  }
}
