/* ==========================================================================
   Phoenix Arena - Single Event Detail Page Styling (event-detail.css)
   Website Brand Colors: Terracotta (#9A2A18), Amber (#D97706), Gold (#D48817), Cream (#FAF5EE)
   ========================================================================== */

/* Brand Accent Icon Circles */
.event-icon-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background-color: rgba(154, 42, 24, 0.1);
  color: var(--color-terracotta);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px;
  line-height: 1;
}

.event-icon-circle-amber {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background-color: rgba(217, 119, 6, 0.12);
  color: var(--color-amber);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px;
  line-height: 1;
}

/* Highlight Cards in About Section */
.event-highlight-card {
  background-color: #FDFBF7;
  border: 1px solid rgba(154, 42, 24, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Detail Card Grid Boxes */
.event-detail-box {
  background-color: #FDFBF7;
  border: 1px solid rgba(154, 42, 24, 0.15);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  height: 100%;
  transition: all 0.2s ease;
}

.event-detail-box:hover {
  border-color: var(--color-terracotta);
  box-shadow: 0 4px 14px rgba(154, 42, 24, 0.08);
}

.event-detail-icon {
  color: var(--color-terracotta);
  font-size: 26px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.event-detail-label {
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.event-detail-value {
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
}

/* Sidebar Feature Widget */
.event-sidebar-widget {
  background: linear-gradient(135deg, #FAF5EE 0%, #FDFBF7 100%);
  border: 1px solid rgba(212, 136, 23, 0.25);
  border-radius: 16px;
  padding: 1.5rem;
}

/* Contact Item with Proper Spacing */
.event-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
  font-size: 14px;
  color: #1e293b;
}

.event-contact-icon {
  color: var(--color-terracotta);
  font-size: 16px;
  width: 20px;
  min-width: 20px;
  text-align: center;
}

/* Trust Badges Bar */
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-badge-icon {
  color: var(--color-terracotta);
  font-size: 20px;
  min-width: 24px;
  text-align: center;
}

/* Ticket Quantity Counter Selector Box with Generous Internal Padding */
.ticket-qty-selector {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background-color: #F1F5F9;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 2px;
}

.ticket-qty-btn {
  background: transparent;
  border: none;
  color: #475569;
  font-weight: 700;
  font-size: 16px;
  padding: 2px 8px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s ease, transform 0.1s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 24px;
}

.ticket-qty-btn:hover {
  color: var(--color-terracotta);
  transform: scale(1.15);
}

.ticket-qty-val {
  font-weight: 700;
  font-size: 14px;
  color: #0F172A;
  min-width: 18px;
  text-align: center;
}