/* PISMO */

@font-face {
    font-family: 'caviar';
    src: url('ttf/CaviarDreams_BoldItalic.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'england';
    src: url('ttf/england.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'veteran_typewriter';
    src: url('fonts/veteran_typewriter.ttf') format('truetype'), url('fonts/veteran_typewriter.woff') format('woff'), url('fonts/veteran_typewriter.eot#iefix') format('embedded-opentype');
    font-style: normal;
    font-weight: normal;
}

:root {
    --color-hover:rgb(155, 141, 141);
    --color-default:#cacaca;
    --color-bg:#272727;
    --color-nav:rgb(25, 25, 25);
  }

* {
    font-family: 'Special Elite', cursive;
}

.cook {
    position: absolute;
    top:10px;
    right:10px;
    left: 10px;
    z-index: 1;
    background-color: var(--color-bg);
    border-color: var(--color-default);
    border-width: 1px;
    border-style: solid;
    font-size:15px;
}
.cook.hide {
    display: none;
}
.cook div {
    display: inline-block;
    margin:10px;
}
.cook a {
    white-space: nowrap;
}

.cook .button {
    background-color: var(--color-default);
    padding:10px;
    cursor: pointer;
    color:var(--color-bg);
}

html {
    margin: 0px;
    text-align: center;
    background-color: rgb(53, 53, 53);
}  

body {
    position: relative;
    text-align: center;
    background: var(--color-bg);
    color: white;
    margin: 0px auto;
    padding-bottom: 2rem;
    overflow-x: hidden;
    letter-spacing: 2px;
    min-height: calc(100vh - 2rem);

}

.sha.on {
    box-shadow: inset -2px 4px 8px black;
    color: white;
}

.sha {
    box-shadow: inset 0px 0px 2px black;
}

.sha:hover {
    box-shadow: inset 0px 0px 2px black;
    cursor: pointer;
    background-color: #bad3b3;
}

.icon {
    max-height: 30px;
    vertical-align:middle;
    margin:15px;
}

.social {
    max-width: 480px;
    margin:auto;
    padding-bottom:10px;
}
a {
    text-decoration: none;
}

.sepp {
    padding: 5px 0px;
    height: 0px;
    clear: both;
}

.title {
    position: relative;
    padding: 30px 0px;
    /*font-family: 'veteran_typewriter';*/
    color: #ffffff;
    border-radius: 40px 40px 0px 0px;
    text-shadow: 0px 2px 2px black;
}

.lang {
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.lang > a {
    margin:10px;
    display: inline-block;
    font-weight: bold;
    position: relative;
    transition: box-shadow 0.5s;
}

.lang > a.on {
    color:white;
}

/* --------menu----------- */

.menu {
    position: relative;
}

.menu>a {
    display: inline-block;
    text-align: center;
}

.menu .pol {
    transition: box-shadow 0.5s;
}

.menu .pol img {
    position: relative;
    top: 5px;
}


/* --------content----------- */

.content {
    position: relative;
    /*min-height: 350px;*/
    text-align: justify;
}

.content>.img {
    width: 100%;
}

.content>.img>img {
    width: 100%;
    object-fit: fill;
}

.content>div>.motto {
    position: relative;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    padding-bottom: 20px;
}

.content>.popis {
    position: relative;
}

.content>div>.popis>.nadpis {
    font-size: 25px;
}

.content .polozka>.datum {
    font-weight: bold;
    color: #c87647;
}

.content>.submenu {
    text-align: center;
    background-color: rgb(32, 32, 32);
}

.content>.submenu>.pol {
    display: inline-block;
    color: var(--color-default);
}

.content>.submenu>.pol.on {
    color: white;
}

.content>.submenu>.pol:hover {
    color: var(--color-hover);
}

.content .gallery {
    text-align: center;
}

.content .gallery div.img {
    position: relative;
}

.content>.gallery div.img img {
    height: auto;
    cursor: pointer;
}

.content .gallery img {
    object-fit: cover;
    width: 100%;
}

.content .popisGal {
    text-align: right;
    margin-top: 20px;
    padding-bottom: 20px;
    margin-right: 20px;
    font-size: 14px;
}

.content>.gallery div.img .tip {
    position: absolute;
    background: rgba(95, 95, 95, 0.95);
    color: #60ffff;
    text-shadow: 0px 2px 2px black;
    display: block;
    transition: opacity 0.5s;
    opacity: 0;
}

.content>.gallery div.img:hover .tip {
    opacity: 1;
}

.contact {
    text-align: center;
    padding-bottom: 40px;
}

.contact .nadpis {
    font-size: 25px;
}
img.contact {
    filter: grayscale(100%);
    padding-bottom: 0px;
}

.contact>div {
    padding: 10px 5px;
}

.home {
    margin: auto;
}

.home .polozka {
    margin: auto;
    max-width: 768px;
    margin-bottom: 15px;
}

.home .nadpis {
    font-size: 25px;
}

.home .text {
    padding: 10px 0px;
}

.bott {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2rem;
    font-size:8pt;
    background-color: var(--color-nav);
    /* Footer height */
}

.bott .text {
    margin: 4px;
    display: inline-block;
}
/* ----------------------------------------------------------------------- */


/* Extra small devices (phones, 600px and down) */

@media only screen and (max-width: 599px) {
    /* ------title------- */
    .title {
        padding-top: 90px;
        padding-bottom: 40px;
        font-size: 35px;
    }
    /* --------menu----------- */
    .menu {
        margin-bottom: 5px;
    }
    .menu>a {
        margin: 0px 2px;
    }
    .menu .pol {
        width: 80px;
        height: 40px;
        border-radius: 100px;
        border: 1px solid #215e5e;
    }
    .menu .pol img {
        height: 30px;
        top: 5px;
    }
    /* --------content----------- */
    .content {
        margin: 0px;
    }
    .content>.img {
        padding: 0px 0px 20px 0px;
    }
    .content>.img>img {
        margin-bottom: 20px;
        max-height: 300px;
        object-fit: cover;
    }
    .content .popis {
        margin: 0px 10px 10px 10px;
    }
    .content .polozka>.nadpis,
    .content>div>.nadpis {
        margin-bottom: 2px;
    }
    .content .polozka>.datum {
        margin-bottom: 5px;
        font-size: 9pt;
    }
    .content>.submenu {
        margin-bottom: 20px;
        text-shadow: 0px 2px 2px black;
    }
    .content>.submenu>.pol {
        padding: 5px 8px;
        margin: 5px 5px;
        height: 25px;
        line-height: 25px;
    }
    .content .gallery div.img {
        min-width: 200px;
        padding: 0px 0px 10px 0px;
    }
    .content .gallery img {
        max-width: 100%;
        max-height: 350px;
    }
    .content>.gallery div.img .tip {
        bottom: 0px;
        right: 0px;
        max-width: 620px;
        padding: 5px;
        font-size: 9pt;
        margin: 0px 0px 15px 0px;
    }
    .bott {
        height: 40px;
    }
    .bott .text {
        margin: 4px;
        display: block;
    }
}


/* ----------------------------------------------------------------------- */


/* Small devices (portrait tablets and large phones, 600px and up) */

@media only screen and (min-width: 600px) {
    /* max-width: 767*/
    /* ------title------- */
    .title {
        padding-top: 90px;
        padding-bottom: 40px;
        font-size: 45px;
    }
    /* --------- LANG --------- */

    /* --------menu----------- */
    .menu {
        margin-bottom: 5px;
    }
    .menu>a {
        margin: 0px 10px;
    }
    .menu .pol {
        width: 80px;
        height: 40px;
        border-radius: 100px;
        border: 2px solid #215e5e;
    }
    .menu .pol img {
        height: 30px;
        top: 5px;
    }
    /* --------content----------- */
    .content>.img {
        padding: 0px 0px 20px 0px;
    }
    .content>.img>img {
        margin-bottom: 20px;
        max-height: 350px;
        object-fit: cover;
    }
    .content .popis {
        margin: 0px 15px 15px 15px;
    }
    .content .polozka>.nadpis,
    .content>div>.nadpis {
        margin-bottom: 2px;
    }
    .content .polozka>.datum {
        margin-bottom: 5px;
        font-size: 10pt;
    }
    .content>.submenu {
        margin-bottom: 20px;
        text-shadow: 0px 2px 2px black;
    }
    .content>.submenu>.pol {
        border-radius: 25px;
        padding: 5px 8px;
        margin: 5px 5px;
        height: 25px;
        line-height: 25px;
    }
    .content .gallery div.img {
        min-width: 200px;
        padding: 0px 0px 10px 0px;
    }
    .content .gallery div.img.small {
        padding: 0px 0px 10px 0px;
    }
    .content .gallery img {
        max-width: 100%;
        max-height: 400px;
    }
    .content>.gallery div.img>.tip {
        bottom: 0px;
        right: 0px;
        max-width: 620px;
        padding: 2px;
        font-size: 10pt;
        margin: 0px 0px 15px 0px;
    }
    /* --------footer----------- */
    .bott {
        height: 40px;
    }
    .bott .text {
        display: block;
    }
}


/* ----------------------------------------------------------------------- */


/** zostatok prechadzajuceho */

@media only screen and (min-width: 768px) {
    /* ------title------- */
    .title {
        padding-top: 90px;
        padding-bottom: 40px;
        font-size: 45px;
    }
    /* --------- LANG --------- */
    /* --------menu----------- */
    .menu {
        margin-bottom: 5px;
    }
    .menu>a {
        margin: 0px 10px;
    }
    .menu .pol {
        width: 80px;
        height: 40px;
        border-radius: 100px;
        border: 2px solid #215e5e;
    }
    .menu .pol img {
        height: 30px;
        top: 5px;
    }
    /* --------content----------- */
    .content>.img {
        padding: 0px 0px 20px 0px;
    }
    .content .polozka>.nadpis,
    .content>div>.nadpis {
        margin-bottom: 2px;
    }
    .content .polozka>.datum {
        margin-bottom: 5px;
        font-size: 10pt;
    }
    .content>.submenu {
        margin-bottom: 20px;
        text-shadow: 0px 2px 2px black;
    }
    .content>.submenu>.pol {
        border-radius: 25px;
        padding: 5px 8px;
        margin: 5px 5px;
        height: 25px;
        line-height: 25px;
    }
    .content .gallery {
        display: flex;
        flex-wrap: wrap;
        padding: 0 4px;
    }
    .content .gallery .column {
        -ms-flex: 46%;
        flex: 46%;
        padding: 0 8px;
    }
    .content .gallery>div.img {
        position: relative;
        min-width: 200px;
        padding: 0px 0px 10px 0px;
    }
    .content .gallery div.img.small {
        padding: 0px 0px 10px 0px;
    }
    .content .gallery img {
        max-width: 100%;
        max-height: 300px;
    }
    .content>.gallery>div.img>.tip {
        bottom: 0px;
        right: 0px;
        max-width: 620px;
        padding: 10px;
        font-size: 10pt;
        margin: 0px 10px 15px 0px;
    }
    /* --------footer----------- */
    .bott {
        height: 40px;
    }
    .bott .text {
        margin: 10px;
        display: inline-block;
    }
}


/* Large devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) {
    /* ------title------- */
    .title {
        padding-top: 90px;
        padding-bottom: 40px;
        font-size: 50px;
    }
    /* --------- LANG --------- */

    /* --------menu----------- */
    .menu {
        margin-bottom: 5px;
    }
    .menu>a {
        margin: 0px 10px;
    }
    .menu .pol {
        width: 80px;
        height: 40px;
        border-radius: 100px;
        border: 2px solid #215e5e;
    }
    .menu .pol img {
        height: 30px;
        top: 5px;
    }
    /* --------content----------- */
    .content>.img {
        padding: 0px 0px 20px 0px;
    }
    .content .polozka>.nadpis,
    .content>div>.nadpis {
        margin-bottom: 2px;
    }
    .content .polozka>.datum {
        margin-bottom: 5px;
        font-size: 10pt;
    }
    .content>.submenu {
        margin-bottom: 20px;
        text-shadow: 0px 2px 2px black;
    }
    .content>.submenu>.pol {
        border-radius: 25px;
        padding: 5px 8px;
        margin: 5px 5px;
        height: 25px;
        line-height: 25px;
    }
    .content .gallery {
        /*flex-wrap: wrap;*/
        padding: 0 8px;
    }
    .content .gallery .column {
        -ms-flex: 48%;
        flex: 48%;
        padding: 0 8px;
    }
    .content .gallery>div.img {
        /*display: inline-block;*/
        min-width: 200px;
        padding: 0px 0px 10px 0px;
    }
    .content .gallery div.img.small {
        padding: 0px 0px 10px 0px;
    }
    .content .gallery img {
        max-width: 100%;
        max-height: 400px;
    }
    .content>.gallery>div.img>.tip {
        bottom: 0px;
        right: 0px;
        max-width: 620px;
        padding: 10px;
        font-size: 10pt;
        margin: 0px 10px 15px 0px;
    }
    /* --------footer----------- */
    .bott {
        height: 40px;
    }
}


/* ----------------------------------------------------------------------- */


/* Extra large devices (large laptops and desktops, 1200px and up) */

@media only screen and (min-width: 1200px) {
    body {
        max-width: 1200px;
    }
    /* ------title------- */
    .title {
        padding-top: 90px;
        padding-bottom: 40px;
        font-size: 55px;
    }
    /* --------- LANG --------- */

    /* --------menu----------- */
    .menu {
        margin-bottom: 5px;
    }
    .menu>a {
        margin: 0px 10px;
    }
    .menu .pol {
        width: 80px;
        height: 40px;
        border-radius: 100px;
        border: 2px solid #215e5e;
    }
    .menu .pol img {
        height: 30px;
        top: 5px;
    }
    /* --------content----------- */
    .content>.img {
        padding: 0px 0px 20px 0px;
    }
    .content .polozka>.nadpis,
    .content>div>.nadpis {
        margin-bottom: 2px;
    }
    .content .polozka>.datum {
        margin-bottom: 5px;
        font-size: 10pt;
    }
    .content>.submenu {
        margin-bottom: 20px;
        text-shadow: 0px 2px 2px black;
    }
    .content>.submenu>.pol {
        border-radius: 25px;
        padding: 5px 8px;
        margin: 5px 5px;
        height: 25px;
        line-height: 25px;
    }
    .content .gallery {
        display: flex;
        flex-wrap: wrap;
        padding: 0 8px;
    }
    .content .gallery .column {
        -ms-flex: 48%;
        flex: 48%;
        padding: 0 8px;
    }
    .content .gallery>div.img {
        min-width: 200px;
        padding: 0px 0px 10px 0px;
    }
    .content .gallery div.img.small {
        padding: 0px 0px 10px 0px;
    }
    .content .gallery img {
        max-width: 100%;
        max-height: 400px;
    }
    .content>.gallery>div.img>.tip {
        bottom: 0px;
        right: 0px;
        max-width: 620px;
        padding: 10px;
        font-size: 10pt;
        margin: 0px 10px 15px 0px;
    }
    /* --------footer----------- */
    .bott {
        height: 40px;
    }
}

a {
    color: var(--color-default);
}