/* ==========================
   RUNATION LANDING - MOBILE FIRST
========================== */

.landing-page {
  margin: 0;
  background: #f4f6f8;
  color: #0f172a;
  font-family: Arial, sans-serif;
}

.landing-page * {
  box-sizing: border-box;
}

/* Header */
.hub-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 13, 25, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hub-header-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hub-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 1.4px;
  font-size: 15px;
}

.hub-logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}


/* Hero */
.hub-hero {
  background:
    linear-gradient(180deg, rgba(7,13,25,0.38), rgba(7,13,25,0.92)),
    url("https://images.unsplash.com/photo-1502904550040-7534597429ae?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
  color: #fff;
}

.hub-hero-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 74px 18px 86px;
}

.hub-kicker {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.hub-copy,
.hub-visual,
.hub-meta-row,
.route-card {
  display: none;
}

.hub-hero h1,
.hub-copy h1 {
  margin: 0;
  font-size: 46px;
  line-height: 0.96;
  letter-spacing: -1.8px;
  max-width: 620px;
}

.hub-hero p,
.hub-copy p {
  margin: 16px 0 0;
  max-width: 430px;
  color: rgba(255,255,255,0.84);
  line-height: 1.55;
  font-size: 15px;
}

/* Events */
.events-section {
  padding: 34px 14px 44px;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.events-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.section-head-left {
  margin-bottom: 14px;
  padding: 0 2px;
}

.section-head-left p {
  margin: 0 0 6px;
  color: #2563eb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.section-head-left h2 {
  margin: 0;
  font-size: 26px;
  color: #0f172a;
  letter-spacing: -0.6px;
}

.event-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.event-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e6edf6;
  box-shadow: 0 14px 34px rgba(15,23,42,0.12);
}

.event-image {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.08), rgba(15,23,42,0.72));
}

.tk-event {
  background-image:
    linear-gradient(135deg, rgba(37,99,235,0.08), rgba(15,23,42,0.1)),
    url("https://images.unsplash.com/photo-1552674605-db6ffd4facb5?auto=format&fit=crop&w=1200&q=80");
}

.sawah-event {
  background-image:
    linear-gradient(135deg, rgba(34,197,94,0.08), rgba(15,23,42,0.1)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
}

.event-status {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #22c55e;
  color: #052e16;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(34,197,94,0.25);
}

.event-content {
  padding: 18px;
}

.event-type {
  margin: 0 0 7px;
  color: #2563eb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.6px;
}

.event-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0 14px;
}

.event-info-grid div {
  padding: 12px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #edf2f7;
}

.event-info-grid small {
  display: block;
  margin-bottom: 4px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.event-info-grid strong {
  display: block;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.25;
}

.event-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 14px;
  border-radius: 18px;
  background: #0f172a;
  color: #fff;
}

.event-price-row span {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-price-row strong {
  font-size: 24px;
  font-weight: 900;
}

.event-btn {
  display: flex;
  width: 100%;
  margin-top: 14px;
  padding: 15px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #0f172a);
  color: #fff;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  letter-spacing: 0.3px;
}

.event-btn:active {
  transform: scale(0.99);
}

/* Footer */
.hub-footer {
  padding: 28px 18px 36px;
  text-align: center;
  background: #0f172a;
  color: #fff;
}

.hub-footer strong {
  display: block;
  letter-spacing: 2px;
  font-weight: 900;
}

.hub-footer span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

/* Tablet */
@media (min-width: 700px) {
  .hub-header-inner {
    padding: 15px 22px;
  }

  .hub-brand {
    font-size: 17px;
  }

  .hub-logo {
    width: 40px;
    height: 40px;
  }

  .hub-hero-inner {
    padding: 96px 24px 120px;
  }

  .hub-hero h1,
  .hub-copy h1 {
    font-size: 66px;
  }

  .hub-hero p,
  .hub-copy p {
    font-size: 17px;
  }

.events-section {
  padding: 44px 22px 60px;
  margin-top: 0;
}

  .section-head-left h2 {
    font-size: 34px;
  }

  .event-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-image {
    height: 210px;
  }
}

/* Desktop */
@media (min-width: 1100px) {
  .hub-hero-inner {
    padding: 120px 24px 140px;
  }

  .hub-hero h1,
  .hub-copy h1 {
    font-size: 78px;
  }

  .events-section {
  padding: 54px 24px 76px;
  margin-top: 0;
}

  .event-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .event-card.featured-event {
    transform: translateY(-8px);
  }

  .event-card:hover {
    transform: translateY(-4px);
    transition: 0.2s ease;
  }

  .event-btn:hover {
    filter: brightness(1.05);
  }
}



.event-desc {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}