/* ============================================================
   STEPSEA 浪趴郵輪派對 — stepsea.css
   Event-page-specific styles
   Brand: Yellow #F5C518 / Black #0a0a0a / White #ffffff
   Ocean accent: #0a6e9f / #0e9fd4
   ============================================================ */

/* ─── LOCAL VARIABLES ────────────────────────────────────── */
:root {
  --ocean-deep:   #062a40;
  --ocean-mid:    #0a6e9f;
  --ocean-light:  #0e9fd4;
  --ocean-glow:   rgba(14, 159, 212, 0.30);
  --red-cta:      #E74C3C;
  --red-cta-dark: #c0392b;
  --subnav-h:     44px;
  --total-offset: calc(var(--nav-h) + var(--subnav-h));
}

/* ─── SCROLL OFFSET for anchor links ─────────────────────── */
/* Accounts for both fixed navbar + sticky subnav */
#intro, #themes, #activities, #gallery,
#cast,  #schedule, #tickets, #transport,
#sponsors, #faq {
  scroll-margin-top: var(--total-offset);
}

/* ─── EVENT SUB-NAV ─────────────────────────────────────── */
.event-subnav {
  position: sticky;
  top: var(--nav-h);
  z-index: 990;
  background-color: #111111;
  border-bottom: 1px solid #222222;
  height: var(--subnav-h);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.event-subnav::-webkit-scrollbar { display: none; }

.event-subnav .container-fluid {
  height: 100%;
  display: flex;
  align-items: center;
}

.event-subnav-list {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.subnav-link {
  font-family: var(--font-tc);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-text);
  padding: 10px 18px;
  display: block;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.05em;
}

.subnav-link:hover,
.subnav-link.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* ─── EVENT HERO ─────────────────────────────────────────── */
.event-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Ocean gradient background */
.event-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #041c2c 0%,
    #062a40 25%,
    #083d5c 50%,
    #0a6e9f 80%,
    #0e9fd4 100%
  );
  z-index: 0;
}

/* Dark overlay for readability */
.event-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4, 28, 44, 0.55) 0%,
    rgba(4, 28, 44, 0.35) 60%,
    rgba(4, 28, 44, 0.80) 100%
  );
  z-index: 1;
}

/* Decorative wave circles */
.hero-wave-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.wave-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(14, 159, 212, 0.15);
}

.wc-1 {
  width: 600px;
  height: 600px;
  right: -100px;
  top: -150px;
  animation: wavePulse 8s ease-in-out infinite;
}

.wc-2 {
  width: 400px;
  height: 400px;
  right: 50px;
  top: -50px;
  border-color: rgba(14, 159, 212, 0.20);
  animation: wavePulse 8s ease-in-out 2s infinite;
}

.wc-3 {
  width: 200px;
  height: 200px;
  right: 150px;
  top: 50px;
  border-color: rgba(14, 159, 212, 0.30);
  animation: wavePulse 8s ease-in-out 4s infinite;
}

@keyframes wavePulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.06); opacity: 1; }
}

/* Hero content wrapper */
.event-hero-section .container-fluid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: var(--total-offset);
}

.event-hero-inner {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--total-offset) - 120px);
  padding: 60px 0 40px;
}

.event-hero-content {
  max-width: 780px;
}

.event-hero-badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocean-light);
  border: 1px solid rgba(14, 159, 212, 0.50);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  background-color: rgba(14, 159, 212, 0.08);
}

.event-hero-title {
  font-family: var(--font-deco);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  text-shadow: 0 4px 40px rgba(14, 159, 212, 0.30);
  margin-bottom: 20px;
}

.event-hero-subtitle {
  font-family: var(--font-tc);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.event-hero-date {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.event-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-tag {
  font-family: var(--font-tc);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.event-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-ticket {
  font-family: var(--font-tc);
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--red-cta);
  color: var(--white);
  border: 2px solid var(--red-cta);
  padding: 12px 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn-hero-ticket:hover {
  background-color: var(--red-cta-dark);
  border-color: var(--red-cta-dark);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(231, 76, 60, 0.40);
  transform: translateY(-2px);
}

.hero-social-icons {
  display: flex;
  gap: 10px;
}

.hero-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.hero-social-btn:hover {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

/* Info bar */
.event-hero-infobar {
  position: relative;
  z-index: 2;
  background-color: rgba(4, 28, 44, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(14, 159, 212, 0.20);
}

.infobar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 0;
  min-width: 0;
}

@media (max-width: 1199.98px) {
  .infobar-grid {
    grid-template-columns: 1fr 1fr 1fr auto;
  }
  .infobar-cell { padding: 14px 16px; }
  .infobar-value { font-size: 0.82rem; }
}

.infobar-cell {
  padding: 18px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.infobar-cell:last-child { border-right: none; }

.infobar-label {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 4px;
}

.infobar-value {
  font-family: var(--font-tc);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.btn-infobar-ticket {
  font-family: var(--font-tc);
  font-size: 0.85rem;
  font-weight: 700;
  background-color: var(--red-cta);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background-color 0.2s;
  display: block;
}

.btn-infobar-ticket:hover {
  background-color: var(--red-cta-dark);
  color: var(--white);
}

@media (max-width: 767.98px) {
  .infobar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .infobar-cell:nth-child(2) { border-right: none; }
  .infobar-cell:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }

  .infobar-cta {
    grid-column: 1 / -1;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
  }

  .btn-infobar-ticket {
    display: inline-block;
    padding: 10px 36px;
  }
}

@media (max-width: 575.98px) {
  .infobar-grid { grid-template-columns: 1fr; }
  .infobar-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .infobar-cell:last-child { border-bottom: none; }
}

/* ─── EVENT INTRO ─────────────────────────────────────────── */
.event-intro-section { background-color: var(--black-mid); }

.intro-header {
  position: relative;
}

.section-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-deco);
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 400;
  color: rgba(245, 197, 24, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.intro-header .section-title,
.intro-header .section-title-bar {
  position: relative;
  z-index: 1;
}

.intro-lead {
  font-family: var(--font-tc);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 8px;
}

.intro-slogan {
  font-family: var(--font-en);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--ocean-light);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.intro-body {
  font-family: var(--font-tc);
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
}

.intro-stats-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.intro-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-direction: column;
  padding: 16px 20px;
  background-color: var(--black-card);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  min-width: 0;
  text-align: center;
  flex: 1 1 0;
  transition: border-color 0.3s, transform 0.3s;
}

.intro-stat:hover {
  border-color: var(--ocean-light);
  transform: translateY(-4px);
}

.intro-stat-num {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.intro-stat-unit {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ocean-light);
}

.intro-stat-desc {
  font-family: var(--font-tc);
  font-size: 0.78rem;
  color: var(--gray-text);
  width: 100%;
}

.btn-ig-link {
  font-family: var(--font-tc);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-ig-link:hover {
  opacity: 0.85;
  color: var(--white);
  transform: translateY(-2px);
}

/* Intro image grid */
.intro-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 420px;
  min-height: 320px;
}

.intro-img-main {
  grid-row: 1 / 3;
}

.intro-img-side {
  grid-column: 2;
}

/* ─── DUAL THEME ─────────────────────────────────────────── */
.dual-theme-section { background-color: var(--black); }

.dual-theme-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background-color: var(--black-card);
  border: 1px solid var(--gray-border);
}

.dual-theme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.dual-theme-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.dual-theme-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.1) 100%);
  z-index: 1;
}

.dual-theme-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.theme-sport .dual-theme-icon {
  background-color: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 20px var(--yellow-glow);
}

.theme-party .dual-theme-icon {
  background-color: var(--ocean-light);
  color: var(--black);
  box-shadow: 0 0 20px var(--ocean-glow);
}

.dual-theme-body {
  padding: 28px;
}

.dual-theme-title {
  font-family: var(--font-tc);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.theme-sport .dual-theme-title { color: var(--yellow); }
.theme-party .dual-theme-title { color: var(--ocean-light); }

.dual-theme-desc {
  font-family: var(--font-tc);
  font-size: 0.93rem;
  line-height: 1.9;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.dual-theme-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dual-theme-list li {
  font-family: var(--font-tc);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dual-theme-list li i {
  font-size: 1rem;
  flex-shrink: 0;
}

.theme-sport  .dual-theme-list li i { color: var(--yellow); }
.theme-party  .dual-theme-list li i { color: var(--ocean-light); }

/* ─── THEME ACTIVITIES ─────────────────────────────────────── */
.theme-activities-section { background-color: var(--black-mid); }

.activity-card {
  background-color: var(--black-card);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.activity-card:hover {
  transform: translateY(-8px);
  border-color: var(--ocean-light);
  box-shadow: 0 12px 40px rgba(14, 159, 212, 0.20);
}

.activity-card-featured {
  border-color: rgba(14, 159, 212, 0.35);
}

.activity-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.activity-card-img .img-placeholder {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--gray-border);
}

.activity-card-num {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--font-deco);
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  user-select: none;
}

.activity-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.activity-card-title {
  font-family: var(--font-tc);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.activity-card-desc {
  font-family: var(--font-tc);
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--gray-text);
  flex: 1;
  margin-bottom: 20px;
}

.activity-card-link {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
  align-self: flex-start;
}

.activity-card-link:hover {
  gap: 10px;
  color: var(--yellow);
}

/* ─── GALLERY ─────────────────────────────────────────────── */
.gallery-section { background-color: var(--black); }

.gallery-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.gallery-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 8px;
  box-sizing: border-box;
}

.gallery-img {
  width: 100%;
  height: 280px;
  border-radius: 12px;
}

.gallery-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--black-card);
  border: 1px solid var(--gray-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 2;
}

.gallery-arrow:hover {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 18px var(--yellow-glow);
}

.gallery-arrow-prev { margin-right: 12px; }
.gallery-arrow-next { margin-left: 12px;  }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s, transform 0.2s;
}

.gallery-dot.active,
.gallery-dot:hover {
  background-color: var(--yellow);
  transform: scale(1.3);
}

@media (max-width: 991.98px) {
  .gallery-slide { flex: 0 0 50%; }
  .gallery-img   { height: 220px; }
}

@media (max-width: 575.98px) {
  .gallery-slide { flex: 0 0 100%; }
  .gallery-img   { height: 200px; }
  .gallery-arrow { width: 38px; height: 38px; font-size: 1rem; }
}

/* ─── CAST ────────────────────────────────────────────────── */
.cast-section { background-color: var(--black-mid); }

.cast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cast-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.3s ease;
}

.cast-card:hover {
  transform: scale(1.04);
}

.cast-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cast-card:hover .cast-photo {
  border-color: var(--yellow);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.20);
}

.cast-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
}

.cast-img i { font-size: 2.5rem; }

.cast-info { text-align: center; }

.cast-name {
  font-family: var(--font-tc);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.cast-role {
  font-family: var(--font-tc);
  font-size: 0.78rem;
  color: var(--gray-text);
  margin: 0;
}

@media (max-width: 991.98px) {
  .cast-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767.98px) {
  .cast-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 400px) {
  .cast-grid { gap: 12px; }
}

/* ─── SCHEDULE ────────────────────────────────────────────── */
.schedule-section { background-color: var(--black); }

.schedule-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--gray-border);
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

.schedule-tabs::-webkit-scrollbar { display: none; }

.schedule-tab {
  font-family: var(--font-tc);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-text);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.schedule-tab:hover {
  color: var(--white);
}

.schedule-tab.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.schedule-panel {
  display: none;
}

.schedule-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.schedule-table-wrap {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-tc);
}

.schedule-table th {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  background-color: rgba(245, 197, 24, 0.05);
  border-bottom: 1px solid var(--gray-border);
  white-space: nowrap;
  text-align: left;
}

.schedule-table td {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.80);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
}

.schedule-table tr:last-child td { border-bottom: none; }

.schedule-table tr:hover td {
  background-color: rgba(255,255,255,0.03);
}

.schedule-day-badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  background-color: var(--ocean-mid);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 10px;
  margin-right: 6px;
  vertical-align: middle;
}

/* Facilities grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.facility-card {
  background-color: var(--black-card);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.facility-card:hover {
  border-color: var(--ocean-light);
  transform: translateY(-4px);
}

.facility-card i {
  font-size: 2rem;
  color: var(--ocean-light);
  margin-bottom: 14px;
  display: block;
}

.facility-card h4 {
  font-family: var(--font-tc);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.facility-card p {
  font-family: var(--font-tc);
  font-size: 0.85rem;
  color: var(--gray-text);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
  .facilities-grid { grid-template-columns: 1fr; }
}

/* Location info grid */
.location-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.location-info-card {
  background-color: var(--black-card);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.3s;
}

.location-info-card:hover { border-color: var(--ocean-light); }

.location-info-card i {
  font-size: 1.8rem;
  color: var(--ocean-light);
  margin-bottom: 12px;
  display: block;
}

.location-info-card h4 {
  font-family: var(--font-tc);
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 10px;
}

.location-info-card p {
  font-family: var(--font-tc);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
  line-height: 1.7;
}

.location-info-card p:last-child { margin-bottom: 0; }

@media (max-width: 575.98px) {
  .location-info-grid { grid-template-columns: 1fr; }
}

/* ─── TICKETS ─────────────────────────────────────────────── */
.tickets-section {
  background-color: var(--black-mid);
}

.ticket-card {
  background-color: var(--black-card);
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ticket-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  box-shadow: 0 16px 48px rgba(245, 197, 24, 0.18);
}

.ticket-featured {
  border-color: rgba(14, 159, 212, 0.50);
  transform: scale(1.02);
}

.ticket-featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.ticket-featured-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--ocean-light);
  color: var(--black);
  padding: 5px 0;
  z-index: 1;
}

.ticket-card-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--gray-border);
  text-align: center;
}

.ticket-featured .ticket-card-header { padding-top: 36px; }

.ticket-tier-badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.ticket-vip    .ticket-tier-badge { background-color: var(--yellow); color: var(--black); }
.ticket-pga    .ticket-tier-badge { background-color: var(--ocean-light); color: var(--black); }
.ticket-ga     .ticket-tier-badge { background-color: var(--gray-border); color: var(--white); }
.ticket-youth  .ticket-tier-badge { background-color: #4ade80; color: var(--black); }

.ticket-tier-name {
  font-family: var(--font-tc);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.ticket-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-from {
  font-family: var(--font-tc);
  font-size: 0.75rem;
  color: var(--gray-text);
}

.price-amount {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.price-per {
  font-family: var(--font-tc);
  font-size: 0.78rem;
  color: var(--gray-text);
}

.ticket-card-body {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ticket-perks {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.ticket-perks li {
  font-family: var(--font-tc);
  font-size: 0.85rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticket-perks li i.bi-check2 {
  color: #4ade80;
  font-size: 1rem;
  flex-shrink: 0;
}

.ticket-perks li i.bi-x {
  color: var(--gray-border);
  font-size: 1rem;
  flex-shrink: 0;
}

.ticket-perks li:has(i.bi-x) {
  opacity: 0.55;
  text-decoration: line-through;
  text-decoration-color: var(--gray-border);
}

.btn-ticket-buy {
  font-family: var(--font-tc);
  font-size: 0.9rem;
  font-weight: 700;
  background-color: var(--red-cta);
  color: var(--white);
  border: 2px solid var(--red-cta);
  padding: 10px 20px;
  border-radius: 6px;
  text-align: center;
  display: block;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.btn-ticket-buy:hover {
  background-color: var(--red-cta-dark);
  border-color: var(--red-cta-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(231,76,60,0.35);
}

.btn-vip-buy {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.btn-vip-buy:hover {
  background-color: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--black);
  box-shadow: 0 6px 20px var(--yellow-glow);
}

.btn-pga-buy {
  background-color: var(--ocean-light);
  border-color: var(--ocean-light);
  color: var(--black);
}

.btn-pga-buy:hover {
  background-color: #0a8ab8;
  border-color: #0a8ab8;
  color: var(--black);
  box-shadow: 0 6px 20px var(--ocean-glow);
}

.ticket-note {
  font-family: var(--font-tc);
  font-size: 0.82rem;
  color: var(--gray-text);
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  line-height: 1.7;
}

.ticket-note i { flex-shrink: 0; margin-top: 2px; }

/* ─── TRANSPORTATION ──────────────────────────────────────── */
.transport-section { background-color: var(--black); }

.transport-card {
  background-color: var(--black-card);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 30px 28px;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.transport-card:hover {
  border-color: var(--ocean-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(14, 159, 212, 0.15);
}

.transport-icon {
  font-size: 2.5rem;
  color: var(--ocean-light);
  margin-bottom: 16px;
  line-height: 1;
}

.transport-title {
  font-family: var(--font-tc);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.transport-sub {
  font-family: var(--font-tc);
  font-size: 0.78rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.transport-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.transport-list li {
  font-family: var(--font-tc);
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.transport-list li strong { color: rgba(255,255,255,0.85); }

.transport-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}

.transport-map {
  width: 100%;
  height: 300px;
  border-radius: 16px;
}

.transport-map i    { font-size: 3rem; }
.transport-map small {
  font-family: var(--font-tc);
  font-size: 0.78rem;
  color: #555;
  margin-top: 4px;
  display: block;
}

.transport-event-info {
  display: flex;
  gap: 0;
  background-color: var(--black-card);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  overflow: hidden;
  flex-wrap: wrap;
}

.transport-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  flex: 1;
  border-right: 1px solid var(--gray-border);
  min-width: 220px;
}

.transport-info-item:last-child { border-right: none; }

.transport-info-item > i {
  font-size: 1.6rem;
  color: var(--ocean-light);
  flex-shrink: 0;
}

.transport-info-label {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 4px;
}

.transport-info-value {
  font-family: var(--font-tc);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .transport-info-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-border);
    width: 100%;
    flex: none;
  }
  .transport-info-item:last-child { border-bottom: none; }
}

/* ─── SPONSORS ────────────────────────────────────────────── */
.sponsors-section { background-color: var(--black-mid); }

.sponsor-tier {
  margin-bottom: 48px;
}

.sponsor-tier:last-child { margin-bottom: 0; }

.sponsor-tier-label {
  font-family: var(--font-tc);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-border);
}

.sponsor-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.sponsor-logo-item {
  flex: 0 0 auto;
}

.sponsor-logo {
  border-radius: 8px;
  width: 160px;
  height: 72px;
  background-color: #1a1a1a;
  border-color: #2a2a2a;
  transition: border-color 0.3s, background-color 0.3s;
}

.sponsor-logo:hover {
  border-color: var(--gray-text);
  background-color: #222;
}

.sponsor-logo span {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #444;
}

.sponsor-large .sponsor-logo {
  width: 200px;
  height: 88px;
}

.sponsor-sm .sponsor-logo {
  width: 130px;
  height: 60px;
}

@media (max-width: 575.98px) {
  .sponsor-logo       { width: 130px; height: 60px; }
  .sponsor-large .sponsor-logo { width: 160px; height: 72px; }
  .sponsor-sm    .sponsor-logo { width: 110px; height: 52px; }
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-section { background-color: var(--black); }

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 44px;
}

.faq-category:last-child { margin-bottom: 0; }

.faq-category-title {
  font-family: var(--font-tc);
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-border);
}

.faq-category-title i { font-size: 1rem; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  font-family: var(--font-tc);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover {
  color: var(--yellow);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--yellow);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

details[open] .faq-icon {
  transform: rotate(180deg);
}

details[open] .faq-question {
  color: var(--yellow);
}

.faq-answer {
  padding: 0 0 20px 0;
  animation: fadeIn 0.25s ease;
}

.faq-answer p {
  font-family: var(--font-tc);
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.9;
  margin-bottom: 12px;
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-answer ul li {
  font-family: var(--font-tc);
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.faq-answer ul li strong { color: rgba(255,255,255,0.85); }

/* ─── RESPONSIVE GLOBAL TWEAKS ────────────────────────────── */
@media (max-width: 991.98px) {
  .event-hero-title { font-size: clamp(3rem, 14vw, 7rem); }
  .intro-image-grid { height: auto; grid-template-rows: 220px 180px; }
  .intro-stats-row { gap: 12px; }
  .intro-stat { padding: 12px 14px; }
  .intro-stat-num { font-size: 1.4rem; }
  .ticket-featured { transform: scale(1); }
  .ticket-featured:hover { transform: translateY(-6px); }
  .dual-theme-img { height: 200px; }
}

@media (max-width: 767.98px) {
  .event-subnav-list { gap: 0; }
  .subnav-link       { padding: 10px 12px; font-size: 0.75rem; }
  .infobar-grid      { grid-template-columns: 1fr 1fr; }
  .event-hero-inner  { padding-top: 40px; }
  .intro-image-grid  { grid-template-columns: 1fr; grid-template-rows: 220px 160px 160px; height: auto; }
  .intro-img-main    { grid-row: auto; }
  .intro-img-side    { grid-column: auto; }
  .dual-theme-img    { height: 220px; }
}

@media (max-width: 575.98px) {
  .event-hero-title  { font-size: clamp(2.8rem, 18vw, 5rem); }
  .event-hero-tags   { display: none; }
  .schedule-tab      { padding: 10px 14px; font-size: 0.82rem; }
  .transport-card    { padding: 22px 20px; }
  .faq-question      { font-size: 0.88rem; padding: 14px 0; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .wave-circle       { animation: none; }
  .gallery-track     { transition: none; }
  .schedule-panel    { animation: none; }
}
