/* Misc BEGIN */

html {
  scroll-behavior: smooth;
  background: url(../images/bg-texture.jpg);
}

.hero { 
  padding: 6rem 0 3rem; 
}

.section { 
  padding: 3rem 0; 
}

.section .button { 
  min-width: 260px; 
}

.divider {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.divider img {
  max-width: 280px;
}

/* Misc END */

/* Typography BEGIN */

@font-face {
    font-family: 'toombold-italic';
    src: url('../fonts/toom-bold-italic-webfont.woff2') format('woff2'),
         url('../fonts/toom-bold-italic-webfont.woff') format('woff'),
         url('../fonts/toom-bold-italic-webfont.svg#toombold-italic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v24-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/lato-v24-latin-italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-v24-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/lato-v24-latin-700italic.woff2') format('woff2');
}

body {
  font-family: 'Lato';
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  font-family: 'toombold-italic';
  color: #1d1d1d;
  text-transform: lowercase;
}

p {
  font-size: 18px;
}

/* Typography END */

/* Buttons BEGIN */

.button, .button-primary {
  font-family: 'toombold-italic';
  font-size: 18px;
  padding: 25px 15px 23px 15px;
  display: inline;
    border-radius: 5px;
}

/* Buttons END */

/* Header BEGIN */

header {
  text-align: center;
}

header h1 {
  font-size: 70px;
  margin-top: 40px
}

@media (max-width: 720px) {
  header h1 {
    font-size: 40px;
  }
}

@media (max-width: 400px) {
  header h1 {
    font-size: 30px;
  }
}

nav {
  font-family: 'toombold-italic';
  font-size: 18px;
  color: #1d1d1d;
}

nav a { 
  margin-left: 1rem;
  text-decoration: none;
}

nav a.active { 
  text-decoration: underline; 
}

/* Header END */

/* Intro BEGIN */

.intro-wrap {
  display: flex;
  align-items: center;
}

@media (max-width: 720px) {
  .intro-wrap {
    display: block;
  }
}

.intro-headline {
  font-family: 'toombold-italic';
  font-size: 20px;
  color: #1d1d1d;
}

.intro-text {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.intro-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.intro-text h2 {
  position: relative;
  display: inline-block;
  padding-right: 105px;
}

.intro-text h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100px;
  height: 80px;
  background-image: url(../images/rooster.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.scorpion h2 {
  padding-right: 115px;
}

.scorpion h2::after {
  background-image: url(../images/skorpion.svg);
}

/* Intro END */

/* Slider BEGIN */

.home-slider h2 {
  position: relative;
  display: inline-block;
  padding-right: 120px;
}

.slider-4 h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100px;
  height: 300px;
  background-image: url(../images/dailyskull.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.js-home-slider .slick-slide { 
  padding: 0 .5rem; 
}

.js-home-slider .home-slide img {
  display:block; 
  width:100%; 
  height:auto; 
  border-radius:5px; 
  object-fit:cover;
}

.slick-prev:before, .slick-next:before { 
  opacity: .75; 
}

.js-home-slider .slick-list { 
  margin: 0 -.5rem; 
}

.slick-prev:before,
.slick-next:before { 
  content: none; 
}

.slick-prev,
.slick-next {
  position: static !important;
  transform: none !important;
  margin: 0 10px;
}

.slick-arrow {
  display: inline-block;
}

.js-home-slider {
  text-align: center;
  margin-bottom: 2rem;
}

.js-home-slider .slick-prev,
.js-home-slider .slick-next {
  vertical-align: middle;
}

.slider-nav {
  text-align: center;
  margin-top: 1rem;
}

.slider-nav .custom-arrow {
  background: transparent;
  border: none;
  cursor: pointer;
  margin: 0 50px;
}

.slider-nav .custom-arrow img {
  width: 90px;
  height: auto;
  display: inline-block;
}


/* Slider END */

/* Gallery BEGIN */

.styles-gallery .row:not(:first-child) {
  margin-bottom: 20px;
}

.styles-item {
  margin-bottom: 1.2rem;
}

.styles-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.styles-item figcaption {
  font-size: 0.85rem;
  color: #666;
  margin-top: .4rem;
}

.styles-gallery h2 {
  position: relative;
  display: inline-block;
  padding-right: 105px;
}

.styles-gallery h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100px;
  height: 80px;
  background-image: url(../images/flame.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

/* Gallery END */

/* Contact BEGIN */

.contact {
  text-align: center;
}

.contact p {
  margin-bottom: 40px;
}

/* Contact END */

/* Footer BEGIN */

footer {
  border-top: 3px dashed #1d1d1d; 
  padding: 0;  
  margin-top: 50px;
} 

footer a {
  font-size: 18px;
    font-family: 'toombold-italic';
    text-decoration: none;
}

/* Footer END */

/* Lightbox BEGIN */

.lb {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9999;
}
.lb.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
}
.lb__dialog {
  position: relative;
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  margin: 0 1rem;
}
.lb__img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.lb__cap {
  margin-top: .6rem;
  color: #eee;
  text-align: center;
  font-size: .95rem;
}
.lb__close {
  position: absolute;
  top: -.75rem;
  right: -.75rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.lb__close:hover { 
  background: rgba(0,0,0,.8); 
}

.lb--lock, .lb--lock body { 
  overflow: hidden; 
}

@media (prefers-reduced-motion: reduce) {
  .lb { 
    transition: none; 
  }
}

/* Lightbox END */