@charset "utf-8";

:root {
  --widthMax: 1280px;
  --widthUsko: 720px;
  --bgPage: hsl(40 10% 95%);
  --bgPageMediumDark: hsl(40 10% 90%);
  --bgPageDark: hsl(40 10% 75%);
  --bgPageDark2: hsl(40 10% 35%);
  --accent: hsl(191 100% 45%);
  --accent2: hsl(91 50% 40%);
  --accent3: hsl(43 94% 54%);

  --shadow-color: 40deg 10% 70%;
  --shadow-elevation-low:
    0px 0.3px 0.3px hsl(var(--shadow-color) / 0.34),
    0px 0.5px 0.6px -1.2px hsl(var(--shadow-color) / 0.34),
    0px 1.2px 1.3px -2.5px hsl(var(--shadow-color) / 0.34);
  --shadow-elevation-medium:
    0px 0.3px 0.3px hsl(var(--shadow-color) / 0.36),
    0px 1px 1.1px -0.8px hsl(var(--shadow-color) / 0.36),
    0px 2.5px 2.8px -1.7px hsl(var(--shadow-color) / 0.36),
    0px 6px 6.8px -2.5px hsl(var(--shadow-color) / 0.36);
  --shadow-elevation-high:
    0px 0.3px 0.3px hsl(var(--shadow-color) / 0.34),
    0px 1.7px 1.9px -0.4px hsl(var(--shadow-color) / 0.34),
    0px 3.3px 3.7px -0.7px hsl(var(--shadow-color) / 0.34),
    0px 5.3px 6px -1.1px hsl(var(--shadow-color) / 0.34),
    0px 8.5px 9.6px -1.4px hsl(var(--shadow-color) / 0.34),
    0px 13.3px 15px -1.8px hsl(var(--shadow-color) / 0.34),
    0px 20.3px 22.8px -2.1px hsl(var(--shadow-color) / 0.34),
    0px 29.9px 33.6px -2.5px hsl(var(--shadow-color) / 0.34);

  --wSpace: 20px;

}

html {
  box-sizing: border-box;
  font-size: 16px;
  scrollbar-gutter: stable;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}


body {
  background-color: var(--bgPage);
  font-family: "Barlow", sans-serif;
  padding: 0;
  margin: 0;
  background-image: url(/images/bg.png);
  background-size: 400px auto;
  background-attachment: scroll;
  padding-top: 60px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow Condensed", sans-serif;
  color: black;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

h1 {
  font-size: 1.7rem;
  text-shadow: 1px 1px 0 #fff;
}

h2 {
  font-size: 1.5rem;
  text-shadow: 1px 1px 0 #fff;

}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 1.2rem;
  font-weight: 300;
}

p {
  color: black;
  font-size: 1.0em;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.9rem;
  text-align: left;
}

.smallprint {
  font-size: 0.8em;
  opacity: 0.8;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

li {
  padding: 0.3rem 0;
}

strong {
  font-weight: 500;
  filter: brightness(70%);
}

.onlyDesk {
  display: flex;
}

.onlyMob {
  display: none !important;
}

.header {
  width: 100%;
  margin: 0 auto;
  background-color: white;
  box-shadow: var(--shadow-elevation-medium);
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  z-index: 1000;
}

.headerBox {
  width: 100%;
  height: 60px;
  max-width: var(--widthMax);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headerLogo a {
  text-decoration: none;
  color: black;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}

.hamburger {
  background-color: white;
  border: none;
  background-image: url(/images/icons/menudark.svg);
  background-size: 32px auto;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hamburger:hover {
  background-size: 32px auto;
  box-shadow: var(--shadow-elevation-high);
  transform: scale(1.0);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -350px;
  width: auto;
  height: 100vh;
  background: white;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 2000;

  overflow-y: auto;
  /* 👈 enables scrolling */
  -webkit-overflow-scrolling: touch;
  /* 👈 iOS smooth scroll */
}

.menuLogo {
  padding: 20px 20px 0 20px;
}

.menuLogo a {
  text-decoration: none;
  color: black;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-inner {
  height: auto;
  overflow-y: auto;
  /* independent scroll */
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-inner a {
  background-color: var(--accent);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  display: block;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: var(--shadow-elevation-medium);
  text-decoration: none;
  flex: 1 1 auto;
  transition: background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  text-shadow: 0.5px 0.5px 2px hsla(0, 0%, 0%, 0.5);
}

.searchBox {
  width: 100%;
  background-color: var(--bgPageMediumDark);
  border: none;
  border-radius: 8px;
  box-shadow: inset 0px 1px 6px rgba(0, 0, 0, 0.3);
  color: black;
  font-size: 1.0em;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  padding: 10px;
  margin: 20px 0;
}

/* ----------------------------------- */
/* OVERLAY WHEN MENU IS OPEN           */
/* ----------------------------------- */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 10, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 1500;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-clip: padding-box;
}

/* Prevent page scrolling when menu open */
body.menu-open {
  overflow: hidden;
}

.main {
  max-width: var(--widthMax);
  margin: var(--wSpace) auto;
  padding: 0 20px 0 20px;
}

.mainMediumDark {
  width: 100%;
  background-color: var(--bgPageMediumDark);
  padding: 20px 0;
  background-image: url(/images/bg.png);
  background-size: 400px auto;
  background-attachment: scroll;
  border-top: 1px solid rgba(0, 0, 0, 0.20);
  border-bottom: 1px solid rgba(255, 255, 255, 1.00);
}

.mainDark {
  width: 100%;
  background-color: var(--bgPageDark);
  padding: 20px 0;
}

.mainFull {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.mainUsko {
  max-width: var(--widthUsko);
}

.mainCentar {
  text-align: center;
}

.mainJustify {
  text-align: justify;
}

.sep01 {
  max-width: 100%;
  margin: var(--wSpace) auto;
  border-top: 1px solid rgba(0, 0, 0, 0.20);
  border-bottom: 1px solid rgba(255, 255, 255, 1.00);
}

.mesta {
  max-width: var(--widthUsko);
  margin: var(--wSpace) auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.mesta a {
  background-color: var(--accent);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  display: block;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: var(--shadow-elevation-high);
  text-decoration: none;
  flex: 1 1 auto;
  transition: background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  text-shadow: 0.5px 0.5px 2px hsla(0, 0%, 0%, 0.5);
}

.mesta a:hover {
  background-color: color-mix(in srgb, var(--accent) 80%, black);
  box-shadow: var(--shadow-elevation-low);
  transform: translateY(2px);
}

.footer {
  max-width: 100%;
  padding: 40px;
  background-color: var(--bgPageDark2);
}

.footerBox {
  max-width: var(--widthUsko);
  margin: 0 auto;
}

.footer p {
  color: white;
  font-weight: 300;
  font-size: 0.9rem;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

@media only screen and (max-width: 1080px) {}

@media only screen and (max-width: 780px) {
  .onlyDesk {
    display: none !important;
  }
}

@media only screen and (max-width: 320px) {}