html {
    font-family: "Crimson";
    font-size: 11pt;
    background-color: var(--temna);

    --svetla: rgb(245, 227, 206);
    --temna: rgb(228, 198, 165);
    --poudarek: rgb(182, 105, 82);
    --senca: 5px 5px 4px rgb(175, 147, 117);
}

body {
    margin: 0;
    padding: 0;
}

main {
    max-width: 1100px;
    margin: 0 auto;
}

h2 {
    color: black;
    font-weight: bold;
    font-size: 16pt;
    font-family: "Montserrat";
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 10px;
}

h3 {
    color: black;
    font-weight: 250;
    font-size: 14pt;
    font-family: "Montserrat";
    text-transform: uppercase;
    margin: 0;
}

a {
    text-decoration: none;
    color: black
}

.podcrtan-link {
    color: var(--poudarek);
    text-decoration: underline;
}

.gumb-link {
    background-color: black;
    padding: 7px 10px 5px 10px;
    color: var(--svetla);
    font-family: "Montserrat";
    text-transform: uppercase;
    border: none;
    height: fit-content;
    font-size: 11pt;
}

.gumb-link:hover {
    opacity: 0.80;
}

.top-nav {
    background-color: black;
    width: 100%;
    margin: 0;
    position: sticky;
    top: 0;
    box-shadow: var(--senca);
    z-index: 200;
}

.in-top-nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
}

.top-nav-links {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-content: center;
    gap: 40px;
}

.top-nav .in-top-nav .top-link {
    width: fit-content;
    height: 44px;
    padding: 3px;
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.in-top-nav .link-tekst:hover {
    color: var(--svetla);
}

.in-top-nav .top-nav-links img {
    height: 44px;    
    width: auto;
    filter: drop-shadow(0px 100px 0 var(--svetla));
    transform: translateY(-100px);
}

.in-top-nav .link-tekst {
    color: var(--temna);
    text-align: center;
    line-height: 1.05;
    font-family: "Montserrat";
    font-size: 12pt;
    margin: 5px;
    margin-top: 8px;
}

.top-logo {
    height: 50px;
    width: auto;
    margin-top: 5px;
}

.top-logo:hover {
    opacity: 0.80;
}

.logo {
    margin: 0;
    width: auto;
    padding-left: 1px;
}

.logo a {
    margin: 0;
}

footer {
    background-color: black;
    color: var(--svetla);
    max-width: 1060px;
    margin: 0 auto;
    padding: 20px;
}

footer h3 {
    color: var(--svetla);
}

.sp-info {
    display: flex;
    font-size: 9pt;
    margin-top: 10px;
    gap: 20px;
}

.pravokotnik {
    margin: 20px auto;
    max-width: 1100px;
    height: 300px;
    background-color: var(--svetla);
    box-shadow: var(--senca);
    display: flex;
    overflow: hidden;
}

.pravokotnik.event img {
    max-height: 300px;
    width: auto;
}

.pravokotnik.event img:hover {
    opacity: 0.80;
}

.text-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 5;
    gap: 20px;
}

.cas {
    background-color: var(--temna);
    padding: 5px 10px;
    font-weight: bold;
}

.tip {
    font-size: 16pt;
    text-transform: uppercase;
    font-family: "Montserrat";
    font-weight: 250;
}

.naslovna-vrstica {
    display: flex;
    gap: 15px;
}

.naslov {
    font-size: 26pt;
    font-weight: 700;
    line-height: 1.1;
}

.naslov.thin {
    font-weight: 200;
}

.podnaslov {
    font-weight: 700;
    font-size: 16pt;
    color: var(--poudarek);
}

.nadprostor {
    padding-top: 20px;
}

.text-box .gumb {
    height: 100%;
    align-content: end;
}

.naslov-odseka {
    margin: 20px 0 0 0;
    padding: 5px;
    display: flex;
    justify-content: space-between;
}

.kvadratki {
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.kvadratki .cube {
    width: 350px;
    height: 350px;
    position: relative;

    -webkit-transition: -webkit-transform 0.20s;
	transition: transform 0.20s;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.cube:hover {
	-webkit-transform: rotateY(-90deg);
	transform: rotateY(-90deg);
}

.cube-link {
    -webkit-perspective: 1300px;
    perspective: 1300px;
    transform: scale(0.865);
}

.cube-side {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    box-shadow: var(--senca);
}

.cube-side img {
    height: 350px;
    width: 350px;
}

.cube-side.front {
    -webkit-transform: translateZ(175px);
	transform: translateZ(175px);
}

.cube-side.front:hover {
    box-shadow: 0px 5px 4px rgb(175, 147, 117);
}

.cube-side.back {
    -webkit-transform: rotateY(90deg) translateZ(175px);
	transform: rotateY(90deg) translateZ(175px);
}

.kvad-text {
    height: 310px;
    width: 310px;
    background-color: var(--svetla);
    box-shadow: var(--senca);
    padding: 20px;
    overflow: hidden;
}

.kvad-text:hover {
    opacity: 0.80;
}

.kvad-text .cas {
    margin-bottom: 20px;
}

.infobox {
    background-color: var(--svetla);
    box-shadow: var(--senca);
    padding: 20px;
    margin: 20px 0;
}

.infobox.spodnji {
    margin-top: 0;
}

.boxed {
    display: flex;
    justify-content: space-between;
}

.box {
    height: 310px;
    width: 310px;
}

table.urnik td,
table.urnik th {
    text-align: left;
    padding-right: 20px;
    font-weight: normal;
}

table.urnik {
    margin-bottom: 20px;
}

.box.lokacija iframe {
    margin-top: 20px;
    margin-left: -20px;
}

.handles {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.handles .handle {
    display: flex;
    align-items: center;
}

.handles .handle img {
    margin-right: 5px;
    height: 15px;
    width: auto;
}

.infobox.kjeinkdaj {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.box-text {
    width: 33.33%;
    padding: 20px;
}

.infobox.kjeinkdaj iframe {
    box-sizing: border-box;
    width: 100%;
}

.infobox #mc_embed_signup {
    text-align: left;
}

.infobox #privacy {
    width: fit-content;
}

.page-nav {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.page-links {
    display: flex;
    gap: 20px;
}

.page-nav.centered {
    justify-content: center;
}

.page-links a {
    text-decoration: underline;
    color: var(--poudarek);
}

.page-gumbek {
    font-weight: bold;
    background-color: var(--svetla);
    padding: 5px 15px;
}

.dogodek-page {
    background-color: var(--svetla);
    margin: 20px 0;
    padding: 20px;
    box-shadow: var(--senca);
    display: flex;
    flex-direction: column;
}

.glava {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 20px;
}

.osnovni-podatki {
    display: flex;
    flex-direction: column;
    flex: 5;
}

.osnovni-podatki .tip {
    margin-top: 20px;
}

.glava .gumb-link {
    max-width: fit-content;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    flex: 5;
    box-sizing: border-box;
    margin: 0 0 20px 20px;
    padding: 10px;
    text-align: center;
}

.glava .gumb-link img {
    height: 100px;
    width: auto;
}

.main-img {
    max-width: 1100px;
    margin: 0 -20px;
    display: flex;
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pravokotnik.menu {
    height: fit-content;
    justify-content: space-between;
}

.menu h3 {
    font-size: 12pt;
    margin: 15px 0 0 0;
}

.menu-text {
    height: fit-content;
    width: 38.197%;
    padding: 20px;
}

.menu table {
    width: 100%;
}

.menu table td {
    text-align: left;
    font-weight: normal;
    padding-right: 20px;
}

.menu table td:last-of-type {
    text-align: right;
}

.menu .menu-img {
    width: 61.803%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

/*Mailchimp stuff*/

#mc_embed_signup {
    margin-top: 30px;
    clear:left;
    text-align: center;
}

input[type=email] {
    border: 1px solid gray;
    padding: 5px 8px;
    font-size: 12pt;
    width: 294px;
}

.mc-field-group {
    margin-bottom: 5px;
    display: inline-flex;
    flex-direction: column;
    width: 320px;
}

.mc-field-group > div {
    text-align: left;
}

.mc-field-group label {
    font-size: 13px;
}

.mc-tekst {
    margin-top: 5px;
}

body #mc_embed_signup div.mce_inline_error {
    border-radius: 5px;
    color: #6b0505;
    background-color: rgb(107 5 5 / 12%);
}

.mc-spodnje {
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 0;
}

.brandingLogo {
    scale: 0.7;
    margin: -5px -33px 0 0;
}

#privacy {
    text-align: left;
    width: 320px;
    margin-top: -20px;
    font-size: 8pt;
}