@font-face {
  font-family: "Caviar";
  src: url("Caviar_Dreams_Bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("OpenSans-Regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OpenSans";
  src: url("OpenSans-Bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Compact SVG animation for svg-elem-* paths */
[class^=svg-elem-] {
  fill: transparent;
  -webkit-animation: animate-svg-fill 1s ease-in both;
  animation: animate-svg-fill 1s ease-in both;
}

.svg-elem-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.svg-elem-2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.svg-elem-3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.svg-elem-4 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.svg-elem-5 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.svg-elem-6 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.svg-elem-7 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.svg-elem-8 {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.svg-elem-9 {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.svg-elem-10 {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.svg-elem-11 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.svg-elem-12 {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

@-webkit-keyframes animate-svg-fill {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes scroll-blink {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
body {
  background-color: #010101;
  color: #fff;
  font-family: "OpenSans", sans-serif;
}

#container {
  width: 100%;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  padding: 0 2rem 4rem 2rem;
}
#container #intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  height: calc(100vh - 10rem);
  position: relative;
  transition: all 500ms linear;
}
#container #intro svg {
  max-height: calc(100vh - 15rem);
  width: 100%;
  transition: all 800ms linear;
}
#container #intro .intro-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 900px;
  padding: 0 1rem;
}
#container #intro .headline {
  font: 700 clamp(1.8rem, 3.5vw, 2.6rem) "Caviar", sans-serif;
  line-height: 1.05;
  cursor: default;
  text-align: center;
  display: block;
  margin: 0 auto;
}
#container #intro .scroll-down {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  opacity: 0.95;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
}
#container #intro .scroll-down::after {
  content: "";
  border: solid #e52427;
  border-width: 0 7px 7px 0;
  display: inline-block;
  padding: 18px;
  transition: all 200ms linear;
  opacity: 1;
  transform: rotate(45deg);
  animation: scroll-blink 1.4s infinite;
}
#container #intro .scroll-down:hover::after {
  border-color: #ff0004;
  transform: rotate(45deg) scale(1.1);
}
@media only screen and (max-width: 500px) {
  #container #intro {
    height: auto;
    min-height: calc(100vh - 8rem);
    padding: 2rem 0;
  }
  #container #intro svg {
    max-height: calc(100vh - 14rem);
    transform: scale(1);
  }
  #container #intro .headline {
    font-size: 1.8rem;
  }
  #container #intro .scroll-down {
    width: 42px;
    height: 42px;
  }
}
#container #intro.scrolled {
  opacity: 0.02;
  pointer-events: none;
  z-index: -1;
}
#container #intro.scrolled svg {
  max-height: 100vh;
}
#container #event-block {
  width: 100%;
  padding: 4rem 1.5rem 6rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgb(18, 18, 18);
}
#container #event-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(20deg, #1e1e1e, #141414, #5b5b5b);
  background-size: 180% 180%;
  animation: gradient-animation 3s ease infinite;
  z-index: -1;
  opacity: 0.3;
}
#container #event-block.visible {
  opacity: 1;
  transform: translateY(0);
}
#container .event-card__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
#container .event-card__content .eyebrow {
  color: #aaa;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
#container #event-block h2 {
  font-size: 1.8rem;
  line-height: 1.05;
  margin-bottom: 1rem;
}
#container .event-date {
  color: #e52427;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
#container .event-text {
  color: #ddd;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 2rem;
}
#container .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #e52427;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 200ms ease, background 200ms ease;
}
#container .cta-button:hover {
  transform: translateY(-2px);
  background: #640c0e;
}
#container .shop-anchor {
  display: block;
  height: 1px;
  visibility: hidden;
}
#container footer {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#container footer .footer {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#container footer .footer ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
}
#container footer .footer ul li a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
#container footer .footer ul li a:hover {
  text-decoration: underline;
}
#container .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
#container .modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
#container .modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
#container .modal .modal-content {
  position: relative;
  background-color: #010101;
  border: 1px solid #e52427;
  width: 95%;
  height: 90vh;
  overflow-y: auto;
  padding: 40px;
  z-index: 1001;
  box-shadow: 0 0 20px rgba(229, 36, 39, 0.3);
}
@media (max-width: 768px) {
  #container .modal .modal-content {
    max-width: 95%;
    padding: 30px 20px;
  }
}
#container .modal .modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #e52427;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 200ms ease;
}
#container .modal .modal-close:hover {
  background-color: #640c0e;
}
#container .modal .modal-body {
  color: #fff;
}
#container .modal .modal-body h1, #container .modal .modal-body h2, #container .modal .modal-body h3, #container .modal .modal-body h4, #container .modal .modal-body h5, #container .modal .modal-body h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #fff;
}
#container .modal .modal-body h1 {
  font-size: 28px;
  margin-bottom: 20px;
}
#container .modal .modal-body h2 {
  font-size: 22px;
  color: #e52427;
}
#container .modal .modal-body h3 {
  font-size: 18px;
}
#container .modal .modal-body h4 {
  font-size: 16px;
}
#container .modal .modal-body p {
  margin-bottom: 15px;
  line-height: 1.6;
}
#container .modal .modal-body ul, #container .modal .modal-body ol {
  margin-left: 20px;
  margin-bottom: 15px;
}
#container .modal .modal-body ul li, #container .modal .modal-body ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
#container .modal .modal-body a {
  color: #e52427;
  text-decoration: none;
}
#container .modal .modal-body a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=styles.css.map */
