@charset "UTF-8";
/* CSS Document */

/* Global Styles */
@font-face {
  font-family: Sacerd Hertz;
  src: url("/assets/Sacred Hertz.otf");
}
:root {
  --mtb-angle: -100px;
}
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
  font-family: "Roboto", sans-serif;
}

img {
  max-width: 100%;
}

.font-display {
  font-family: "Sacerd Hertz";
}

.text-lg {
  font-size: 2.5rem;
}

.text-xl {
  font-size: 3rem;
}

.angle-top {
  --angle: 100px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--angle)));
}

.angle-bottom {
  --angle: 100px;
  clip-path: polygon(0 0, 100% var(--angle), 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--angle));
  padding-top: calc(var(--angle) + 4px);
}

.hero {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.5) 50%
    ),
    url("/assets/intro.webp");
  background-size: cover;
  background-attachment: fixed;
  background-position: right center;
}

.text-outline {
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}

.watch {
  background-image: url("/assets/crowd.webp");
  background-size: cover;
  background-position: top 25% center;
  background-attachment: fixed;
  min-height: 200px;
  margin-top: var(--mtb-angle);
  padding-top: calc(-1 * var(--mtb-angle) + 1rem);
}

.contact-section {
  background-image: url("/assets/sign.webp");
  background-size: cover;
  background-position: top 20% center;
  padding: 2rem 0;
}

.logo {
  height: 100vh;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  max-width: 100%;
}

.navbar {
  font-family: Sacerd Hertz;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 992px) {
  .navbar-collapse {
    background-color: transparent !important;
  }
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-weight: 700;
  font-style: italic;
  font-size: 35px;
}

.nav-link {
  position: relative;
  color: #ffd91b !important;
  text-shadow: -1px 1px 0 #ff0216, 1px 1px 0 #ff0216, 1px -1px 0 #ff0216,
    -1px -1px 0 #ff0216;
  margin-left: 35px;
}

.nav-link::after {
  content: "";
  height: 2px;
  width: 0%;
  background-color: orangered;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s;
}

.nav-link:hover::after {
  width: 100%;
}

.shows {
  font-family: Sacerd Hertz;
  text-align: center;
  color: #ffffff;
  font-size: 60px;
}

.mtb-paragraph {
  clip-path: polygon(
    0 -100%,
    100% -100%,
    100% calc(100% - 75px),
    30% 100%,
    0 calc(100% + var(--mtb-angle))
  );
  z-index: 10;
}

.mtb-content {
  padding: 100px 0;
}

.contact-btn {
  font-family: Sacerd Hertz;
  font-size: 30px;
  color: #ff4c4c;
  border-color: currentColor;
  border-width: 5px;
  border-style: solid;
  display: inline-block;
  border-radius: 8px;
  padding: 8px 10px;
  transition: color ease-in 0.15s;
}

.contact-btn:hover {
  color: #aa2d2d;
  text-decoration: none;
}
