:root {
  --deep-navy: #0e2038;
  --sunset-orange: #eb5b22;
  --sky-blue: #0284c7;
  --sky-light: #e0f2fe;
  --amber-yellow: #ffc107;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  padding-right: 0 !important;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.text-justify {
  text-align: justify;
}

/* Navbar */
.navbar-event {
  padding: 16px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(2, 132, 199, 0.16);
  backdrop-filter: blur(18px);
  transition:
    padding 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.navbar-event.navbar-scrolled {
  padding: 9px 0;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(99, 193, 255, 0.36);
}

.navbar-toggler {
  font-size: 1.8rem;
  color: var(--deep-navy);
}

.nav-link {
  color: var(--deep-navy) !important;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.66rem 0.95rem !important;
}

.nav-link:hover,
.nav-section-link.nav-link-active {
  color: var(--sunset-orange) !important;
  background: rgba(235, 91, 34, 0.1);
  box-shadow: inset 0 0 0 1px rgba(235, 91, 34, 0.2);
}

/* Buttons */
.btn-event {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: var(--sunset-orange);
  --bs-btn-border-color: var(--sunset-orange);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #d9531e;
  --bs-btn-hover-border-color: #d9531e;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #d9531e;
  --bs-btn-active-border-color: #d9531e;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(235, 91, 34, 0.25);
}

.btn-outline-event {
  --bs-btn-color: var(--sunset-orange);
  --bs-btn-border-color: rgba(235, 91, 34, 0.3);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--sunset-orange);
  --bs-btn-hover-border-color: var(--sunset-orange);
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: var(--sunset-orange);
  --bs-btn-active-border-color: var(--sunset-orange);
  border-radius: 999px;
  font-weight: 800;
}

.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item.active {
  background-color: var(--sunset-orange) !important; /* Warna Oranye KV */
  color: #ffffff !important; /* Teks jadi putih */
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  margin-top: 80px;
}

.hero-copy {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Styling Tombol Tab About */
.sky-light-tab-btn {
  background-color: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
  color: #475569 !important;
  transition: all 0.3s ease;
}

.sky-light-tab-btn:hover {
  background-color: #e2e8f0 !important;
  color: #0f172a !important;
}

.sky-light-tab-btn.active {
  background: var(--sunset-orange) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(235, 91, 34, 0.25);
}

/* Floor Plan Image Hover */
.floor-plan-section .floor-plan-img {
  transition: transform 0.3s ease;
}

.floor-plan-section .floor-plan-img:hover {
  transform: scale(1.02);
}

/* Custom Hover Effects Cards */
.contact-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08) !important;
}

.media-logo {
  transition:
    opacity 0.3s ease,
    filter 0.3s ease;
  filter: grayscale(100%);
}

.media-logo:hover {
  opacity: 1 !important;
  filter: grayscale(0%);
}

.press-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.press-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
}

.ticket-section .card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ticket-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(235, 91, 34, 0.35) !important;
}

/* Footer & Back to top */
.footer-event {
  padding: 34px 0;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1040;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--sunset-orange);
  box-shadow: 0 10px 24px rgba(235, 91, 34, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
  color: #ffffff;
}

/* Modals */
.ticket-modal .modal-dialog,
.ticket-modal .modal-content {
  height: 100%;
}

.ticket-modal .modal-content {
  border: 0;
  border-radius: 0;
  min-height: 100vh;
}

.resend-content {
  overflow: hidden;
  border-radius: 24px;
}

.rt-orders-list .list-group-item {
  cursor: pointer;
  transition: 0.2s ease;
}

.rt-orders-list .list-group-item:hover,
.rt-orders-list .list-group-item.active {
  background: rgba(235, 91, 34, 0.1);
  border-color: var(--sunset-orange);
}

/* Keyframe Animations & Utilities */
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 82px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
