/* ==========================================================================
   Venue Page — v3 Design System
   ========================================================================== */

.venue-page {
  background: #03000f;
  color: white;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
}

/* ── Header ── */
.venue-page__header {
  display: flex;
  flex-wrap: wrap;
  min-height: 520px;
  margin-top: 78px;
}

.venue-page__header-image {
  width: 50%;
  min-height: 440px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.venue-page__header-body {
  width: 50%;
  display: flex;
  align-items: center;
  background: #050030;
  padding: clamp(56px, 6vw, 96px) clamp(40px, 5vw, 80px);
}

.venue-page__header-title {
  font-family: "Termina", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.02em;
  color: white;
  line-height: 1;
  margin-bottom: 20px;

  .pv-grad-text {
    background: linear-gradient(100deg, #ff2e00 0%, #ff3564 28%, #b526bc 58%, #6726ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.venue-page__header-content {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 40px;
}

/* ── Button Primary ── */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(95deg, #ff2e00, #ff3564 50%, #b526bc);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  font-family: "Termina", sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.2s;

  &:hover {
    filter: brightness(1.08);
    color: white;
    text-decoration: none;
  }
}

/* ── Section 1: Arrival / Departure ── */
.venue-page__section-1 {
  background: #050030;
  padding: 96px 0;

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }
}

.venue-page__section-title {
  font-family: "Termina", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.02em;
  text-align: center;
  color: white;
  margin-bottom: 12px;

  .pv-grad-text {
    background: linear-gradient(100deg, #ff2e00 0%, #ff3564 28%, #b526bc 58%, #6726ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.venue-page__section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  max-width: 680px;
  margin: 16px auto 52px;
}

.venue-page__arrival-box {
  background:
    linear-gradient(#03000f, #03000f) padding-box,
    linear-gradient(135deg, #b526bc, #ff2e00) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 48px;
}

.venue-page__arrival-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px dashed rgba(103, 38, 255, 0.25);
  margin-bottom: 40px;
}

.venue-page__departure-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.venue-page__arrival-icon {
  filter: contrast(78%) brightness(268%);
  width: 64px;
  flex-shrink: 0;
}

.venue-page__arrive-title {
  background: linear-gradient(90deg, #ff2e00, #b526bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Termina", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.venue-page__arrive-content {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* ── Section 2: Host Hotel ── */
.venue-page__section-2 {
  background: #03000f;
  padding: 96px 0;

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }
}

.venue-page__hotel-title {
  background: linear-gradient(90deg, #ff2e00, #b526bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Termina", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.venue-page__hotel-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.venue-page__hotel-item {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  &:first-child {
    border-top: none;
    padding-top: 0;
  }
}

.venue-page__hotel-name {
  font-family: "Termina", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin-bottom: 0;
}

.venue-page__hotel-tagline {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(103, 38, 255, 0.9);
  margin-bottom: 12px;
}

.venue-page__hotel-content {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.venue-page__hotel-top-title {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;

  ul {
    padding-left: 20px;
  }
}

.venue-page__map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.venue-page__section-2-bottom {
  padding: 40px 0 0;
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Section 3 ── */
.venue-page__section-3 {
  background: #050030;
  padding: 96px 0;

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }
}

/* ── Responsive: tablet ── */
@media (max-width: 991px) {
  .venue-page__header-image,
  .venue-page__header-body {
    width: 100%;
  }

  .venue-page__header-image {
    min-height: 260px;
  }

  .venue-page__arrival-row,
  .venue-page__departure-row {
    flex-direction: column;
  }

  .venue-page__section-1,
  .venue-page__section-2,
  .venue-page__section-3 {
    padding: 64px 0;

    .container {
      padding: 0 24px;
    }
  }

  .venue-page__arrival-box {
    padding: 28px 20px;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 767px) {
  .venue-page__section-1,
  .venue-page__section-2,
  .venue-page__section-3 {
    padding: 48px 0;

    .container {
      padding: 0 20px;
    }
  }
}
