/*
Theme Name: PPCcamp
Theme URI: https://www.ppccamp.sk
Author: Boldpixel
Author URI: https://www.boldpixel.cz
Description: PPCcamp
Version: 0.1.0
Text Domain: ppccamp
*/
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@font-face {
  font-family: "TG Haido Grotesk";
  src: url("./assets/fonts/TGHaidoGrotesk-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TG Haido Grotesk Bold";
  src: url("./assets/fonts/TGHaidoGrotesk-Bold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TG Haido Grotesk Black";
  src: url("./assets/fonts/TGHaidoGrotesk-Black.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

:root {
  --background-color: #FAF4EC;
  --foreground-color: #000;
  --accent-color: #6840FF;
  --secondary-color: #D1FF24;
  --max-width: 1480px;
  --nav-height: 80px;
}

body {
  background: var(--background-color);
  color: var(--foreground-color);
  font-size: 16px;
  font-family: "TG Haido Grotesk";
  font-optical-sizing: auto;
  padding: 0;
  margin: 0;
  position: relative;
}

h1 {
  font-family: "TG Haido Grotesk Bold";
  font-weight: 700;
  line-height: 120%;
}

h2 {
  font-family: "TG Haido Grotesk Bold";
  font-weight: 700;
  line-height: 120%;
}

h3 {
  font-size: 3.6em;
  font-family: "TG Haido Grotesk Bold";
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 768px) {
  h3 {
    font-size: 2.4em;
  }
}

.fancy {
  font-family: "Lora";
  font-weight: 400;
  font-style: italic;
  font-size: 1em;
}

.highlight {
  color: var(--secondary-color);
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  padding: 0.2em 0.4em;
}
.highlight .highlight-svg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-wrapper {
  padding: 1em;
  border-radius: 2rem;
  overflow: hidden;
  min-height: calc(100dvh - 2em);
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  transition: 0.2s;
  width: 100%;
}
@media (max-width: 768px) {
  .hero-wrapper {
    padding: 0;
    border-radius: 0 0 2rem 2rem;
  }
}
.hero-wrapper .hero-content {
  flex: 1;
  background: #0E1114 url("./assets/img/hero-gradient.svg");
  background-size: cover;
  background-position: center calc(50% + var(--bg-y, 0px));
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 1em;
  border-radius: inherit;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 3em;
  position: relative;
}
.hero-wrapper .hero-content::before {
  content: "";
  background-image: url("./assets/img/noise.webp");
  background-position: center;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: lighten;
  opacity: 0.2;
  pointer-events: none;
}
.hero-wrapper .hero-content::after {
  content: "";
  background-image: url("./assets/img/hero-grid.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center calc(50% + var(--grid-y, 0px));
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 350px;
}
.hero-wrapper .hero-content .text {
  max-width: 100%;
  margin: 0 auto;
}
.hero-wrapper .hero-content .text h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 6em;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .hero-wrapper .hero-content .text h1 {
    font-size: 3em;
  }
}
.hero-wrapper .hero-content .text h1 .highlight {
  font-size: 0.7em;
}
.hero-wrapper .hero-content .text h2 {
  max-width: 800px;
  margin: 0 auto;
  font-family: "TG Haido Grotesk" !important;
  font-weight: 400;
  padding-top: 2em;
  font-size: 1.2em;
}

.section-wrapper {
  max-width: var(--max-width);
  margin: 140px auto;
  padding: 1em;
}
@media (max-width: 768px) {
  .section-wrapper {
    margin: 80px 0;
  }
}

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  transition: 0.2s;
  background: var(--background-color);
  z-index: 999;
}
.site-header.hero-nav {
  left: 2em;
  right: 2em;
  top: 2em;
  background: transparent;
}
@media (max-width: 768px) {
  .site-header.hero-nav {
    left: 0;
    right: 0;
    top: 0;
  }
}
.site-header .site-branding img {
  max-height: 80px;
  width: auto;
}
.site-header .hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.site-header .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: all 0.3s ease-in-out;
  transform-origin: left center;
  border-radius: 10px;
}
.site-header .hamburger.is-active span {
  background: #000;
}
.site-header .hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg);
}
.site-header .hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.site-header .hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}
.site-header .menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--background-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.site-header .menu-container.is-open {
  opacity: 1;
  pointer-events: all;
}

.gap-5 {
  gap: 2em;
}

.home .site-header .hamburger span {
  background-color: #000;
}
.home .site-header .hamburger.is-active span {
  background-color: #000 !important;
}

.scrolled .hero-wrapper {
  padding: 0;
}
@media (max-width: 768px) {
  .scrolled .site-header.hero-nav {
    background: var(--background-color) !important;
  }
  .scrolled .site-header {
    background: var(--background-color);
  }
}

.registration-block {
  display: flex;
  flex-direction: row;
  gap: 2em;
}
@media (max-width: 768px) {
  .registration-block {
    flex-direction: column;
  }
}
.registration-block .registration-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 2em;
  flex-basis: 30%;
}
.registration-block .registration-info-blocks .registration-info-block {
  background: #fff;
  border-radius: 2em;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.registration-block .registration-info-blocks .registration-info-block:first-child {
  height: 100%;
}
.registration-block .registration-info-blocks .registration-info-block .button {
  margin-top: 1em;
}
.registration-block .registration-info-blocks .registration-info-block h3 {
  margin: 0;
  font-size: 1.5em;
  font-family: "TG Haido Grotesk Bold";
  padding-bottom: 2em;
}
.registration-block .registration-info-blocks .registration-info-block div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5em;
  align-items: flex-start;
}
.registration-block .registration-info-blocks .registration-info-block div span {
  font-size: 2em;
  font-family: "TG Haido Grotesk Bold";
  line-height: 110%;
}
.registration-block .registration-info-blocks .registration-info-block div span.small {
  padding-top: 0.4em;
  width: 100%;
  display: block;
  font-size: 0.6em;
  font-family: "TG Haido Grotesk";
}
.registration-block .registration-block-ticket {
  flex-basis: 70%;
}
.registration-block .registration-block-ticket .text {
  padding: 2em;
  background: #fff;
  border-radius: 2em 2em 0 0;
  position: relative;
}
.registration-block .registration-block-ticket .text .how {
  display: flex;
  flex-direction: column;
  gap: 2em;
  max-width: 600px;
}
.registration-block .registration-block-ticket .text .how span {
  font-family: "TG Haido Grotesk Black";
  font-size: 1.4em;
  min-width: 34px;
  margin-top: 2px;
}
.registration-block .registration-block-ticket .text .how .how-item {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
.registration-block .registration-block-ticket .text .how .how-item div {
  display: flex;
  flex-direction: column;
}
.registration-block .registration-block-ticket .text .how .how-item div p:first-child {
  font-family: "TG Haido Grotesk Bold";
  margin: 0;
  font-size: 1.4em;
}
.registration-block .registration-block-ticket .text .how .how-item div p:last-child {
  margin: 0;
}
.registration-block .registration-block-ticket .text .sticker {
  position: absolute;
  top: 2em;
  right: 3em;
  width: 250px;
  height: auto;
}
@media (max-width: 768px) {
  .registration-block .registration-block-ticket .text .sticker {
    top: -1em;
    right: -1em;
    width: 120px;
  }
}
.registration-block .registration-block-ticket .cta {
  background: var(--accent-color);
  width: 100%;
  border-radius: 0 0 2em 2em;
  color: #fff;
  text-decoration: none;
  max-width: 100%;
  display: flex;
  padding: 1.4em;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6em;
  font-family: "TG Haido Grotesk Bold";
  position: relative;
}
@media (max-width: 768px) {
  .registration-block .registration-block-ticket .cta {
    padding: 1em;
    flex-direction: column;
    text-align: center;
    line-height: 120%;
    gap: 1em;
  }
}
.registration-block .registration-block-ticket .cta::after {
  content: "";
  background-image: url("./assets/img/ticket-divider.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -1px;
  width: 101%;
  height: 40px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}
.registration-block .registration-block-ticket .cta .price {
  font-size: 1.6em;
  text-wrap: nowrap;
}
.registration-block .registration-block-ticket .cta .small {
  font-family: "TG Haido Grotesk";
  font-size: 0.3em;
}
.registration-block .registration-block-ticket h3 {
  margin: 0;
  font-size: 2em;
  font-family: "TG Haido Grotesk Bold";
  padding-bottom: 1em;
}

.interesting-points-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1em;
}
@media (max-width: 768px) {
  .interesting-points-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.interesting-points-wrapper .interesting-points {
  max-width: 50%;
}
@media (max-width: 768px) {
  .interesting-points-wrapper .interesting-points {
    max-width: 100%;
  }
}
.interesting-points-wrapper .interesting-points .headline span {
  display: block;
  width: 100%;
}
.interesting-points-wrapper .interesting-points .points {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .interesting-points-wrapper .interesting-points .points {
    gap: 1em;
  }
}
.interesting-points-wrapper .interesting-points .points span {
  background: #fff;
  padding: 1em;
  border-radius: 1em;
  display: block;
  text-align: left;
  font-size: 1.4em;
  font-family: "TG Haido Grotesk Bold";
  line-height: 130%;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}
.interesting-points-wrapper .interesting-points .points span:before {
  content: "";
  background-image: url("./assets/img/point.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: block;
  margin-top: 0.2em;
  flex-shrink: 0;
}
.interesting-points-wrapper .stickers-wrapper {
  position: relative;
  max-width: 600px;
  width: 100%;
  padding: 0;
  aspect-ratio: 730/482;
  flex-shrink: 0;
  margin: auto;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .interesting-points-wrapper .stickers-wrapper {
    margin-bottom: 0;
    margin-top: 2em;
  }
}
.interesting-points-wrapper .stickers-wrapper .sticker {
  position: absolute;
}
.interesting-points-wrapper .stickers-wrapper .sticker img {
  width: 100%;
  height: auto;
  display: block;
}
.interesting-points-wrapper .stickers-wrapper .sticker.sticker-1 {
  top: 10.37%;
  left: 0%;
  width: 35.75%;
  z-index: 2;
  transform: rotate(5deg);
}
.interesting-points-wrapper .stickers-wrapper .sticker.sticker-2 {
  top: 0%;
  left: 31.5%;
  width: 33.42%;
  z-index: 1;
  transform: rotate(-6deg);
}
.interesting-points-wrapper .stickers-wrapper .sticker.sticker-3 {
  top: 0%;
  left: 61.78%;
  width: 34.1%;
  z-index: 3;
  transform: rotate(5deg);
}
.interesting-points-wrapper .stickers-wrapper .sticker.sticker-4 {
  top: 41.49%;
  left: 28.76%;
  width: 48.63%;
  z-index: 4;
  transform: rotate(6deg);
}
.interesting-points-wrapper .stickers-wrapper .sticker.sticker-5 {
  top: 62.24%;
  left: 4.1%;
  width: 36.84%;
  z-index: 5;
  transform: rotate(-6deg);
}
.interesting-points-wrapper .stickers-wrapper .sticker.sticker-6 {
  top: 72.61%;
  left: 47.94%;
  width: 52.05%;
  z-index: 6;
  transform: rotate(-5deg);
}

.blog-section .posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
@media (max-width: 768px) {
  .blog-section .posts {
    grid-template-columns: 1fr;
  }
}
.blog-section .posts a {
  max-width: 100%;
  text-decoration: none;
  background: #fff;
  border-radius: 2em;
  padding: 1em;
}
.blog-section .posts a .post-image {
  position: relative;
  overflow: hidden;
  border-radius: 1em;
  max-height: 300px;
  transition: 0.2s;
}
.blog-section .posts a .post-image img {
  width: 100%;
  height: auto;
}
.blog-section .posts a .post-image .arrow {
  position: absolute;
  bottom: -3em;
  right: 1em;
  height: 46px;
  width: 46px;
  opacity: 0;
  transition: 0.3s;
}
.blog-section .posts a .post-text {
  color: #000;
  padding: 1em;
}
.blog-section .posts a .post-text h4 {
  margin: 0;
  font-size: 1.6em;
  font-family: "TG Haido Grotesk Bold";
  line-height: 120%;
}
.blog-section .posts a .post-text p {
  padding-top: 0.5em;
  margin: 0;
  font-size: 1em;
  font-family: "TG Haido Grotesk";
}
.blog-section .posts a:hover .post-image {
  max-height: 350px;
}
.blog-section .posts a:hover .arrow {
  opacity: 1;
  bottom: 1em;
}
.blog-section {
  padding-bottom: 150px;
}

.footer-wrapper {
  padding-top: 5em;
}
.footer-wrapper footer {
  margin: 0 2em;
  margin-bottom: -15px;
  padding: 0 4em;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  background: var(--accent-color);
  min-height: 100px;
}
@media (max-width: 1024px) {
  .footer-wrapper footer {
    min-height: 150px;
  }
}
@media (max-width: 768px) {
  .footer-wrapper footer {
    justify-content: flex-start;
    height: 100%;
    padding: 1em;
  }
}
.footer-wrapper footer .footer-bg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  right: 0;
  z-index: -1;
}
.footer-wrapper footer .footer-bg .footer-bg-mobile {
  display: none;
}
@media (max-width: 768px) {
  .footer-wrapper footer .footer-bg .footer-bg-desktop {
    display: none;
  }
  .footer-wrapper footer .footer-bg .footer-bg-mobile {
    display: block;
  }
}
.footer-wrapper footer .footer-bg img {
  width: 100%;
  display: block;
}
.footer-wrapper footer .site-footer-branding {
  position: absolute;
  left: 2em;
  top: -5em;
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  gap: 2em;
}
@media (max-width: 1024px) {
  .footer-wrapper footer .site-footer-branding {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .footer-wrapper footer .site-footer-branding {
    left: 1em;
    top: -7em;
  }
}
.footer-wrapper footer .site-footer-branding .custom-logo {
  width: 150px;
  height: auto;
  transform: rotate(-15deg);
}
.footer-wrapper footer .site-footer-branding .site-info {
  font-size: 0.8em;
  color: #fff;
}
.footer-wrapper footer .footer-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4em;
  color: #fff;
  margin-top: -5em;
  padding-bottom: 2em;
}
@media (max-width: 768px) {
  .footer-wrapper footer .footer-content {
    padding-top: 10em;
    flex-direction: column;
    gap: 1em;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.footer-wrapper footer .footer-content h4 {
  margin: 0;
  font-size: 1.4em;
  font-family: "TG Haido Grotesk Bold";
  padding-bottom: 1em;
}
.footer-wrapper footer .footer-content a {
  display: block;
  width: 100%;
  color: #fff;
}
.footer-wrapper footer .footer-content p {
  margin: 0;
}
.footer-wrapper footer .footer-content .social {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}
.footer-wrapper footer .footer-content .social a img {
  transition: 0.2s;
}
.footer-wrapper footer .footer-content .social a:hover img {
  opacity: 0.8;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding: 1em 2em;
  gap: 0.363636em;
  background: transparent;
  border: none;
  border-radius: 6.25rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.04545;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  word-break: break-word;
}
.button span {
  font-size: 18px !important;
}
.button__label {
  position: relative;
  margin-top: -7px;
  text-align: center;
  transition: color 50ms ease-in-out;
}
.button__flair {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.button__flair:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 170%;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.button--stroke:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0.125rem solid #fff;
  border-radius: 6.25rem;
  pointer-events: none;
}
.button--stroke .button__flair {
  transform: scale(0);
  transform-origin: 0 0;
  will-change: transform;
}
@media (hover: hover) {
  .button--stroke:hover {
    color: #000;
    text-decoration: none;
  }
  .button--stroke:hover .button__label {
    transition: color 0.15s ease-in-out;
  }
}
.button.dark {
  color: var(--accent-color);
}
.button.dark .button__flair:before {
  background-color: var(--accent-color);
}
.button.dark:after {
  border: 0.125rem solid var(--accent-color);
}
.button.dark:hover {
  color: #fff;
}
.button.text {
  color: #fff;
  text-decoration: none;
  position: relative;
  border-radius: 0;
  padding: 0;
}
.button.text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 0.125rem solid #fff;
  transition: 0.1s;
}
.button.text:hover::after {
  border-bottom: 0 solid #fff;
}/*# sourceMappingURL=style.css.map */