/* --------------------------------------------------------
   Fonts
-------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
}


/* --------------------------------------------------------
   Layout: Header
-------------------------------------------------------- */
body > header {
  z-index: 4;
  position: sticky;
  top: 0;
  padding: 0.5rem 0;
  background-color: white;
  border-bottom: 1px solid var(--pico-primary-focus);
}
main.container.content {
    padding-top: 1em;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
}

.site-header a {
  text-decoration: none;
}

.site-logo-text {
  font-weight: bold;
  font-size: 2rem;
  text-decoration: none;
}

.site-logo-img {
  display: block;
  max-width: 60vw;
  width: 230px;
}

.logo-left {
  justify-content: flex-start;
}

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

[dir="rtl"] .site-header {
  justify-content: space-between;
}


/* --------------------------------------------------------
   Layout: Footer
-------------------------------------------------------- */
footer {
  border-top: 1px solid var(--pico-primary-focus);
}

footer ul li {
  list-style: none;
}

footer ul li a {
  text-decoration: none;
}

footer .copy {
  color: var(--pico-primary);
  display: block;
  text-align: center;
  font-weight: 200;
  font-size: .8em;
}

span.footer_title {
  margin-bottom: 1em;
  display: block;
  font-size: 1.5em;
  font-family: 'Roboto', sans-serif;
  color: var(--pico-primary);
}


/* --------------------------------------------------------
   Typography
-------------------------------------------------------- */
h1, h2 {
  font-family: 'Roboto', sans-serif;
  color: var(--pico-primary);
}

.primary-color {
  color: var(--pico-primary);
}


/* --------------------------------------------------------
   Components
-------------------------------------------------------- */
.button {
  border-radius: .3em;
  --pico-font-weight: 700;
  display: inline-block;
  background-color: var(--pico-primary-background);
  color: var(--pico-primary-inverse);
  padding: var(--pico-form-element-spacing-vertical) var(--pico-form-element-spacing-horizontal);
  text-decoration: unset;
}

table tbody tr:nth-child(odd) td, table tbody tr:nth-child(odd) th {
background-color: var(--pico-table-row-stripped-background-color);
}

.button:hover {
  background-color: var(--pico-primary-hover-background);
}

.kampanje {
  background: aliceblue;
  padding: 1em;
  border-radius: .2em;
}

.hero {
  background-image: linear-gradient(0deg, var(--pico-background-color) 40%, var(--pico-primary-focus));
  background-size: cover;
  padding: 1em;
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 1em;
}

.hero-logo {
  width: 300px;
  max-width: 80%;
}

.hero h1 {
  margin-top: 0;
}


/* --------------------------------------------------------
   Responsive Utilities & Layout
-------------------------------------------------------- */


.right {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
  max-width: 50%;
  height: auto;
}

.left {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
  max-width: 50%;
  height: auto;
}

.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
}

.full-width {
  width: 100%;
}

.center {
  text-align: center;
}



.rounded {
  border-radius: .2em;
}

.cinema {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.square {
  aspect-ratio: 1;
  object-fit: cover;
}


/* ---
	Clearfix
---*/

article::after,
main::after,
aside::after,
div.float-container::after {
  content: "";
  display: table;
  clear: both;
}




/* --------------------------------------------------------
   Navigation Menu (mobile + responsive)
-------------------------------------------------------- */
#main-menu {
  display: block;
}

#hamburger,
#mobile-menu {
  display: none;
}

#menu li {
  width: 100%;
}

#menu li.close {
  top: 0;
  right: 1rem;
  font-size: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#menu li.close button {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}

#menu a {
  text-decoration: none;
  color: var(--pico-primary);
  transition: color 0.2s ease;
  text-transform: capitalize;
}

#menu li a:hover {
  color: var(--pico-primary-background);
  font-weight: 700;
}

#menu.open {
  display: flex;
  transform: translateX(0);
}

a.active {
  font-weight: bold;
  color: var(--pico-primary-background);
}

/* Hamburger and Menu positioning for directionality */
[dir="ltr"] #menuToggle {
  margin-left: auto;
}

[dir="rtl"] #menuToggle {
  margin-right: auto;
}

[dir="rtl"] #menu {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

#menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  min-width: 200px;
  max-width: 75vw;
  height: 100vh;
  padding: 2rem 1.5rem;
  background: #f4f4f4;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 4;
  overflow-y: auto;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

#menuToggle {
  cursor: pointer;
  font-size: 1.8em;
}

#menuToggle label {
  display: block;
  color: var(--pico-primary);
  padding-top: 0.3em;
}


/* --------------------------------------------------------
   Tables & Buttons
-------------------------------------------------------- */
table {
  margin-top: 0;
  margin-bottom: var(--pico-typography-spacing-vertical);
  color: var(--pico-color);
  font-style: normal;
  font-weight: var(--pico-font-weight);
}

/* Remove spacing inside buttons rendered from markdown */
button p {
  margin: 0;
  padding: 0;
}


/* --------------------------------------------------------
   Menu Details Dropdown Customization
-------------------------------------------------------- */
details.dropdown > summary {
  width: max-content;
}

details.dropdown > summary::after {
  display: none !important;
  content: none !important;
}

button[rel=prev] {
  display: block;
  width: 1rem;
  height: 1rem;
  margin-top: calc(var(--pico-spacing) * -1);
  margin-bottom: var(--pico-spacing);
  margin-left: auto;
  border: none;
  background-image: var(--pico-icon-close);
  background-position: center;
  background-size: auto 1rem;
  background-repeat: no-repeat;
  background-color: transparent;
  opacity: 0.5;
  transition: opacity var(--pico-transition);
}



/* --------------------------------------------------------
   Responsive Media Queries
-------------------------------------------------------- */
@media only screen and (min-width: 600px) {
  ul#menu {
    display: contents;
  }
  li.close,
  div#menuToggle {
    display: none;
  }
}

@media only screen and (max-width: 420px) {
  .right, .left {
    float: unset;
    clear: unset;
    width: unset;
    max-width: 100%;
  }

  img.right, img.left {
    margin: unset;
  }

  .img-right img {
    order: initial !important;
  }
}

@media (max-width: 767px) {
  #main-menu {
    display: none;
  }

  #hamburger {
    display: inline-block;
    background: none;
    color: var(--pico-primary);
    border: none;
    font-size: 1.5rem;
    margin-left: auto;
    cursor: pointer;
  }

  #mobile-menu[hidden] {
    display: none;
  }

  #mobile-menu {
    position: fixed;
    right: 0;
    height: -webkit-fill-available;
    display: block;
    padding: 1rem;
    background: var(--pico-background-color);
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
  }
}
---


<style>

#main-menu {
  display: block;
}

#hamburger,
#mobile-menu {
  display: none;
}



@media (max-width: 767px) {
  #main-menu {
    display: none;
  }

  #hamburger {
    display: inline-block;
    background: none;
    color: var(--pico-primary);
    border: none;
    font-size: 1.5rem;
    margin-left: auto;
    cursor: pointer;
  }

  #mobile-menu[hidden] {
    display: none;
  }

  #mobile-menu {
    position: fixed;
    right: 0;
    height: -webkit-fill-available;
    display: block;
    padding: 1rem;
    background: var(--pico-background-color);
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
  }






}

