/* Tickets home page — Bootstrap-first layout with FIFA branding */

.tickets-home {
  background: #f5f7fa;
}

.tickets-home .th-hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tickets-home .th-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #0f1729;
  line-height: 1.05;
}

.tickets-home .th-hero-date {
  color: #6b7280;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Promo cards */
.tickets-home .th-promo-card {
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tickets-home .th-promo-card:hover {
  color: #111;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.tickets-home .th-promo-header {
  min-height: 120px;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: flex-end;
}

.tickets-home .th-promo-header--coral {
  background: linear-gradient(135deg, #ff6b4a 0%, #ff5a3d 50%, #e64c2e 100%);
}

.tickets-home .th-promo-header--blue {
  background: linear-gradient(135deg, #1e63e0 0%, #1e40af 50%, #1e3a8a 100%);
}

.tickets-home .th-promo-header--gold {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
}

.tickets-home .th-promo-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}

.tickets-home .th-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fifa-coral);
}

.tickets-home .th-promo-card--blue .th-promo-cta {
  color: var(--fifa-cobalt);
}

/* FIFA PASS banner */
.tickets-home .th-pass-banner {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  color: #111;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.tickets-home .th-pass-banner:hover {
  color: #111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.tickets-home .th-pass-banner h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tickets-home .th-pass-banner p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Section headings */
.tickets-home .th-section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #0f1729;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 4px solid var(--fifa-coral);
  display: inline-block;
}

/* Ticket cards */
.tickets-home .th-ticket-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tickets-home .th-ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.tickets-home .th-ticket-card--upcoming {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 90%);
}

.tickets-home .th-ticket-match {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f1729;
  line-height: 1.35;
}

.tickets-home .th-ticket-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--fifa-coral);
}

.tickets-home .th-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px;
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.tickets-home .th-badge--alt {
  background: rgba(30, 63, 224, 0.1);
  color: var(--fifa-cobalt);
  border-color: rgba(30, 63, 224, 0.2);
}

/* Feature tiles */
.tickets-home .th-feature-tile {
  position: relative;
  min-height: 220px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tickets-home .th-feature-tile:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.tickets-home .th-feature-tile::after {
  content: "";
  position: absolute;
  bottom: -35%;
  right: -20%;
  width: 75%;
  height: 95%;
  border-radius: 50%;
  z-index: 1;
}

.tickets-home .th-feature-tile--orange::after {
  background: var(--fifa-coral);
}

.tickets-home .th-feature-tile--blue::after {
  background: var(--fifa-cobalt);
  bottom: -40%;
  right: -25%;
  width: 80%;
}

.tickets-home .th-feature-tile--both::before {
  content: "";
  position: absolute;
  top: -45%;
  left: -25%;
  width: 55%;
  height: 80%;
  border-radius: 50%;
  background: var(--fifa-cobalt);
  z-index: 1;
}

.tickets-home .th-feature-tile--both::after {
  background: var(--fifa-coral);
}

.tickets-home .th-feature-tile .card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 1.5rem 1rem;
}

.tickets-home .th-feature-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.tickets-home .th-feature-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  margin: 0;
}

.tickets-home .th-feature-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #333;
  line-height: 1.3;
}

/* Accommodation */
.tickets-home .th-accom-section {
  background: #fff;
  border-top: 1px solid #ddd;
}

.tickets-home .th-accom-header {
  border-bottom: 1px solid #eee;
}

.tickets-home .th-accom-brand-text {
  font-size: 0.78rem;
  color: #555;
  max-width: 280px;
  line-height: 1.35;
}

.tickets-home .th-accom-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #111;
}

.tickets-home .th-accom-listings {
  max-height: 600px;
  overflow-y: auto;
}

.tickets-home .th-accom-listing {
  color: #111;
  border-radius: 12px;
  transition: background 0.15s ease;
}

.tickets-home .th-accom-listing:hover {
  color: #111;
  background: #f7f7f7;
}

.tickets-home .th-accom-listing-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd;
}

.tickets-home .th-accom-listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tickets-home .th-accom-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  color: #111;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.tickets-home .th-accom-map-embed {
  width: 100%;
  min-height: 420px;
  height: 100%;
}

.tickets-home .th-accom-map {
  background: #f4f7fb;
  min-height: 420px;
}

/* Ensure Bootstrap grid is never overridden on this page */
.tickets-home .row {
  display: flex;
  flex-wrap: wrap;
}

.tickets-home [class*="col-"] {
  min-width: 0;
}

@media (max-width: 767.98px) {
  .tickets-home .th-accom-listings {
    max-height: none;
  }
}
