@import url('https://fonts.googleapis.com/css?family=Raleway:100,400,500,700');

/* Fixed: the original selector list here had a trailing comma ("h5,  {"), which makes the
   whole rule invalid — browsers dropped it silently, so this brand's Raleway font never
   actually applied to headings/body in production. */
body, h1, h2, h3, h4, h5 {
  font-family: 'Raleway', sans-serif !important;
}

body {
  color: #2B3D42;
  background: black;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-image: url("bg.jpg");
}

.container {
  max-width: 506px;
  color: white;
}

.ticket-container {
  flex: none;
  -webkit-box-flex: none;
  max-width: 100%;
}

.ticket-subtitle {
  margin-top: 1em;
}

.logo {
  background-image: url('logo.png');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  width: 100%;
  min-width: 300px;
  height: 40px;
  display: block;
}

.shop-header {
  background: none;
  color: white;
}

.official-ticketshop {
  font-weight: 700;
  font-size: 80%;
  color: white;
}

.shop-powered-by a {
  font-size: 60%;
  color: grey;
}

#shop-name {
  display: none;
}

.page-title {
  font-family: 'Raleway', sans-serif !important;
  color: white;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2em;
}

.event-subtitle {
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 1.2em;
  font-weight: 300;
}

footer {
  color: white;
}

.ticket {
  color: white;
  border: 0;
  border-radius: 0;
  background: #858585;
}

.ticket-title {
  background-color: #19F9B6;
  text-transform: uppercase;
  color: #000;
  display: inline;
  padding: 3px 5px;
}

.btn {
  border: 0;
  color: white;
  background: #666666;
  border-radius: 0;
}

.btn:hover {
  color: black;
  background: #666666;
}

/* Theme color — override the default CSS variable instead of redeclaring rules.
   Reused below for .btn-next-step's border/box-shadow, which is the same brand red. */
:root {
  --btn-theme-bg: #ff0042;
  --btn-theme-hover-bg: #ff0042; /* no hover-darken for this brand */
}

/* .btn above is a broad reset for generic/secondary buttons and has the same specificity
   as .btn-primary, so .btn-primary needs to be re-asserted here (after it) to still win —
   the CSS variable alone isn't enough once a same-specificity .btn rule follows it. .btn:hover
   already sets color: black, and every .btn-primary element also carries .btn, so that part
   doesn't need repeating here — only the background actually needs to win. Same reasoning
   for border-radius: 0 below (already covered by the generic .btn reset above). */
.btn-primary,
.btn-primary:hover {
  background-color: var(--btn-theme-bg);
}

.btn-edit,
.btn-ticket,
.btn-close,
.btn-edit:hover,
.btn-ticket:hover,
.btn-close:hover {
  height: auto;
  width: auto;
  padding: .375rem .75rem;
}

.btn-next-step {
  color: #ffffff;
  text-transform: uppercase;
  transition: 0.2s cubic-bezier(1, 0, 0, 1);
  border: 2px solid var(--btn-theme-bg);
  box-shadow: inset 0 0 0 50px var(--btn-theme-bg);
}

.btn-next-step:hover {
  color: var(--btn-theme-bg);
  box-shadow: inset 0 0 0 0px var(--btn-theme-bg);
  background: transparent;
}

.page-subtitle,
.terms,
.table {
  color: white;
}

/* Bootstrap's .text-muted is a dark grey that assumes a light background — barely readable
   against this brand's near-black background and photo (e.g. the secondary help links on
   the lost order page). Lightened, plus a shadow so it stays legible over the busier, lighter
   parts of the background photo too. */
.text-muted {
  color: #ddd !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

input.form-control,
select.form-control {
  border: 0;
  border-radius: 0;
  background: white;
}

.ticket-title-container {
  padding: 40px 0 20px 0;
}

.ticket-title-container .ticket-title {
  text-align: center;
  font-size: 200%;
  display: block;
}

/* Personalisation */
.list-group {
  border-radius: 0;
}

.list-group li {
  background: #848484;
}

.modal-dialog label {
  color: black;
}

.modal-dialog input,
.modal-dialog select {
  border: black 1px solid;
}
