html {
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: "IBM Plex Sans", sans-serif;
  margin: 0;
  padding: 0;
}

.hero {
  height: 100vh;
  background-image: url(/assets/images/cards-1.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom;
  position: relative;
  padding-inline: 1rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1320px;
  margin-inline: 1rem;
}
.hero__title {
  font-size: 5rem;
  margin-top: 0;
  font-family: "Special Elite", system-ui;
}
@media (max-width: 700px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__subtitle {
  font-weight: 400;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-family: "Special Elite", system-ui;
}
.hero__cta {
  color: #000000;
  font-weight: 600;
  background-color: rgb(199, 59, 200);
  text-decoration: none;
  padding: 0.5rem 1.125rem;
  border-radius: 6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 200ms;
}
.hero__cta:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.hero__cta--primary::after {
  content: url(../images/icons/ticket-solid.svg);
  width: 20px;
  display: inline-block;
  line-height: 0;
  transform: rotate(-30deg);
}
.hero__cta--secondary {
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  position: relative;
}
.hero__cta--secondary:hover {
  background-color: rgb(199, 59, 200);
}
.hero__cta--secondary::after {
  content: url(../images/icons/chevron-down-solid.svg);
  width: 1rem;
  display: inline-block;
  line-height: 0;
  position: absolute;
  top: 110%;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 5rem 0;
  padding: 0 1rem;
  max-width: 1320px;
  display: flex;
  margin: 3rem auto;
}

.events-wrapper {
  padding: 0 1rem;
  max-width: 1320px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.events-title {
  font-size: 3rem;
  margin-top: 3rem;
  text-align: center;
}

.events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .events {
    display: flex;
    flex-wrap: wrap;
  }
}

.event {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  color: #ffffff;
  text-decoration: none;
  position: relative;
}
@media (max-width: 700px) {
  .event {
    flex: 1 1 33%;
  }
}
@media (max-width: 500px) {
  .event {
    flex: 1 1 100%;
  }
}
.event:before {
  content: "";
  background: rgb(2, 0, 36);
  background: linear-gradient(180deg, rgba(2, 0, 36, 0.7456232493) 0%, rgb(199, 59, 200) 100%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 400ms;
}
.event:hover::before {
  opacity: 0.3;
}
.event.inactive-tickets::after {
  content: "Ulaznice uskoro u prodaji!";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  background-color: rgba(199, 59, 200, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 400ms;
  z-index: 10;
  font-size: 1.25rem;
  padding: 2rem;
  text-align: center;
}
.event.inactive-tickets:hover::before {
  background: linear-gradient(180deg, rgba(2, 0, 36, 0.7456232493) 0%, rgb(199, 59, 200) 100%);
}
.event.inactive-tickets:hover::after {
  opacity: 1;
  visibility: visible;
}
.event img {
  max-height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event__content {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  gap: 1rem;
  z-index: 10;
}
.event__title {
  margin: 0;
}
.event__time {
  display: flex;
  gap: 0.5rem;
}
.event__time span {
  padding: 0.25rem 0.75rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
}
.event__date {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: #000000;
  padding: 1rem;
  z-index: 2;
}

.footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 2rem;
  padding: 1rem 1rem 2rem;
  font-size: 0.75rem;
  text-align: center;
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.footer__social-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(90%) sepia(100%) saturate(0%) hue-rotate(321deg) brightness(105%) contrast(102%);
}/*# sourceMappingURL=style.css.map */