/* =========================================================
   Venue-options slide styles (companion to slides.css)
   ========================================================= */

/* ---------- Section Divider ---------- */
.slide.section-divider {
  color: #fff;
}
.slide.section-divider .splatter-bg { z-index: 0; }
.slide.section-divider .content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 1;
  text-align: center;
}
.slide.section-divider .word {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 140px;
  letter-spacing: .14em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.slide.section-divider .rule {
  width: 80px; height: 4px;
  background: var(--jr-blue-300);
  margin: 32px 0;
}
.slide.section-divider .date {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--jr-blue-300);
}

/* ---------- Venue Overview ---------- */
.slide.venue-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.slide.venue-overview .img {
  background: linear-gradient(135deg, var(--jr-blue-500), var(--jr-blue-900));
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide.venue-overview .img.has-video {
  /* Keep photo as background — iframe sits on top in live view,
     but PDF export captures the photo underneath since iframes don't render. */
  background-color: #000;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.slide.venue-overview .img.has-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* "Open on YouTube/Vimeo" fallback link — always visible in corner */
.slide.venue-overview .img.has-video .video-fallback-link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  z-index: 2;
  transition: background 120ms;
}
.slide.venue-overview .img.has-video .video-fallback-link:hover {
  background: rgba(0,0,0,0.9);
}
.slide.venue-overview .img .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,.45);
  font-size: 13px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}
.slide.venue-overview .img .opt-badge {
  position: absolute;
  top: 36px; left: 36px;
  background: var(--jr-blue-700);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 2px;
}
.slide.venue-overview.flip .img { order: 2; }
.slide.venue-overview.flip .img .opt-badge { left: auto; right: 36px; }

.slide.venue-overview .copy {
  padding: 64px 56px 80px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.slide.venue-overview .copy .eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--jr-blue-700);
  margin-bottom: 10px;
}
.slide.venue-overview .venue-name {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 56px;
  line-height: .98;
  letter-spacing: .005em;
  color: var(--jr-gray-900);
  margin-bottom: 14px;
}
.slide.venue-overview .venue-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--jr-gray-700);
  margin-bottom: 18px;
}
.slide.venue-overview .address-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--jr-gray-200);
  border-bottom: 1px solid var(--jr-gray-200);
  margin-bottom: 16px;
}
.slide.venue-overview .addr .lbl,
.slide.venue-overview .fact .lbl,
.slide.venue-overview .price .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--jr-blue-700);
  margin-bottom: 4px;
}
.slide.venue-overview .addr .val,
.slide.venue-overview .fact .val {
  font-size: 13px;
  font-weight: 600;
  color: var(--jr-gray-900);
  line-height: 1.4;
}
.slide.venue-overview .facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.slide.venue-overview .pricing-row {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  background: var(--jr-blue-50);
  padding: 14px 16px;
  border-left: 4px solid var(--jr-blue-700);
  border-radius: 2px;
}
.slide.venue-overview .price .val {
  font-size: 14px;
  font-weight: 700;
  color: var(--jr-gray-900);
}

/* ---------- Menu Slides (reception + plated) ---------- */
.slide.menu-slide .pad { display: flex; flex-direction: column; }
.slide.menu-slide .head { margin-bottom: 24px; }
.slide.menu-slide .head .eyebrow { margin-bottom: 10px; }
.slide.menu-slide .head .slide-title { font-size: 56px; }
.slide.menu-slide .venue-stamp {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--jr-gray-600);
}
.slide.menu-slide .body.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.slide.menu-slide .course {
  margin-bottom: 18px;
}
.slide.menu-slide .course-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 2px solid var(--jr-blue-700);
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.slide.menu-slide .course-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--jr-gray-900);
}
.slide.menu-slide .course-note {
  font-size: 11px;
  font-weight: 600;
  font-style: italic;
  color: var(--jr-blue-700);
  letter-spacing: .04em;
}

.slide.menu-slide .dish-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.slide.menu-slide .dish-list li {
  font-size: 13px;
  line-height: 1.3;
  break-inside: avoid;
}
.slide.menu-slide .dish-list li .name {
  font-weight: 700;
  color: var(--jr-gray-900);
}
.slide.menu-slide .dish-list li .desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--jr-gray-600);
  margin-top: 1px;
  font-style: italic;
}

.slide.menu-slide .bev-block {
  background: var(--jr-blue-50);
  border-radius: 2px;
  padding: 16px 18px;
  margin-top: 14px;
}
.slide.menu-slide .bev-head {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--jr-blue-700);
  margin-bottom: 8px;
}
.slide.menu-slide .bev-block ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.slide.menu-slide .bev-block li {
  font-size: 12px;
  line-height: 1.45;
  color: var(--jr-gray-800);
}

.slide.menu-slide .dietary {
  margin-top: 14px;
  font-size: 11px;
  color: var(--jr-gray-600);
  font-style: italic;
  border-top: 1px solid var(--jr-gray-200);
  padding-top: 10px;
}

/* ---------- Team Full ---------- */
.slide.team-full .pad { display: flex; flex-direction: column; }
.slide.team-full .head { margin-bottom: 28px; flex-shrink: 0; }
.slide.team-full .head .eyebrow { margin-bottom: 12px; }
.slide.team-full .head .slide-title { font-size: 72px; line-height: .98; }
.slide.team-full .body-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
  min-height: 0;
  min-width: 0;
}
.slide.team-full .people {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
}
.slide.team-full .people > * { min-width: 0; }
.slide.team-full .person {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
}
.slide.team-full .photo {
  width: 104px; height: 104px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--jr-blue-300), var(--jr-blue-900));
  background-size: cover; background-position: center;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: .04em;
  margin-bottom: 12px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px var(--jr-gray-200);
  flex-shrink: 0;
}
.slide.team-full .name {
  font-size: 13px;
  font-weight: 800;
  color: var(--jr-gray-900);
  line-height: 1.25;
  text-wrap: balance;
}
.slide.team-full .role {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--jr-blue-700);
  margin-top: 6px;
  line-height: 1.35;
  text-wrap: balance;
}
.slide.team-full .intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--jr-gray-800);
  background: var(--jr-blue-50);
  padding: 20px 26px;
  border-left: 4px solid var(--jr-blue-700);
  border-radius: 2px;
  min-width: 0;
}

/* =========================================================
   Rate Sheet slides (Staffing / Charter / Arrivals & Departures)
   ========================================================= */
.slide.rate-sheet { background: #fff; }
.slide.rate-sheet .pad {
  position: absolute;
  inset: 56px 80px 92px 80px;
  display: flex; flex-direction: column;
}
.slide.rate-sheet.with-photo .pad { right: 480px; }
.slide.rate-sheet .rate-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 460px;
  background-size: cover;
  background-position: center;
}
.slide.rate-sheet .rate-title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 52px;
  line-height: .96;
  color: var(--jr-blue-700);
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--jr-blue-700);
}
.slide.rate-sheet .rate-intro {
  font-size: 15px;
  line-height: 1.55;
  color: var(--jr-gray-800);
  margin-bottom: 22px;
  max-width: 1100px;
}
.slide.rate-sheet .rate-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  margin-bottom: 18px;
  border: 1.5px solid var(--jr-blue-700);
  border-radius: 2px;
}
.slide.rate-sheet .rate-table thead th {
  font-size: 13px;
  font-weight: 700;
  color: var(--jr-blue-700);
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1.5px solid var(--jr-blue-700);
  background: #fff;
}
.slide.rate-sheet .rate-table thead th + th { border-left: 1.5px solid var(--jr-blue-700); }
.slide.rate-sheet .rate-table tbody td {
  padding: 13px 16px;
  text-align: center;
  color: var(--jr-gray-900);
  font-weight: 500;
  border-top: 1px solid var(--jr-blue-100);
}
.slide.rate-sheet .rate-table tbody tr:first-child td { border-top: 0; }
.slide.rate-sheet .rate-table tbody td + td { border-left: 1.5px solid var(--jr-blue-700); }
.slide.rate-sheet .rate-table tbody td.cost,
.slide.rate-sheet .rate-table tbody td.hourMin {
  color: var(--status-danger);
  font-weight: 600;
}
.slide.rate-sheet .rate-table tbody tr td:first-child {
  text-align: left;
  font-weight: 500;
}

.slide.rate-sheet .rate-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
  flex: 1;
  min-height: 0;
}
.slide.rate-sheet .rate-split .rate-table { margin-bottom: 0; }

.slide.rate-sheet .rate-two-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}

.rate-notes { margin-top: 2px; }
.rate-notes .rate-notes-head {
  font-weight: 800;
  font-size: 13px;
  color: var(--jr-gray-900);
  margin-bottom: 6px;
}
.rate-notes ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  color: var(--jr-gray-800);
}
.rate-notes li {
  font-size: 11.5px;
  line-height: 1.5;
  margin-bottom: 4px;
}

/* ---------- Closing / Thank You ---------- */
.slide.closing { color: #fff; }
.slide.closing .splatter-bg { z-index: 0; }
.slide.closing .content {
  position: absolute; inset: 80px 80px 110px;
  display: flex; flex-direction: column;
  z-index: 1;
}
.slide.closing .closing-title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 76px;
  line-height: .98;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
  max-width: 14ch;
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.slide.closing .closing-sub {
  font-size: 20px;
  font-style: italic;
  color: var(--jr-blue-100);
  max-width: 32em;
  line-height: 1.5;
}
.slide.closing .signoff {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.slide.closing .signoff img {
  height: 48px;
}
.slide.closing .signoff .contact {
  text-align: right;
  font-size: 13px;
  color: var(--jr-blue-100);
  line-height: 1.7;
}
.slide.closing .signoff .contact .planner {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
