/* ========== Imports & Fonts ========== */
@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300italic,600italic,300,600");
@import url('https://fonts.googleapis.com/css?family=New+Rocker');

@font-face {
  font-family: 'Faith Collapsing';
  src: url('fonts/faith_collapsing/Faith Collapsing.otf');
}
@font-face {
  font-family: 'Iglesia';
  src: url('fonts/iglesia/Iglesia_.otf');
}
/* Ten $teps Ahead brand font */
@font-face {
  font-family: "Tan Paradiso";
  src: url("../fonts/tan-paradiso.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.brand-font,
.inner_lineup h1 {
  font-family: "Tan Paradiso", serif;
  font-weight: 400;
  letter-spacing: .02em;
}

/* ========== Reset & Box Model ========== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn,
em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
details, embed, figure, figcaption, footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; -webkit-text-size-adjust: none; background: #000; color: #fff; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
*, *:before, *:after { box-sizing: border-box; }

@-ms-viewport { width: device-width; }
@media screen and (max-width: 480px) { html, body { min-width: 320px; } }

/* ========== Base Type & Colors ========== */
html { font-size: 16pt; }
@media screen and (max-width: 1680px) { html { font-size: 12pt; } }
@media screen and (max-width: 736px) { html { font-size: 11pt; } }
@media screen and (max-width: 360px) { html { font-size: 10pt; } }

body, input, select, textarea {
  color: #fff; font-family: "Source Sans Pro", sans-serif; font-weight: 300; font-size: 1rem; line-height: 1.65;
}

a {
  transition: color .2s, background-color .2s, border-bottom-color .2s;
  border-bottom: dotted 1px rgba(255,255,255,0.5);
  text-decoration: none; color: inherit;
}
a:hover { border-bottom-color: transparent; }

strong, b { color: #fff; font-weight: 600; }
em, i { font-style: italic; }
p { margin: 0 0 2rem; }

h1, h2, h3, h4, h5, h6 {
  color: #fff; font-weight: 600; line-height: 1.5; margin: 0 0 1rem; text-transform: uppercase; letter-spacing: .2rem;
}
h1 { font-size: 2.25rem; line-height: 1.3; letter-spacing: .2rem; }
h2 { font-size: 1.5rem; line-height: 1.4; letter-spacing: .5rem; }
h3 { font-size: 1rem; } h4 { font-size: .8rem; } h5 { font-size: .7rem; } h6 { font-size: .6rem; }
@media screen and (max-width: 736px) {
  h1 { font-size: 1.75rem; line-height: 1.4; }
  h2 { font-size: 1.25em; line-height: 1.5; }
}

/* Loading/transition disables */
body.is-loading *, body.is-loading *:before, body.is-loading *:after,
body.is-switching *, body.is-switching *:before, body.is-switching *:after {
  animation: none !important; transition: none !important; transition-delay: 0s !important;
}

/* Text helpers */
.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }

/* ========== Navbar ========== */
.navbar{
  position: sticky; top: 0; z-index: 999;
  backdrop-filter: none;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: "Tan Paradiso", serif; font-weight: 400; font-size: 1rem; letter-spacing: .05em;
}
.navbar ul{
  background-color: #000;
  padding: 0; margin: 0; overflow: hidden;
}
.navbar li{ float: left; }
.navbar a{
  color: #fff; text-decoration: none; padding: 15px; display: block; position: relative; transition: color .2s ease;
}
.navbar a:hover{ background-color: #111; }
.navbar a::after{
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px;
  background: #FFC000; transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.navbar a:hover::after{ transform: scaleX(1); }

/* ========== Icons (visible on black) ========== */
.icon.fa-spotify,
.icon.fa-envelope,
.icon.fa-instagram { color: #ffffff !important; }
.icon.fa-spotify:hover,
.icon.fa-envelope:hover,
.icon.fa-instagram:hover { color: #FFC000; }

a.icon > .label {
  display: none;
}

/* ========== Icons (visible on black) ========== */
.hero {
  padding-top: calc(var(--header-h) + 1.5rem);
  display: grid;
  place-items: center;
  gap: 1rem; /* space between line, video, line */
}

/* Video styling */
.hero-video {
  max-width: min(90vw, 900px);
  width: 100%;
  height: auto;
}

/* Horizontal lines */
.hero-line {
  width: 90%;                /* match your desired alignment */
  max-width: 900px;           /* keep consistent with video width */
  height: 2px;
  background: #fff;
}
/* ========== Forms ========== */

/* Styling for the overall button */
.ticket-button {
  --red: #e74c3c;
  --dark-red: #c0392b;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  background: var(--red);
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  overflow: hidden;
}

/* Hover effects for the button */
.ticket-button:hover {
  background-color: var(--dark-red);
  transform: translateY(-2px);
}

/* Pseudo-element for the jagged ticket edge */
.ticket-button::before {
  content: '';
  position: absolute;
  top: 0;
  right: -5px; /* Adjust to cover the edge */
  width: 10px;
  height: 100%;
  background: 
    radial-gradient(circle at 0 50%, transparent 5px, var(--red) 5px) 0 0,
    radial-gradient(circle at 100% 50%, transparent 5px, var(--red) 5px) 100% 0;
  background-size: 100% 20px;
  background-repeat: repeat-y;
  z-index: 1;
}
.contact {
  max-width: 720px;
  margin: 4rem auto;
  padding: 0 1.25rem;
  color: #fff;
}

/* Heading */
.contact h2 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

/* Form */
.contact-form {
  display: grid;
  gap: 1rem;
}

/* Field rows */
.field-row {
  display: grid;
  gap: 0.5rem;
}

.field-row label {
  font-size: 0.95rem;
  opacity: 0.9;
}

.field-row input,
.field-row textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field-row input::placeholder,
.field-row textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

.field-row input:focus,
.field-row textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}

/* Submit button */
.contact-submit {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: #000;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-submit:hover {
  border-color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.25) inset;
}

.contact-submit:active {
  transform: translateY(1px);
}

.contact-note {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 0.25rem;
}

/* Icon created using a pseudo-element for the ticket shape */
.ticket-icon {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 4px;
  transform: rotate(-25deg);
  box-shadow: inset 0 0 0 2px var(--red);
  transition: transform 0.3s ease-in-out;
}

/* The perforation line in the ticket icon */
.ticket-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 1px;
  background: var(--red);
  transform: translate(-50%, -50%);
  border-top: 1px dashed var(--red);
}

/* Animation for the wiggle effect on hover */
.ticket-button:hover .ticket-icon {
  animation: shake 0.3s cubic-bezier(.36,.07,.19,.97) both;
  transform-origin: center center;
}

/* Keyframes for the shake animation */
@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0) rotate(-25deg); }
  20%, 80% { transform: translate3d(2px, 0, 0) rotate(-25deg); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0) rotate(-25deg); }
  40%, 60% { transform: translate3d(4px, 0, 0) rotate(-25deg); }
}
label {
  color: #fff; display: block; font-size: .8rem; font-weight: 300; letter-spacing: .2rem; line-height: 1.5;
  margin: 0 0 1rem; text-transform: uppercase;
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"],
select, textarea {
  appearance: none; transition: border-color .2s, box-shadow .2s, background-color .2s;
  background: transparent; border-radius: 4px; border: 1px solid #fff; color: inherit; display: block; outline: 0;
  padding: 0 1rem; width: 100%;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus,
select:focus, textarea:focus {
  background: rgba(255,255,255,0.075); border-color: #fff; box-shadow: 0 0 0 1px #fff;
}
select option { background: #000; color: #fff; }

/* ========== Buttons ========== */
.button, button, input[type="submit"], input[type="reset"], input[type="button"]{
  appearance: none; transition: background-color .2s, color .2s;
  background-color: transparent; border-radius: 4px; border: 0; box-shadow: inset 0 0 0 1px #fff;
  color: #fff !important; cursor: pointer; display: inline-block; font-size: .8rem; font-weight: 300;
  height: 2.75rem; letter-spacing: .2rem; line-height: 2.75rem; padding: 0 1.25rem 0 1.35rem; text-transform: uppercase;
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
  background-color: rgba(255,255,255,0.075);
}

/* ========== Images (remove dark overlay) ========== */
.image { border-radius: 4px; border: 0; display: inline-block; position: relative; }
.image:before { content: none !important; }
.image img { border-radius: 4px; display: block; }

/* ========== Fullscreen Background ========== */
#bg {
  transform: scale(1.0); -webkit-backface-visibility: hidden;
  position: fixed; inset: 0 0 0 0; width: 100%; height: 100vh; z-index: 1;
}
#bg:before, #bg:after {
  content: ''; display: block; position: absolute; inset: 0 0 0 0; width: 100%; height: 100%;
}
#bg:before {
  transition: background-color 2.5s ease-in-out; transition-delay: .75s;
  background: #000 !important;
}
#bg:after {
  transform: scale(1.125); transition: transform .325s ease-in-out, filter .325s ease-in-out;
  background: #000 !important;
  background-image: none !important;
}
body.is-article-visible #bg:after { transform: scale(1.0825); filter: blur(0); }
body.is-loading #bg:before { background-color: #000; }

/* ========== Wrapper ========== */
#wrapper {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  position: relative; min-height: 100vh; width: 100%; padding: 4rem 2rem; z-index: 3;
}
@media screen and (max-width: 1680px) { #wrapper { padding: 3rem 2rem; } }
@media screen and (max-width: 736px)  { #wrapper { padding: 2rem 1rem; } }
@media screen and (max-width: 480px)  { #wrapper { padding: 1rem; } }

/* ========== Header ========== */
#header {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform .325s, filter .325s, opacity .325s;
  background: #000 !important;
}
#header > * { transition: opacity .325s; position: relative; margin-top: 3.5rem; }
#header > *:before {
  content: ''; position: absolute; top: calc(-3.5rem - 1px); left: calc(50% - 1px); width: 1px; height: calc(3.5rem + 1px);
  background: #fff;
}
#header > :first-child { margin-top: 0; }
#header > :first-child:before { display: none; }

#header .logo {
  width: 7rem; height: 7rem;  margin-top: 1rem; line-height: 5.5rem; border: 5px solid #fff; border-radius: 100%;
  background-image: url("../../images/tsalogoiconwbp.png"); background-position: center; background-size: cover;
  box-shadow: 0 6px 24px rgba(0,0,0,.35) inset, 0 0 0 1px rgba(255,255,255,0.25);
}

#header .content {
  border-style: solid; border-color: #fff; border-top-width: 1px; border-bottom-width: 1px;
  max-width: 100%; background: #000 !important;
}
#header .content .inner {
  transition: max-height .75s ease, padding .75s ease, opacity .325s ease-in-out; transition-delay: .25s;
  padding: 3rem 2rem; max-height: 40rem; overflow: hidden;
}
#header .content p { text-transform: uppercase; letter-spacing: .2rem; font-size: .8rem; line-height: 2; }

#header nav ul {
  display: flex; margin-bottom: 0; padding-left: 0; list-style: none;
  border: 1px solid #fff; border-radius: 4px;
}
#header nav ul li { padding-left: 0; border-left: 1px solid #fff; }
#header nav ul li:first-child { border-left: 0; }
#header nav ul li a {
  display: block; min-width: 7.5rem; height: 2.75rem; line-height: 2.75rem; padding: 0 1.25rem 0 1.45rem;
  text-transform: uppercase; letter-spacing: .2rem; font-size: .8rem; border-bottom: 0;
}
#header nav ul li a:hover { background-color: rgba(255,255,255,0.075); }

/* ========== Main ========== */
#main {
  flex: 1 1 auto; display: flex; align-items: center; justify-content: center; flex-direction: column;
  position: relative; max-width: 100%; z-index: 3;
}
#main article {
  transform: translateY(.25rem); transition: opacity .325s, transform .325s;
  padding: 4.5rem 2.5rem 1.5rem; position: relative; width: 40rem; max-width: 100%;
  background-color: #000;
  border-radius: 4px; opacity: 0;
}
#main article.active { transform: translateY(0); opacity: 1; }

/* ========== Footer ========== */
#footer {
  transition: transform .325s, filter .325s, opacity .325s;
  width: 100%; max-width: 100%; margin-top: 2rem; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1rem;
}
#footer .copyright {
  letter-spacing: .2rem; font-size: .6rem; opacity: .75; margin-bottom: 0; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ========== Lists, Tables, Boxes ========== */
hr { border: 0; border-bottom: 1px solid #fff; margin: 2.75rem 0; }
ul.icons li a { border-radius: 100%; box-shadow: inset 0 0 0 1px #fff; display: inline-block; height: 2.25rem; width: 2.25rem; line-height: 2.25rem; text-align: center; }
ul.icons li a:hover { background-color: rgba(255,255,255,0.075); }
.box { border-radius: 4px; border: 1px solid #fff; margin-bottom: 2rem; padding: 1.5em; }

/* ========== Fancy bits ========== */
.gradient-text{
  background: linear-gradient(90deg, #FFC000, #ff6ec7, #6ea8fe, #7ef7d6, #FFC000);
  -webkit-background-clip: text; background-clip: text; color: transparent !important;
  background-size: 300% 100%; animation: hueSlide 8s linear infinite;
}
@keyframes hueSlide{ 0%{ background-position: 0% 50%; } 100%{ background-position: 100% 50%; } }

.countdown{ display: inline-grid; grid-auto-flow: column; gap: 22px; margin-top: 10px; }
.countdown .unit{ text-align:center; min-width: 70px; }
.countdown .num{ font-size: 1.6rem; font-weight: 700; letter-spacing: .06em; }
.countdown .label{ font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.75); }

.reveal{ opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.reveal.show{ opacity: 1; transform: none; }

#header nav ul li a{ transition: box-shadow .2s ease, transform .2s ease; }
#header nav ul li a:hover{ box-shadow: 0 0 0 1px #fff, 0 0 16px rgba(255,192,0,.35); transform: translateY(-1px); }

a { border-bottom-color: transparent; }
