/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

hr {
  margin-left: 16.66666667%;
  padding-bottom: 1rem;
  width: 66.66666667%;
  color: black;
  opacity: 1;
}

.italic {
  font-style: italic;
}
/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 8px 0px;
  transition: all 0.2s;
  z-index: 997;
}

.header.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
}

.navbar-brand:focus, .navbar-brand:hover {
    color: var(--nav-hover-color);
}

@media (max-width: 991px) {
  .navbar-nav .nav-link.active {
    color: var(--nav-dropdown-color) !important;
    background-color: var(--nav-hover-color);
    padding: 10px;
    margin: 10px 0;
    /* border-radius: 10px; */
  }
  .navbar-brand img {
    max-height: 7vw !important;
  }
}

.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  background-color: var(--background-color);
}

@media (min-width: 991px) {
  .navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
  }
}

.navbar-brand {
  margin: 0;
}

.navbar-brand p{
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
}

.navbar-brand span{
  color: var(--accent-color);
  font-size: 32px;
}

.navbar-brand img{
  max-height: 36px;
  width: auto;
}

/* Navbar - Desktop */
.navbar {
  padding: 0;
}

.nav-link {
  color: var(--nav-color);
  padding: 18px 15px;
  font-size: 18px;
  font-family: var(--nav-font);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

a.nav-link i,
a.nav-link:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.navbar li:last-child a {
  padding-right: 0;
}

.nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
  color: var(--nav-hover-color);
}

.navbar-container {
  flex-wrap: nowrap !important;
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.navbar-toggler {
  margin-left: calc(var(--bs-gutter-x) * .5);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

.section {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.section.single-page {
  padding: 160px 0 80px 0;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 58px;
  }

  .section.single-page {
    padding: 80px 0;
  }
}

.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section img.background-image {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.section:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 25%);
  position: absolute;
  inset: 0;
  z-index: 3;
}

.section .container {
  position: relative;
  z-index: 3;
}

.section.dark-background h1 {
  color: var(--default-color);
}

.section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-size: cover;
}

.hero-background-vfx {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

#hero-events img {
  min-width: 220px;
  max-width: 320px;
}

#hero-events a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  box-shadow: 0px 0px 5px 0px #000;
  transition: all ease-in-out 0.3s;
}

#hero-events a:hover {
  box-shadow: 0px 0px 10px 5px #000;
}

#hero-events {
  display: flex !important;
  justify-content: space-evenly;
}

#news-container {
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

#news-container {
  text-align: center;
}

#news-container h1 {
  color: var(--accent-color);
  font-weight: bold;
  text-transform: uppercase;
}

@media (max-width: 992px){
  #hero-events {
    flex-direction: column;
    align-items: center;
  }
  #hero-events img {
    width: 25vmax;
  }
  #hero-events a {
    margin-top: 3rem;
  }
  #hero-events a:first-child {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .gallery .gallery-item {
    margin-top: 3rem;
  }
  .gallery .gallery-item:first-child {
    margin-top: 0;
  }
}

.gallery .gallery-item .gallery-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.gallery .gallery-item .gallery-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.gallery .gallery-item .gallery-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.gallery .gallery-item .gallery-info .preview-link,
.portfolio .gallery-item .gallery-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.gallery .gallery-item .gallery-info .preview-link:hover,
.gallery .gallery-item .gallery-info .details-link:hover {
  color: var(--accent-color);
}

.gallery .gallery-item .gallery-info .details-link {
  right: 14px;
  font-size: 28px;
}

.gallery .gallery-item:hover .gallery-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  /* position: relative; */
}

.footer-bottom-line {
 margin-top: 10px
}

.footer-bottom-line a {
  margin-left: 15px
}

.footer-bottom-line a:first-child {
  margin-left: 0px;
}
/*--------------------------------------------------------------
# Scroll to Top
--------------------------------------------------------------*/
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.scroll-top i {
    font-size: 16px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: all 0.4s;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
}

.btn-apply {
  position: absolute;
  z-index: 1;
  font-weight: bold;
  margin-bottom: 50px;
}

.btn.btn-primary {
  border: 2px solid var(--accent-color);
  background: var(--accent-color);
  color: var(--background-color);
}

.btn.btn-primary:hover {
  color: var(--accent-color);
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

.btn.btn-primary-hollow {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: var(--transparency);
}

.btn.btn-primary-hollow:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--accent-color);
}

.btn.btn-secondary {
  border: 2px solid var(--default-color);
  color: var(--default-color);
  background: var(--transparency);
}

.btn.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--accent-color);
}

.btn.btn-twitch {
  background: var(--twitch-main-color);
  color: var(--default-color);
  border: 2px solid var(--twitch-main-color);
}

.btn.btn-twitch:hover {
  color: var(--default-color);
  background: var(--twitch-hover-color);
  border: 2px solid var(--twitch-hover-color);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#loader:before {
  content: "";
  position: fixed;
  background-image: url('../assets/img/sr_shield_color.png');
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10%;
  animation: loading-transparency 1.5s linear infinite;
}

@keyframes loading-transparency {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/*--------------------------------------------------------------
# Twitch
--------------------------------------------------------------*/
#b_twitch_container {
  display: none;
  flex-direction: row;
}

#b_twitch_container {
  position: relative;
  height: 0;
  width: 50%;
  padding-top: 28.125%;
  margin-right: 20px;
}

#b_twitch_container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

#live_container {
  display: none;
}

#b_twitch_container:last-child {
  margin-right: 0px;
}

.twitch-embed>iframe {
  border-radius: 7px;
  box-shadow: 0px 0px 10px 0px #000000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

/*--------------------------------------------------------------
# Linklist
--------------------------------------------------------------*/
.b_linklist {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  text-decoration: none;
  width: 100%;
  margin-top: 10px;
}

.b_linklist > a {
  font-size: 0.9rem;
}