/*CSS RESET*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
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;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
/***********/

:root {
  --font-color: #ffe8c8;
  --accent-color: #df7443;
}

/* Fonts */
@font-face {
  font-family: "Tahoma";
  src: url("./fonts/Tahoma.woff2") format("woff2"),
    url("./fonts/Tahoma.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tahoma";
  src: url("./fonts/Tahoma-Bold.woff2") format("woff2"),
    url("./fonts/Tahoma-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tahoma";
  src: url("./fonts/Tahoma.woff2") format("woff2"),
    url("Tahoma.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tahoma";
  src: url("./fonts/Tahoma-Bold.woff2") format("woff2"),
    url("./fonts/Tahoma-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* End Fonts */

html,
body {
  scroll-behavior: smooth;
}

div,
p,
a {
  padding: initial;
  margin: initial;
}

body {
  background: black;
  color: var(--font-color);
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  font-family: "Tahoma", sans-serif;
  /* font-weight: bold; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

body.bg-image {
  background-image: url("img/bg.webp");
  background-size: cover;
}

/* Mobile */
@media only screen and (max-width: 1000px) {
  body.bg-image {
    background-image: url("img/bg-mobile.webp");
    background-position: bottom;
  }
}

body::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -10;
  background: linear-gradient(0deg, #000000 0%, transparent 50%);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/***************/

header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  text-align: center;
  position: fixed;
  bottom: 5vh;
  /* left: 50%;
  transform: translateX(-50%); */
  padding-right: 3vw;
  width: 100%;
}

.content-wrapper {
  position: fixed;
  bottom: 5vh;
  left: 3vw;
  margin: 0.2em 0.5em;
  padding: 0.25em;
  text-align: center;
}

.content-wrapper > * {
  margin: 1.2rem;
}

.text-shadow {
  text-shadow: 0 0 2px black;
}

/* Mobile */
@media only screen and (max-width: 1000px) {
  header {
    align-items: center;
    padding: unset;
  }
  header::after {
    transform: scaleY(-1);
  }
  .content-wrapper {
    position: initial;
  }
}

body nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

header img,
header svg {
  max-width: 200px;
  margin: 1em;
  fill: var(--font-color);
}

nav {
  font-size: 1.75em;
}

nav > a {
  text-transform: uppercase;
  margin: 0.2em 0.5em;
  display: inline-block;
}

.hover--draw_line {
  position: relative;
}

.hover--draw_line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: currentColor;
  transition: width 300ms ease-out;
}

.hover--draw_line:hover::after {
  width: 100%;
}

.socials {
  display: flex;
  gap: 0.5em;
}

.socials a {
  font-size: calc(0.65em + 0.25vw);
  border-radius: 100%;
  padding: 1em;
  background: currentColor;
  color: black;
  width: 1.75em;
  height: 1.75em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.anim-btn {
  border-radius: 15px;
  border: none;
  padding: 0.5em 1em;
}

.socials a,
.anim-btn {
  background: transparent;
  color: currentColor;
  box-shadow: var(--accent-color) inset 0px 0px 0px 2px;
  transition: box-shadow 200ms ease-out;
}

.socials a:hover,
.anim-btn:hover {
  box-shadow: var(--accent-color) inset 0px 0px 0px 50px;
}

.big-btn {
  font-weight: 800;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--accent-color) inset 0px 0px 0px 2px;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: unset;
  height: 100%;
  object-fit: cover;
  z-index: -11;
}

.overlay {
  display: none;
}

.overlay {
  flex-direction: column;
  position: relative;
  max-height: 80vh;
  max-width: 90vw;
  width: 800px;
  background: #000000c9;
  padding: calc(1em + 0.5vw);
}

body[overlay="tour"] .overlay#tour,
body[overlay="contact"] .overlay#contact {
  display: flex;
}

.x {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2em;
  transform: translate(50%, -50%);
  cursor: pointer;
  padding: 1em;
}
.x i {
  pointer-events: none;
}

.overlay-bg {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

body[overlay] .overlay-bg {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  background: black;
  opacity: 0.75;
  cursor: pointer;
  z-index: -1;
}

.seated-events-table div:last-child {
  display: none;
}

/* SECTIONS */
h2,
h3 {
  text-transform: uppercase;
  display: block;
  font-size: 2em;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1.5em;
}

.seated-events-table {
  padding-top: 1em;
}

.contactlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.contactlist > a {
  width: 300px;
  border: 1px solid;
  padding: 0.5em;
  flex-grow: 1;
  padding: 1em;
  margin: 1em 0.5em;
  text-align: center;
}
