@import url("./common.css");
@import url("./home.css");
@import url("./cennik.css");
@import url("./eventy.css");
@import url("./kontakt.css");
@import url("./dostepnosc.css");
/* Vars */
:root {
  --body-font-weight: 300;
  --cassiopeia-color-primary: #ed6d1f;
  --cassiopeia-color-link: #ed6d1f;
  --cassiopeia-color-hover: #aa511a;
  --cassiopeia-bg-menu-primary: rgb(0, 0, 0);
  --body-bg: rgb(0, 0, 0);
  --cassiopeia-bg-menu-secondary: rgba(var(--cassiopeia-color-hover), 0.9);
  overflow-x: hidden;
  background-color: black;
}

/* Base */
html {
  scroll-padding-top: 120px;
}

b,
strong {
  font-weight: bold;
}

li:not(.nav-item) {
  list-style-type: square;
}

li::marker {
  color: var(--cassiopeia-color-primary);
}

/* Common */
.skew-button::before,
.skew-button::after {
  content: "";
  transform: skewX(-15deg);
  background: var(--cassiopeia-color-primary);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.button {
  min-width: 175px;
  padding: 10px 25px;
  position: relative;
  font-size: 18px;
  display: inline-block;
  z-index: 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  box-shadow: -8px 8px 22px -8px rgba(0, 0, 0, 1);

  &:hover {
    color: white;
  }
}

.separator {
  position: relative;
}

.skew-button:hover::before,
.skew-button:hover::after {
  background: var(--cassiopeia-color-hover);
}

.color-primary {
  color: var(--cassiopeia-color-primary);
}

.ticket-iframe,
.spacer-3d-iframe {
  display: none;
  position: fixed;
  z-index: 1000;
  background: rgb(0, 0, 0, 0.5);
  width: 100%;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.spacer-3d-iframe {
  flex-direction: column;
  iframe {
    width: 80%;
    height: 80vh;
  }

  .spacer-actions {
    width: 80%;
    display: flex;
    justify-content: flex-end;

    button {
      background: none;
      border: 1px solid white;
      color: white;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      font-weight: bold;
    }
  }
}

#ticket-iframe {
  width: 60%;
  height: 90vh;
}

/* Navbar */
.container-header {
  background-color: unset;
  background-image: unset;

  .navbar-brand {
    max-width: 166px;
  }

  .mod-menu > li:hover::after {
    background: #ed6d1f;
  }

  .mod-menu > li::after {
    opacity: 1;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  top: 0;
  z-index: 500;
  position: sticky;
  transition: 0.25s all;

  &.sticky {
    border-bottom: 1px solid #ed7d1f;
    background: rgba(0, 0, 0, 0.8);
  }

  .grid-child {
    width: fit-content;
    height: fit-content;
    margin: 0;
    align-items: center;

    .nav-item a {
      text-transform: uppercase;
      font-size: 20px;
      line-height: 150%;
      font-weight: 600;
    }
  }

  .mod-list {
    margin-right: 56px;
  }

  .menu-phone,
  .menu-social {
    a {
      font-size: 20px;
      color: white;
      text-decoration: none;
    }
  }

  #mod-custom113 {
    display: flex;
  align-items: center;
  gap: 20px;
  }

  .menu-phone {
    font-weight: 700;
    padding: 10px 15px;
    position: relative;
  }

  .menu-phone::after {
    content: "";
    transform: skewX(-15deg);
    background: var(--cassiopeia-color-primary);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .menu-social {
    display: flex;
    gap: 33px;

    a {
      transition: 0.25s color;
    }

    a:hover {
      color: #ed6d1f;
    }
  }
}

.site-grid {
  overflow: hidden;
  grid-template-areas:
    ".landing landing landing landing."
    ".banner banner banner banner."
    ".s1-left s1-left s1-right s1-right."
    ".s2-left s2-left s2-right s2-right."
    ".s3-left s3-left s3-right s3-right."
    ".s4-left s4-left s4-right s4-right."
    ".s5-left s5-left s5-right s5-right."
    ".s6-left s6-left s6-right s6-right."
    ".s7-left s7-left s7-right s7-right."
    ".s8-left s8-left s8-right s8-right.";
}

.brand-logo {
  max-width: 165px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 1500px) {
  .header #mod-custom113 {
    margin-top: 5px;
  }

  .header .menu-phone {
    padding: 5px 15px;
  }
}

@media screen and (max-width: 1125px) {
  .header .mod-list .nav-item a {
    font-size: 15px;
  }
  .header .menu-phone a {
    font-size: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    gap: 0;
    .menu-social {
      display: none;
    }
    .navbar-brand {
      max-width: 150px;
    }
  }

  #mobilemenuck-1-mobile-bar {
    margin-left: 30px;

    .mobilemenuck-bar-title {
      background: transparent;
      width: 0;
    }

    .mobilemenuck-bar-button {
      font-size: 2.9rem;
    }
  }
}

@media screen and (max-width: 1024px) {
  .header {
    position: sticky !important;
    top: 0;
    background: black;
    .menu-phone {
      margin-right: 33px;
      a {
        font-size: 12px;
      }
    }
  }
  .button {
    font-size: 13px;
    min-width: 125px;
  }
  #ticket-iframe {
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 480px) {
  .header {
    .menu-phone {
      display: none;
    }
  }
}
