/* ctrl+/ = komentář */
/* základ pro každou stránku, "*" platí pro všechny elementy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* width = šířka border + padding + width */
}

/****** REUSABLE ******/
/* nastavení šířky stránky */
.row {
    max-width: 1140px;
    width: 100%; /* důležitý zápis pro responzivitu webu */ 
    margin: 0px auto;
}


/****** HEADER ******/
header {
    background: linear-gradient(rgba(0,0,0,0.98),rgba(0,0,0,0.1));
    background-size: cover; /* vystředění obrázku*/
    height: 45vh; /* viewport 100 % zaplněnosti obrazovky - přepočítává se i na menší obrazovku */
    background-attachment: fixed; /* fixování obrázku na pozadí při přejíždění stránek níže */
    z-index: 100;
/*    border-bottom: 2px solid #3c3939;*/
}

/* pozadí navigace */
nav {
    width: 100%;
    height: 40px;
/*    border-bottom: 2px solid #3c3939;*/
}

nav ul {
    margin-top: 0.8%;
    margin-left: 22%;
    position: absolute;
    z-index: 0; /* vrstvení - základ 0, čím vyšší čílo, tím bude daná vrstva výše */
}

nav ul li {
    display: inline-block;
    list-style-type: none;
}

nav ul li h3 {
    color: #fff; /* barva napdisu h1, ctrl+E rozklikne nastavení barev */
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.3px; /* mezera mezi písmeny */
    word-spacing: 2.5px; /* mezera mezi slovy */
}

/* Navigation icon - back to home */
.nav-icon {
    float: left;
    margin-top: 0.25%;
    margin-left: 3%;
}

.nav-icon img {
    position: fixed;
    width: 2.5%;
    min-width: 33px;
    z-index: 100;
    background-color: #fff;
    opacity: 0.75;
}

.nav-icon img:hover {
    transition: transform 0.5s, opacity 0.5s;
    opacity: 1;
    transform: scale(1.05);
}

.header-text {
    position: absolute;
    top: 25%;
    left: 29%;
    transform: translate(-50%,-50%); /* pozice textu */
}

.header-text h1 {
    color: #fff; /* barva napdisu h1, ctrl+E rozklikne nastavení barev */
    font-size: 45px;
    text-align: center;
    text-transform: uppercase; /* velká písmena */
    letter-spacing: 4.5px; /* mezera mezi písmeny */
    word-spacing: 3.5px; /* mezera mezi slovy */
    background: #bf2617;
    border: 4px solid #dc4533; /* rámeček */
    border-radius: 15px; /* zaoblení ráměčků */
    padding: 10px;
}

.header-text h2 {
    color: #dc4533; /* barva napdisu h1, ctrl+E rozklikne nastavení barev */
    font-size: 20px;
    font-style: italic;
    padding-top: 0px;
    letter-spacing: 1.5px; /* mezera mezi písmeny */
    word-spacing: 2.5px; /* mezera mezi slovy */
    text-align: center;
}

.header-text h3 {
    color: #000; /* barva napdisu h1, ctrl+E rozklikne nastavení barev */
    font-size: 15px;
    text-transform: uppercase;
    padding-top: 20px;
    letter-spacing: 0.3px; /* mezera mezi písmeny */
    word-spacing: 2.5px; /* mezera mezi slovy */
    text-align: center;
}


/* Kde nás najdete? */
.heading-main h2 {
    text-align: center;
    font-size: 30px;
    padding-top: 20px;
}

.heading-main h2:after {
    content: "";
    display: block;
    width: 75px;
    border-bottom: solid 10px #dc4533;
    margin: 25px auto;
}

.contact-info {
    margin-top: 12px;
    text-align: center;
}

.contact-info {
    font-family: Georgia, sans-serif;
    font-size: 18px;
}

.contact-info-section-1 p {
    font-size: 25px;
}

/*.details h2:after,*/
.contact-info-section-1 h2:after,
.contact-info-section-1 p:after, 
.contact-info-section-3 p:after {
    content: "";
    display: block;
    width: 75px;
    border-bottom: dotted 10px #dc4533;
    margin: 25px auto;
}

.map-container {
    width: 100%;
}

.details img {
    width: 100%;
    margin-left: 2%;
}

.text-GPS {
    padding-top: 8px;
    font-size: 15px;
}

.akvarela h4 {
    margin-top: 25px;
    font-style: italic;
    
}

.akvarela p {
    padding-top: 10px;
    text-align: justify;
    font-size: 16px;
    font-family: Georgia, sans-serif;
    letter-spacing: 1px;
    word-spacing: 2px;
    line-height: 1.5;
}

.podpis {
    padding-left: 75%;
    font-family: "Brush Script MT","Gabriola","Caflisch","Script",serif;
    font-size: 20px;
}

/* fotogalerie */
.photo_segment li {
    list-style-type: none; /* žádné tečky seznamu */
    background-color: #000; /* černé pozadí */
    overflow: hidden; /* přetékání fotografie skryto */
    height: 182px;
    display: flex; /*vlastnost pro vystředění*/
    align-items: center; /*vertikální vystředění malého obrázku*/
}
    
.photo_segment img {
    width: 100%;
    opacity: 0.7;
    transform: scale(1.1);
}

.photo_segment img:hover {
    transition: transform 1s, opacity 1s;
    opacity: 1;
    transform: scale(1);
}

.photos-heading-main h2 {
    text-align: center;
    font-size: 32px;
    font-family: "candara", sans-serif;
    padding-top: 10px;
    padding-bottom: 20px;
}

.photos-heading-main h2:before {
    content: "";
    display: block;
    width: 175px;
    border-bottom: solid 6px #dc4533;
    margin: 25px auto;
}


/****** FOOTER ******/
.footer_page {
    background: #dc4533;
    margin-top: 20px;
    color: #fff;
}

.links-picture {
    float: right;
    position: absolute;
    left: 85%;
/*    display: block;*/
/*    box-sizing: content-box;*/
/*    width: 15%;*/
}

.logo_FB {
/*    background-color: #fff;*/
    background-color: transparent;
    width: 20%;
    min-width: 33px;
    border-radius: 40%;
    padding: 5px;
    margin-top: 10px;
}

.logo_FB:hover {
    transition: transform 1s;
    transform: scale(1.15);
}

.footer-text {
    text-align: center;
    margin-top: 1.5%;
    margin-bottom: 20px;
}

.footer-text p {
    font-family: Georgia, sans-serif;
    letter-spacing: 0.5px;
    font-size: 16px;
    text-align: left;
    margin-bottom: 25px;
}

.footer-text p a:link,
.footer-text p a:visited {
    font-family: Georgia, sans-serif;
    font-size: 16px;
    text-align: left;
    margin-top: 25px;
    margin-bottom: 20px;
    text-decoration: none;
    color: #fff;
}

.footer-text p a:hover,
.footer-text p a:active {
    font-family: Georgia, sans-serif;
    transition: font-size 1s;
    font-size: 17px;
    text-align: left;
    margin-top: 25px;
    margin-bottom: 20px;
    text-decoration: underline;
    color: #000;
}


/****** OTHERS ******/
/* Stop floating */ /* zastavuje floatování */
.clearfix {zoom: 1}
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}