/* =========================================================
   MUNAS XIII SERIKAT PEKERJA BNI 2026 - OFFICIAL LANDING PAGE
   Seamless Continuous Vertical Scroll Presentation
========================================================= */

:root {
  --bni-teal-dark: #003746;
  --bni-teal-deep: #004d61;
  --bni-cyan-glow: #00c7d4;
  --bni-orange-primary: #f15a24;
  --bni-orange-vibrant: #fa591d;

  --color-white: #ffffff;
  --color-slate-900: #0a1e27;
  
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --slide-width: 480px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #030d12;
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

/* ================= CONTINUOUS LANDING PAGE CONTAINER ================= */
.landing-scroll-wrapper {
  width: 100%;
  max-width: var(--slide-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #004557;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
  position: relative;
}

/* Individual Page Section (Flowing seamlessly) */
.page-section {
  width: 100%;
  position: relative;
  display: block;
  line-height: 0;
}

.slide-visual-wrapper {
  position: relative;
  width: 100%;
  display: block;
  line-height: 0;
}

.pdf-page-img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* ================= INTERACTIVE HOTSPOT OVERLAYS ================= */
.interactive-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
}

.hotspot-btn, .hotspot-day-card, .hotspot-map-link {
  pointer-events: auto !important;
  position: absolute !important;
  cursor: pointer !important;
  border: none;
  background: transparent;
  outline: none;
  display: block !important;
  z-index: 60 !important;
  text-decoration: none;
}

/* Page 1 Hotspots */
.btn-rsvp-page1 {
  top: 59.2%;
  left: 26%;
  width: 48%;
  height: 6.2%;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.btn-info-page1 {
  top: 66.5%;
  left: 26%;
  width: 48%;
  height: 6.2%;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.btn-rsvp-page1:hover {
  background: rgba(0, 199, 212, 0.25);
  box-shadow: 0 0 20px rgba(0, 199, 212, 0.6);
}

.btn-info-page1:hover {
  background: rgba(0, 199, 212, 0.2);
  box-shadow: 0 0 15px rgba(0, 199, 212, 0.4);
}

/* Page 3 Day Cards Hotspots */
.card-day-1 {
  top: 31%;
  left: 8%;
  width: 84%;
  height: 12.5%;
  border-radius: 12px;
}

.card-day-2 {
  top: 44.5%;
  left: 8%;
  width: 84%;
  height: 12.5%;
  border-radius: 12px;
}

.card-day-3 {
  top: 58%;
  left: 8%;
  width: 84%;
  height: 12.5%;
  border-radius: 12px;
}

.card-day-4 {
  top: 71.5%;
  left: 8%;
  width: 84%;
  height: 12.5%;
  border-radius: 12px;
}

.hotspot-day-card:hover {
  background: rgba(0, 199, 212, 0.15);
  box-shadow: 0 0 18px rgba(0, 199, 212, 0.35);
}

/* Page 4 & 5 Clean Transparent Clickable Areas */
.map-novotel {
  top: 78%;
  left: 12%;
  width: 44%;
  height: 18%;
  border-radius: 12px;
}

.map-plaza-bni {
  top: 44%;
  left: 12%;
  width: 44%;
  height: 14%;
  border-radius: 12px;
}

.map-novotel:hover, .map-plaza-bni:hover {
  background: rgba(0, 199, 212, 0.12);
}

/* Page 9 Hotspots */
.btn-hotline-page9 {
  top: 70%;
  left: 20%;
  width: 60%;
  height: 10%;
  border-radius: 18px;
  transition: all 0.2s ease;
}

.btn-rsvp-page9 {
  top: 89.2%;
  left: 27%;
  width: 46%;
  height: 6.5%;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.btn-hotline-page9:hover {
  background: rgba(37, 211, 102, 0.25);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.btn-rsvp-page9:hover {
  background: rgba(0, 199, 212, 0.25);
  box-shadow: 0 0 20px rgba(0, 199, 212, 0.6);
}

/* ================= FLOATING QUICK BAR ================= */
.floating-quick-bar {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1500;
}

.quick-wa-btn, .quick-rsvp-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease;
  position: relative;
}

.quick-wa-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  font-size: 1.5rem;
}

.quick-rsvp-btn {
  background: linear-gradient(135deg, #f15a24 0%, #fa591d 100%);
  font-size: 1.15rem;
}

.quick-rsvp-btn span {
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
}

.quick-wa-btn:hover, .quick-rsvp-btn:hover {
  transform: scale(1.1);
}

.badge-pulse {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #ff4757;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

/* ================= RESPONSIVENESS ================= */
@media (max-width: 600px) {
  .landing-scroll-wrapper {
    max-width: 100%;
    box-shadow: none;
  }
}
