/* ZÁKLADNÍ STYL STRÁNKY */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #003366;
    background-color: #ecba77;
    margin: 0;
}

/* HLAVNÍ NADPIS – sticky */
.hlavni-nadpis {
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
    color: #ecba77;
    background-color: #003366;
    margin: 0;
    padding: 25px 10px;
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 2px solid #ecba77;
}

/* HEADER */
.header {
    background-color: #003366;
    margin: 0;
}

/* WRAPPER PRO ŠIPKY + MENU */
.menu-wrapper {
    display: flex;
    align-items: center;
    position: sticky;
    top: 84px;
    z-index: 999;
    background-color: #003366;
    border-bottom: 2px solid #ecba77;
    padding: 5px 0;
}

/* ŠIPKY */
.menu-arrow {
    background: #003366;
    color: #ecba77;
    border: none;
    font-size: 1.4rem;
    padding: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.menu-arrow:hover {
    color: #ffeb01;
}

/* MENU */
.menu-top {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    padding-left: 40px;
    padding-right: 40px;
}

/* Scrollbar – původní elegantní verze */
.menu-top::-webkit-scrollbar {
    height: 6px;
}

.menu-top::-webkit-scrollbar-thumb {
    background: #ecba77;
    border-radius: 3px;
}

.menu-top::-webkit-scrollbar-track {
    background: #003366;
}
.menu-top ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 10px;
}

.menu-top li {
    flex: 0 0 auto;
    padding: 0 8px;
    border-right: 1px solid #ecba77;
}

.menu-top li:last-child {
    border-right: none;
}

.menu-top a {
    color: #ecba77;
    font-weight: bold;
    text-decoration: none;
}

.menu-top a:hover {
    color: #ffeb01;
    text-decoration: underline;
}

.menu-top a.active {
    background-color: #ecba77;
    color: #003366;
    padding: 4px 8px;
    border-radius: 4px;
}

/* NADPIS DNE */
h2 {
    text-align: center;
    margin-bottom: 25px;
}

/* OBSAH STRÁNKY */
.content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    color: #003366;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* ÚVODNÍ FOTO */
.uvodni-foto {
    width: 100%;
    height: auto;
    border: 3px solid #003366;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* ÚVODNÍ TEXT */
.uvod-text {
    text-align: justify;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* OBSAH STRÁNKY */
.content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    color: #003366;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* ÚVODNÍ FOTO */
.uvodni-foto {
    width: 100%;
    height: auto;
    border: 3px solid #003366;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* ÚVODNÍ TEXT */
.uvod-text {
    text-align: justify;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* MOZAIKA GALERIE */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 30px 0;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 2px solid #003366;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ----------------------------------------------------------
   GLIGHTBOX – JEDINÝ BEZPEČNÝ OVERRIDE
   (NEPŘEPISUJE FUNKČNOST, JEN POPISEK)
---------------------------------------------------------- */

/* ZÁKLADNÍ STYL STRÁNKY */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: #003366;
    background-color: #ecba77;
    margin: 0;
}

/* HLAVNÍ NADPIS – sticky */
.hlavni-nadpis {
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
    color: #ecba77;
    background-color: #003366;
    margin: 0;
    padding: 25px 10px;
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 2px solid #ecba77;
}

/* HEADER */
.header {
    background-color: #003366;
    margin: 0;
}

/* WRAPPER PRO ŠIPKY + MENU */
.menu-wrapper {
    display: flex;
    align-items: center;
    position: sticky;
    top: 84px;
    z-index: 999;
    background-color: #003366;
    border-bottom: 2px solid #ecba77;
    padding: 5px 0;
}

/* ŠIPKY */
.menu-arrow {
    background: #003366;
    color: #ecba77;
    border: none;
    font-size: 1.4rem;
    padding: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.menu-arrow:hover {
    color: #ffeb01;
}

/* MENU */
.menu-top {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    padding-left: 40px;
    padding-right: 40px;
}

/* Scrollbar */
.menu-top::-webkit-scrollbar {
    height: 6px;
}

.menu-top::-webkit-scrollbar-thumb {
    background: #ecba77;
    border-radius: 3px;
}

.menu-top::-webkit-scrollbar-track {
    background: #003366;
}

.menu-top ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 10px;
}

.menu-top li {
    flex: 0 0 auto;
    padding: 0 8px;
    border-right: 1px solid #ecba77;
}

.menu-top li:last-child {
    border-right: none;
}

.menu-top a {
    color: #ecba77;
    font-weight: bold;
    text-decoration: none;
}

.menu-top a:hover {
    color: #ffeb01;
    text-decoration: underline;
}

.menu-top a.active {
    background-color: #ecba77;
    color: #003366;
    padding: 4px 8px;
    border-radius: 4px;
}

/* NADPIS DNE */
h2 {
    text-align: center;
    margin-bottom: 25px;
}

/* OBSAH STRÁNKY */
.content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    color: #003366;
    line-height: 1.6;
}

/* ÚVODNÍ FOTO */
.uvodni-foto {
    width: 100%;
    height: auto;
    border: 3px solid #003366;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* ÚVODNÍ TEXT */
.uvod-text {
    text-align: justify;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* MOZAIKA GALERIE */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 30px 0;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 2px solid #003366;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

//* ----------------------------------------------------------
   GLIGHTBOX – ÚPRAVY PRO TVŮJ WEB
   (originální CSS zůstává v glightbox.min.css)
---------------------------------------------------------- */

/* Fotka vždy vystředěná */
.gslide-media img {
    display: block !important;
    margin: 0 auto !important;
    height: auto !important;
    max-width: 100% !important;
}

/* Popisek – zlatý, vycentrovaný */
.gslide-description {
    background: transparent !important;
    padding: 4px 0 !important;
    text-align: center !important;
    max-width: 90% !important;
    color: #ecba77 !important;
}

.gslide-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #ecba77 !important;
    display: inline-block !important;
}

/* Popisek přitažený k fotce */
.glightbox-clean .gslide-description.description-bottom {
    margin-top: -40px !important;
}

.glightbox-clean .gdesc-inner {
    margin-top: 0 !important;
}