@charset "UTF-8";
/*
  Theme Name: zGorij
  Theme URI: https://zgorij.si
  Author: Klemen Lah
  Author URI: https://videoanimacije.si
  Description: Spletno mesto za informiranje občanov.
  Version: 1.0
  Licence: GNU General Public licence or later
  Tags: html5, css3,
  */

  :root {
    --color-primary: #36802d;
    --color-primary-dark: #234d20;
    --color-grey: #edeeee;
  }

  * {
    margin: 0;
    padding: 0;
  }

  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }

  ::selection {
    background-color: var(--color-primary-dark);
    color: #fff;
  }

  html {
    box-sizing: border-box;
    font-size: 62.5%; /* 1rem = 10px v procente  */
  }

  body {
    /* definiraj font-family */
    font-family: "PT Sans";
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* background-image: linear-gradient(to right bottom, var(--color-primary), var(--color-primary-dark));
    background-size: cover; */
  }

  .clearfix::after {
    content: "";
    clear: both;
    display: table;
  }

  /* Layout */
  #top-header,
  .hero,
  #contentMenu,
  #znamenitosti,
  #vizitke-1,
  #vizitke-2,
  #zgodovina,
  #footer {
    width: 100vw;
  }

  #top-header {
    border-bottom: var(--color-primary-dark) solid 2px;
  }

  #vizitke-1 {
    background-color: var(--color-grey);
    padding-bottom: 2rem;
  }

  #vizitke-2 {
    background-color: #fff;
    margin-bottom: 2rem;
  }

  #footer {
    background-color: #1b1b19;
    min-height: 10rem;
  }
  .footer {
    padding: 3rem;
    text-align: center;
    color: var(--color-grey);
    font-size: 1.4rem;
  }
  .footer p {
    color: var(--color-grey);
  }
  .footer p span {
    font-size: 1rem;
  }
  .footer p a {
    color: var(--color-primary);
    text-decoration: none;
  }

  #znamenitosti {
    background-image: radial-gradient(circle, #36802d, #234d20);
  }

  .container {
    max-width: 114rem;
    margin: 0 auto;
    padding: 1.5rem;


  }

  /* Header in menu */

  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    /* align-content:  */
  }

  .header__link {
    text-decoration: none;
  }
  .header__title {
    font-size: 3em;
    font-weight: bold;
    color: var(--color-primary-dark)
  }
  .heading-1 {
    text-align: left;
    font-size: 3.4rem;
    padding-top: 2.5rem;
    text-shadow: 2px 2px 4px #000000;
    }
  .heading-2,
  h2 {
    display: block;
    font-size: 2.8rem;
    text-align: center;
    padding: 1.5rem;
  }
  .heading-3 {
    display: block;
    font-size: 2.4rem;
    text-align: left;
    margin-top: 2rem;
  }
  .hr {
    border-bottom: 3px var(--color-primary-dark) solid;
  }
  .white-Heading {
    color: #fff;
  }
  .dark-Heading {
    color: var(--color-primary-dark);
  }

  .header__logo {
    width: auto;
    height: 12rem;
  }
  .header__menu {}

  /* Menu */
  .nav-btn {
    border: none;
    border-radius: 0;
    background-color: #234d20;
    height: 2px;
    width: 4.5rem;
    margin-top: 4rem; }
    .nav-btn::before, .nav-btn::after {
      background-color: #234d20;
      height: 2px;
      width: 4.5rem;
      content: "";
      display: block; }
    .nav-btn::before {
      transform: translateY(-1.5rem); }
    .nav-btn::after {
      transform: translateY(1.3rem); }
    @media only screen and (min-width: 50em) {
      .nav-btn {
        display: none;
        margin-top: 0;
        margin-right: 3rem; }
        .nav-btn::before {
          transform: translateY(-1.2rem); }
        .nav-btn::after {
          transform: translateY(1rem); } }

  .header__menu--mainItems {
    display: none;
  }
  @media only screen and (min-width: 50em) {
    .header__menu--mainItems {
      list-style: none;
      display: flex;
    }
  }
  /* End header and menu */
  /* Animacije */

  /* Animacija */

  @keyframes moveInLeft {
    0% {
      opacity: 0;
      transform: translate(-10rem);
    }
    80% {
      transform: translate(1px);

    }
    100% {
      opacity: 1;
      transform: translate(0);
    }

  }

  @keyframes moveInRight {
    0% {
      opacity: 0;
      transform: translate(10rem);
    }
    80% {
      transform: translate(-1px);

    }
    100% {
      opacity: 1;
      transform: translate(0);
    }

  }


  @keyframes heroOpacity {
    0% {
      opacity: 0;
      transform: translate(0, -20rem);
    }
    80% {

    }
    100% {
      opacity: 1;
      transform: translate(0);
    }

  }

  @-webkit-keyframes swing
  {
      15%
      {
          -webkit-transform: translateX(5px);
          transform: translateX(5px);
      }
      30%
      {
          -webkit-transform: translateX(-5px);
         transform: translateX(-5px);
      }
      50%
      {
          -webkit-transform: translateX(3px);
          transform: translateX(3px);
      }
      65%
      {
          -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
      }
      80%
      {
          -webkit-transform: translateX(2px);
          transform: translateX(2px);
      }
      100%
      {
          -webkit-transform: translateX(0);
          transform: translateX(0);
      }
  }
  @keyframes swing
  {
      15%
      {
          -webkit-transform: translateX(5px);
          transform: translateX(5px);
      }
      30%
      {
          -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
      }
      50%
      {
          -webkit-transform: translateX(3px);
          transform: translateX(3px);
      }
      65%
      {
          -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
      }
      80%
      {
          -webkit-transform: translateX(2px);
          transform: translateX(2px);
      }
      100%
      {
          -webkit-transform: translateX(0);
          transform: translateX(0);
      }
  }

  @keyframes fade
  {
    0%  {
      opacity: 0;
    }
    100% {
      opacity: 100%;
    }
  }

  /* Main menu */
  .header__menu--mainItem::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background-image: radial-gradient(circle, #36802d, #234d20);
    transform: scaleY(0);
    /* transform-origin: center; kje se animacija začne*/
    transition: transform .2s,
                /* width .4s cubic-bezier(1,0,0,1) .2s, */
                background-color .1s;
  }

  .header__menu--mainItem:hover::before,
  .service__title:hover::before,
  .header__menu--mainItem--active::before {
    transform: scaleY(1);
    width:100%;
  }

  .header__menu--mainItem,
  .header__menu--mainItem:link,
  .header__menu--mainItem:visited {
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 1.5rem 3rem;
    position: relative;
    z-index: 10;

    display: flex;
    align-items: center;
  }


  .header__menu--link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.2rem;
    z-index: 1000;
  }



  .header__menu--mainItem:hover .header__menu--link,
  .header__menu--link:hover {
    color: #fff;
  }


  /* Main menu END*/

  /* Animacije END */
  /* Hero content */
  .hero {
    animation: fade 1s ease-in;
    backface-visibility: hidden; /* Da se ne premikajo še druge stvari */

    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/spodnje_gorje_v_megli.jpg);
    background-repeat: no-repeat;
  /*  background-image: linear-gradient(to right bottom, rgba(54, 128, 45, 0.3), rgba(35, 77, 32, 0.4)), url(img/spodnje_gorje_v_megli.jpg);
    background-image: linear-gradient(to right bottom, rgba(0, 91, 165, 0.3), rgba(0, 44, 188, 0.7), url(img/domovinska_liga_prva_stran.png));

    background-image: linear-gradient(to right bottom, rgba(0, 91, 165, 0.3), rgba(0, 44, 188, 0.7), url(img/domovinska_liga_prva_stran.png);
  /*  background-image: repeating-radial-gradient(rgba(227, 69, 0, 0.3),rgba(38, 38, 38, 0.8)), url(img/domovinska_liga_prva_stran.png);
   background-image: repeating-radial-gradient(rgba(227, 69, 0, 0.3),rgba(142, 43, 0, 0.8)), url(img/ozadje_prva_stran.jpg); */
    background-position: bottom center;
    background-size: cover;

    position: relative;

  }

  .hero__title{
    display: inline-block;
    color: #fff;
    font-size: 5rem;
    font-weight: 300;
  }
  .heading__title--main {
    display: inline-block;
    animation-name: moveInLeft;
    animation-duration: 2s;
  }
  .heading__title--sub {
    font-size: 3rem;
    display: inline-block;
    color: #ccc;

    animation-name: moveInLeft;
    animation-duration: 3s;
    animation-timing-function: ease-out;
    /* color: var(--color-exposure-red); */
  }

  .call__toAction {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero__subtitle {
    display: block;
    /* background-color: var(--color-exposure-red); */
    color: #fff;
    font-weight: 3.2rem;
    line-height: 2.5rem;

    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--color-exposure-red);

    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation: moveInRight 2s ease-in;
    animation: moveInRight 2s ease-in;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;

  }

  .hero__subtitle--main {
    background-color: var(--color-exposure-red);

  }
  .hero__subtitle--sub {

  }

  .call__toAction--buttons {
    display: block;
    margin-top: 1.5rem;
    text-decoration: none;
  }
  .call__toAction--buttons .btn {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(239, 239, 239, 0.6);
    font-size: 2.2rem;
    text-decoration: none;

    /* -webkit-animation: swing 1s ease;
    animation: swing 1s ease;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1; */
    box-shadow: 0 5px 20px rgba(0,0,0, .2);

  }

  .call__toAction--buttons .btn:hover {
    cursor: pointer;
    /* animation: swing 1s ease;
    animation-iteration-count: 1 */
    transform: translateY(-3px);
  }

  .call__toAction--buttons .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(0,0,0, .2);

  }
  .call__toAction--buttons .btn-green {
    background-image: radial-gradient(circle, #36802d, #234d20);
    color: #fff;


    animation: moveInRight 2s ease-in;
  }

  .call__toAction--buttons .btn-green:hover {
    background-image:  radial-gradient(circle, rgba(54, 128, 45, 0.3), rgba(35, 77, 32, 0.4));

  }

  .call__toAction--buttons .btn-regular {
    background-color: rgba(38, 38, 38, 0.0);
    color: #fff;
      animation: moveInRight 2s ease-in;
  }

  .call__toAction--buttons .btn-regular:hover {
    background-color: var(--color-primary-dark);
  }
  /* End hero content */

  .content-intro {
    padding: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
    font-weight: 400;
  }
  .content-intro strong {
    font-weight: bold;
    color: var(--color-primary-dark);

  }

  /* Content menu */
  .contentMenu {
    display: grid;
    grid-template-columns: repeat(3, minmax(20rem, 1fr));
    grid-gap: 1.5rem;
    padding: 1.5rem;

    z-index: 4000;
  }

  @media only screen and (max-width: 60em) {

    .contentMenu {
      display: grid;
      grid-template-columns: repeat(2, minmax(25rem, 1fr));
      /* grid-template-columns: repeat(3, auto-fit, minmax(18rem, 1fr));*/

      grid-gap: 3rem;
      align-items: center;
      justify-content: center;
    }

  }
  @media only screen and (max-width: 40em) {
    .contentMenu {
      display: grid;
      grid-template-columns: minmax(20rem, 1fr);
      /* grid-template-columns: repeat(3, auto-fit, minmax(18rem, 1fr));*/

      grid-gap: 3rem;
      align-items: center;
      justify-content: center;
    }

  }

  .contentMenu__link {
    text-decoration: none;
    color: var(--color-grey);

  }
  .contentMenu__item {
    display: block;
    min-height: 20rem;
    padding: 2rem;
    align-self: center;
    justify-content: center;
  }
  .contentMenu__item:hover {

  }

  .contentMenu__item--title {
    font-size: 3rem;
    font-weight: bold;
  }

  .news {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.6), rgba(44, 48, 31, 0.8)), url(img/zadnjeNovice.png);
    background-size: cover;

  }
  .news:hover {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/zadnjeNovice.png);
  }

  .events {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.6), rgba(44, 48, 31, 0.8)),  url(img/napovednikDogodkov.jpg);
    background-size: cover;
  }

  .events:hover {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/napovednikDogodkov.jpg);

  }

  .cards {
    /* background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.6), rgba(44, 48, 31, 0.8)),  url(img/vizitka.jpg); */
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.6), rgba(44, 48, 31, 0.8)),  url(img/vpisi-vizitko.jpg);
    background-size: cover;
  }
  .cards:hover {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/vpisi-vizitko.jpg);
  }

  .publicatons {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.6), rgba(44, 48, 31, 0.8)), url(img/naseGorje.png);
    background-size: cover;
  }
  .publicatons:hover {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/naseGorje.png);
  }


  .video {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.6), rgba(44, 48, 31, 0.8)), url(img/sejeObcinskegaSveta.png);
    background-size: cover;
  }
  .video:hover {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/sejeObcinskegaSveta.png);
  }

  .newsletter {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.6), rgba(44, 48, 31, 0.8)), url(img/bodiObvescen.png);
    background-size: cover;
  }

  .newsletter:hover {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/bodiObvescen.png);
  }


  /* Content menu END*/
  /* Gallery */

  .gallery {
    /* background-color: var(--color-primary); */
    grid-column: full-start / full-end;
    display: grid;
    /*grid-template-columns: repeat(8, 1fr);
      grid-template-rows: repeat(7, 5vw);*/
    grid-template: repeat(7, 5vw)/repeat(8, 1fr);
    grid-gap: 1rem;
    padding: 1.5rem; }
    @media only screen and (max-width: 60em) {
      .gallery {
        grid-gap: 1rem; }
    }
    @media only screen and (max-width: 40em) {
      .gallery {
        grid-gap: .5rem; }
    }
    .gallery__item--1 {
      grid-row: 1 / span 2;
      grid-column: 1 / span 2; }
    .gallery__item--2 {
      grid-row: 1 / span 3;
      grid-column: 3 / span 3; }
    .gallery__item--3 {
      grid-row: 1 / span 2;
      grid-column: 6 / 7; }
    .gallery__item--4 {
      grid-row: 1 / span 2;
      grid-column: 7 / -1; }
    .gallery__item--5 {
      grid-row: 3 / span 3;
      grid-column: 1 / span 2; }
    .gallery__item--6 {
      grid-row: 4 / span 2;
      grid-column: 3 / span 2; }
    .gallery__item--7 {
      grid-row: 4 / 5;
      grid-column: 5 / 6; }
    .gallery__item--8 {
      grid-row: 3 / span 2;
      grid-column: 6 / span 2; }
    .gallery__item--9 {
      grid-row: 3 / span 3;
      grid-column: 8 / -1; }
    .gallery__item--10 {
      grid-row: 6 / span 2;
      grid-column: 1 / 2; }
    .gallery__item--11 {
      grid-row: 6 / span 2;
      grid-column: 2 / span 2; }
    .gallery__item--12 {
      grid-row: 6 / span 2;
      grid-column: 4 / 5; }
    .gallery__item--13 {
      grid-row: 5 / span 3;
      grid-column: 5 / span 3; }
    .gallery__item--14 {
      grid-row: 6 / span 2;
      grid-column: 8 / -1; }
    .gallery__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }

      /* Zgodovina Gorij */
    .zgodovina {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }

  /* Navigation */
  /* TOP MENU - MOBILE MENU */

  .navigation__nav {
    height: 100vh;
    width: 100%;
    position: fixed;
    top:0;
    left:0;
    z-index: 2500;

    /* Skrijemo meni */
    display: none;
    opacity: 0;
    transition: all .6s;

  }
  .navigation__checkbox {
    display: none;
  }
  .navigation__button {
    background: #234d20;
    height: 5rem;
    width: 5rem;
    position: fixed;
    top: 2.5rem;
    right: 4rem;
    z-index: 3000;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;

  }
  .navigation__background {
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    position: fixed;
    top: 3rem;
    right: 4.5rem;
    background-image: radial-gradient(circle, #36802d, #234d20);
    /* background-image: radial-gradient(#002c50, #005ba5 ); */
    z-index: 2000;
    transition: transform .8s cubic-bezier(0.68, -0.55, 0.265, 1.55),;

    /* transform: scale(50); */ prikaže meni za namen oblikovanja
  }
  .navigation__list {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
  }
  .navigation__item {
    margin: 1rem;

  }
  .navigation__link,
  .navigation__link:visited {
    display: inline-block;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 1rem;

    /* gradient za animacijo gumbov */
    background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #234d20 50%);
    background-size: 220%;
    transition: all .4s;
  }

  .navigation__link:hover,
  .navigation__link:active {
    background-position: 100%;
    color: #fff;
    transform: translateX(1rem);
  }

  /*
  Funckionalnosti
  CheckBox - ko kliknemo na gumb

  pokaže ozadje in vsebino menija

  */

  .navigation__checkbox:checked ~ .navigation__background {
    transform: scale(80);
  }

  .navigation__checkbox:checked ~ .navigation__nav {
    display: block;
    opacity: 1;
    width: 100%,
  }

  /* Ikona - sendivc */
  .navigation__icon {
    position: relative;
    margin-top: 2.5rem;
  }

  .navigation__icon,
  .navigation__icon::before,
  .navigation__icon::after {
    width: 3rem;
    height: 2px;
    background: #fff;
    /* background: var(--color-primary-dark); */
    display: inline-block;

  }

  .navigation__icon::before,
  .navigation__icon::after  {
    content: "";
    position: absolute;
    left: 0;
    transition: all .2s;
  }

  .navigation__icon::before {top: -.8rem;}
  .navigation__icon::after {top: .8rem;}

  .navigation__button:hover .navigation__icon::before {
    top: -1rem;
  }

  .navigation__button:hover .navigation__icon::after {
    top: 1rem;
  }

  .navigation__checkbox:checked + .navigation__button .navigation__icon {
    background-color: transparent;
  }

  .navigation__checkbox:checked + .navigation__button .navigation__icon::before {
    top: 0;
    transform: rotate(135deg);

  }

  .navigation__checkbox:checked + .navigation__button .navigation__icon::after {
    top: 0;
    transform: rotate(-135deg);

  }

  /* Vizitke */

  .gostItems {
      /* background-color: var(--color-primary-light); */
      margin: 2.5rem;

      display: grid;
      grid-template-columns: repeat(4, minmax(20rem, 1fr));
      grid-gap: 1.5rem;
  }

  @media only screen and (max-width: 60em) {
    .gostItems {
      display: grid;
      grid-template-columns: repeat(2, minmax(25rem, 1fr));
      /* grid-template-columns: repeat(3, auto-fit, minmax(18rem, 1fr));*/
      grid-template-rows: auto;
      grid-gap: 3rem;
      align-items: center;
      justify-content: center;
    }

  }
  @media only screen and (max-width: 40em) {
    .gostItems {
      display: grid;
      grid-template-columns: minmax(20rem, 1fr);
      /* grid-template-columns: repeat(3, auto-fit, minmax(18rem, 1fr));*/

      grid-gap: 3rem;
      align-items: center;
      justify-content: center;
    }

  }

  .gostItem {
    background-color: #f9f7f6;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-row-gap: 1rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding-bottom: 2rem;
  }
  .gostItem:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }


  .gostItem__img {
    width: 100%;
    grid-row: 1 / 2;
    grid-column: 1 / -1;
  }
  .gostItem__like {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    fill: var(--color-dark);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 2;
    justify-self: right;
    margin: 1rem;
  }
  .gostItem__name {
      /* uporabimo zato, da naredi overlap - postavimo čez sliko */
      grid-row: 1 / 2;
      grid-column: 1 / -1;
      /* horizontal align */
      justify-self: center;
      /* verical align */
      align-self: end;
      z-index: 3;
      text-decoration: none;
      width: 80%;
      font-family: inherit;
      font-size: 1.6rem;
      text-align: center;
      padding: 1.25rem;
      background-color: var(--color-primary-dark);
      color: #fff;
      font-weight: 400;
      /* premakne na sredino slike */
      transform: translateY(50%);
  }
  .gostItem__name:hover {
    background-color: var(--color-primary);
  }

  .btn {
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 0;
    font-family: inherit;
    font-size: 1.5rem;
    text-transform: inherit;
    padding: 1.8rem 3rem;
    cursor: pointer;
    transition: all .5s;
  }
  .btn:hover {
    background-color: var(--color-primary-dark);
  }


  .gostItem__btn {
    grid-column: 1 / -1;
  }
  .gostItem__location {
    margin-top: 3rem;
  }
  .gostItem__rooms {

  }

  .gostItem__location,
  .gostItem__rooms,
  .gostItem__area,
  .gostItem__price {
    font-size: 1.5rem;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    padding-top: 1rem;
  }

  .gostItem__location svg,
  .gostItem__rooms svg,
  .gostItem__area svg,
  .gostItem__price svg {
    fill: var(--color-primary);
    height: 2rem;
    width: 2rem;
    margin-right: 1rem;
  }

  .gostItem__location p,
  .gostItem__rooms p,
  .gostItem__area p,
  .gostItem__price p {}

  .vizitkeButton {
    display: block;
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 2rem;
  }

  /* Single post */
  .heading-hero {
    animation: fade 1s ease-in;
    backface-visibility: hidden; /* Da se ne premikajo še druge stvari */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 28vh;
    position: relative;
  }

  .pocarjeva-domacija:hover {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.6), rgba(44, 48, 31, 0.8)), url(img/soteskaVintgarThumb.png);
    background-size: cover;
  }

  .pocarjeva-domacija-12 {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/spodnje_gorje_v_megli.jpg);
  }

  .overlay {
    display: block;
    border: var(--color-primary-dark) solid 15px;
    transition: all .8s;
    /* background-color: red;
    z-index: 20; */
  }

  .overlay:hover {
    border: var(--color-primary) solid 30px;
    /* background-color: red;
    z-index: 20; */
  }

  .pokljuska-soteska {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/spodnje_gorje_v_megli.jpg);
  }
  .poglejska-cerkev {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/spodnje_gorje_v_megli.jpg);
  }

  .soteska-vintgar {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.6), rgba(44, 48, 31, 0.8)), url(img/soteskaVintgarThumb.png);
    background-size: cover;
  }
  .soteska-vintgar:hover {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/soteskaVintgarThumb.png);
  }

  .tnp {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/spodnje_gorje_v_megli.jpg);
  }
  .zvoncarstvo {
    background-image: linear-gradient(to right bottom, rgba(44, 48, 31, 0.3), rgba(44, 48, 31, 0.4)), url(img/spodnje_gorje_v_megli.jpg);
  }
  .breadcumbs {
    text-decoration: none;
    font-size: 1.6rem;
    padding: 1rem;
    background-color: var(--color-primary-dark);
    color: #fff;
  }

.main {
  display: grid;
  grid-template-areas: "main side"
                       "rel rel";
  grid-template-columns: 65% 35%;
}

.main-content {
  grid-area: main;
  grid-column: 1 / 2;
  padding-right: 2rem;
}
.sidebar {
  grid-area: side;
  background-color: var(--color-grey);
  grid-column: 2 / 2;
  width: 100%;
  padding: 1rem;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.sidebar .widget {
  margin-bottom: 2rem;
}

/* Full width page template  */
.main-content-full-width {
  grid-area: main;
  grid-column: 1 / 1;
}
/* .main-full-width-co {
  grid-area: main;
  grid-column: 1 / 2;
  padding-right: 2rem;
} */


/* List page - Nastanitve, gostinska ponudba, obrt */
.main-list {
  display: flex;
  flex-direction: column;
}
.main-list__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}

@media only screen and (max-width: 40em) {
  .main-list__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }

}

.relatedPosts {
  grid-area: rel;

}

.sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}

@media only screen and (max-width: 64em) {
  .main {
    display: grid;
    grid-template-columns: 1rem;
    grid-template-areas: "main"
                         "side"
                         "rel";
  }
  .main-content {
    grid-area: main;
    width: 100%;
    grid-column: 1 / span 2;
    overflow: hidden;
    padding-right: 0;

  }
  .sidebar {
    grid-area: side;
    grid-column: 1 / span 2;
    display: flex;
    align-content: space-between;
    justify-content: space-between;
  }
  .relatedPosts {
    grid-area: rel;
    grid-column: 1 / span 2;

  }

}
@media only screen and (max-width: 40em) {
  /* .main-content p {
    padding-right: 1rem;
  } */
  .sidebar {
    display: flex;
    flex-direction: column;
  }

}
.main-content-full-width p,
.main-content-full-width ul li,
.main-content-full-width li,
.main-content p,
.main-content ul li,
.main-content li {
  font-size: 2rem !important;
  margin-bottom: 1.5rem !important;
}

li,
.main-content ul li,
.main-content-full-width li {
  margin-left: 1.5rem;
}

.wp-block-table,
.wp-block-image img,
.main-content img,
.main-content-full-width img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 60em) {
  .main-content img {
    max-width: 60rem;
    height: auto;
  }
}
@media only screen and (max-width: 40em) {
  .main-content img {
    max-width: 40rem;
    height: auto;
  }
}
.wp-caption-text {
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 1px;
}
.wp-block-quote {
  border-left: 1rem var(--color-primary) solid;
  background-color: var(--color-grey);
  padding: 1rem 1rem 1rem 2rem;
  margin: 2rem 0;
}
li strong,
.main-content ul li strong,
.main-content p strong {
  color: var(--color-primary);
  font-weight: bold;
}

.main-content a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: bold;
}

/* Related posts */

.relatedPost__items {
  display: grid;
  margin-top: 1rem;

  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;

}

@media only screen and (max-width: 40em) {
  .relatedPost__items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }

}

.video__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
}

.video__link {
  text-decoration: none;

}
.video__item {
  margin-bottom: 2.5rem;
}
.video__img {
    width: 100%;
}
.video__name {
  font-size: 1.8rem;
  color: var(--color-primary-dark);
}

.featured-video-plus iframe {
  width: 100%;
  max-width: 60rem;
}

.wp-block-embed__wrapper iframe {
  width: 100%;
  max-width: 60rem;
}


@media only screen and (max-width: 40em) {
  .wp-block-embed__wrapper iframe {
    width: 100%;
    max-width: 40rem;
  }
}

.relatedPost__item {
  /* background-color: #f9f7f6; */

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.relatedPost__link {
  text-decoration: none;
}

.relatedPost__img {
  width: 100%;
  grid-row: 1 / 2;
  grid-column: 1 / -1;
}

.relatedPost__name {
  margin: 0 auto;
  /* uporabimo zato, da naredi overlap - postavimo čez sliko */
  grid-row: 1 / 2;
  grid-column: 1 / -1;
  /* horizontal align */
  justify-self: center;
  /* verical align */
  align-self: end;
  z-index: 3;

  width: 80%;
  font-family: inherit;
  font-size: 1.4rem;
  text-align: center;
  padding: 1rem;
  background-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  /* premakne na sredino slike */
  transform: translateY(-50%);
}

.relatedPost__item .relatedPost__name {
  text-decoration: none;
}
.relatedPost__item:hover .relatedPost__name {
  background-color: var(--color-primary-dark);
  text-decoration: none;
}
/* Pagination design */

.main-content__pagination {
  display: block;
  padding: 1rem 0;
}

.main-content__pagination .page-numbers {
  text-decoration: none;
  padding: 1rem;
  background-color: var(--color-primary-dark);
  color: #fff;
  font-size: 1.5rem;
}

.main-content__pagination .current,
.main-content__pagination .page-numbers:hover {
  background-color: var(--color-primary);
}

/* Forma */

.btn-obvescen {
  display: block;
}
.form-border {
  border: red solid 10px;
}

/* posamezen zapis oblika */
.main-content__single {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-areas: "img meta"
                       "cont cont"
                       "gall gall";
}
@media only screen and (max-width: 60em) {
  .main-content__single {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "img img"
                         "meta meta"
                         "cont cont"
                         "gall gall";
    margin-bottom: 2rem;
  }
}
.main-content__singleImg {
  grid-area: img;
}
.main-content__singleImg img {
  width: 100%;
}
.main-content__singleMeta {
  grid-area: meta;
  padding: 1rem;

  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 1rem;
}
.main-content__singleMeta--title {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--color-primary);
}
.main-content__singleMeta--subtitle {
  font-size: 2rem;
}

.main-content__singleCont {
  grid-area: cont;
}
.main-content__singleGallery {
  grid-area: gall;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1rem;
  grid-auto-rows: min-content;
}
@media only screen and (max-width: 60em) {

}
.main-content__singleMeta--icons {
  display: flex;
  align-items: center;

}
.main-content__singleMeta--icons a {
  text-decoration: none; 
}
.main-content__singleMeta--icon {
  width: 4rem;
  margin-right: 2rem;
}

.main-content__singleMeta--contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.main-content__singleMeta--contactItem {
  display: flex;
  flex-direction: row;
  text-align: center;
  font-size: 2.4rem;
  color: var(--color-primary);
  font-weight: bold;
  letter-spacing: 1px;
}
.main-content__singleMeta--contactItemImg {}
.main-content__singleGalleryItem {
}
/* thumb a link */
.main-content__singleGalleryItem > a {
}
.singleGalleryThumb {}
.main-content__singleGalleryItem img {
  width: 100%;
}

/* Page layout */

#page {
  background-color: #ccc;
  width: 100%;
  height: 100vh;
}

.top-news {
  animation: fade 2s ease-in;
  background-color: #fff;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "main main main event"
                       "one one two two";
  grid-gap: 10px;
  /*
  grid-auto-rows: 1fr;
  grid-gap: 10px; */

}
.top-news-1 {
  /* background-color: #244b22; */
  grid-area: main;
  display: block;
}
.top-news-2 {
  /* background-color: #b4da82; */
  grid-area: event;
  display: block;

  display: flex;
  justify-content: center;
  align-content: center;
}
.top-news-3 {
  /* background-color: #38803e; */
  grid-area: one;
  display: block;
}
.top-news-4 {
  /* background-color: #00aaf1; */
  grid-area: two;
  display: block;
}
.top-news__link {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
}

.top-news__title {
  background-color: rgba(36, 75, 34, 0.8);
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  padding: 1rem;
  font-size: 1.8rem;
}

.top-news__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 25rem;
  object-fit: cover;
  background-size: cover;
}
.top-news__link {
  color: #fff;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 50em) and (max-width: 64em) {

}

@media screen and (max-width: 50em) {
  .top-news {
    background-color: #fff;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "main"
                         "one"
                         "two"
                         "event";
    grid-gap: 10px;
  }
  .top-news-1 {
    background-color: #244b22;
    grid-area: main;
  }
  .top-news-2 {
    background-color: #b4da82;
    grid-area: event;
  }
  .top-news-3 {
    background-color: #38803e;
    grid-area: one;
  }
  .top-news-4 {
    background-color: #00aaf1;
    grid-area: two;
  }
}

/* Sticky ad-area test  */
.sticky-ad {
   position: sticky;
   position: -webkit-sticky;
   top: 0;
}


/* Newsletter singup area */

#mc_embed_signup form {
  background-color: var(--color-grey) !important;
  padding: 20px;
}
