/* Root */
:root{
  --form-background-border-color: #A42343
}

/* Navigation */
.button--primary.header-menu__link{
  background-color: var(--color-2);
}

/* Typography */
h2,
h3,
h4{
  text-transform: none;
}

/* Homepage hero */
.fullscreen-hero img{
  width: 100%;
}

/* Forms */
form{
  border: 1px solid var(--form-background-border-color);
}

/* Pricing table CSS */
.pricing-table section {
  margin-bottom: 1.5rem;
}

.pricing-table .button svg{
  margin-left: 8px;
  margin-bottom: 3px;
  fill: #ffffff;
}

.pricing-table section h2 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #3a1a1a;
}

.pricing-table .tickets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.pricing-table .ticket-card {
  position: relative;
  background: var(--form-background); /* donkerder rood als contrast */
  border: 1px solid var(--form-background-border-color); /* lichter rood voor border */
  border-radius: 12px;
  padding: 3rem 1.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-table .ticket-card h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  text-align: center;
}

.pricing-table .ticket-card ul.description {
  margin: 0.5rem 0 1rem;
  color: #ddd;
  list-style: none;
  padding: 0;
  max-width: 24rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-table .ticket-card ul.description li{
  display: flex;
  gap: 10px;
}

.pricing-table .ticket-card .description svg{
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pricing-table .ticket-card p.price {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0.5rem 0 1rem;
  color: var(--color-2); /* accentkleur */
  text-align: center;
}

.pricing-table .ticket-card p.price .text-small{
  font-size: 80%;
}

.pricing-table .badge {
  position: absolute;
  top: -10px;
  left: 50%;
  border: none;
  transform: translateX(-50%);
  background: var(--color-2); /* accentkleur */
  color: #fff;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}