body {
    font-family: 'Inter', sans-serif;
	font-size: 17px;
    margin: 0;
}

/* FOTO modal */
.lz-photo-modal {
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    display: none;
}
.lz-photo-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: flex;
}
.lz-photo-modal img {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}
.lz-photo-modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* HORNY PASIK */
.top_info {
	width: 100%;
	background: rgba(47,79,47,0.75); /* jemnejšia zelená */
	color: rgba(255,255,255,0.75); /* menej výrazná biela */
	font-size: 12px;
	padding: 5px 0;
	text-align: center;
	position: relative; /* drží sa hore, ale neprekrýva */
	z-index: 9999; /* nad všetkým */
	font-weight: normal; /* odtučnenie */
}

/* HERO HEADER – základ */
.top_box {
    position: relative;
    width: 100%;
    min-height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Sezónny obrázok presunutý na pseudo-element */
.top_box::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: inherit;	/* použije rovnaký obrázok ako .top_box */
	background-size: cover;
	background-position: center top;
	z-index: 1;
}
/* Obsah: logo + banner */
.top_box .top_content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* LOGO – desktop */
#logo {
    width: 120px;
    flex-shrink: 0;
}
#logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
	filter: drop-shadow(0 0 3px white);
}
/* BANNER – desktop */
.top_banner img {
    display: block;
    height: auto;
    max-height: 90px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.top_box.jar1::before {
	background-image:url('../img/foto/jar.png');
	background-size: cover;
	background-position: top center;
}
.top_box.jar2::before {
	background-image:url('../img/foto/jar.png');
	background-size: cover;
	background-position: top center;
}
.top_box.leto1::before {
	background-image:url('../img/foto/leto.png');
	background-size: cover;
	background-position: top center;
}
.top_box.zima1::before {
	background-image:url('../img/foto/zima.png');
	background-size: cover;
	background-position: top center;
}
.top_box.zima2::before {
	background-image:url('../img/foto/zima.png');
	background-size: cover;
	background-position: top center;
}
.top_box.zima3::before {
	background-image:url('../img/foto/zima.png');
	background-size: cover;
	background-position: top center;
}
.top_box.zima4::before {
	background-image:url('../img/foto/zima.png');
	background-size: cover;
	background-position: top center;
}
.top_box.vianoce1::before {
	background-image:url('../img/foto/vianoce.png');
	background-size: cover;
	background-position: top center;
}
.top_box.vianoce2::before {
	background-image:url('../img/foto/vianoce.png');
	background-size: cover;
	background-position: top center;
}
/* horny banner */
.top_content img[src*="728"] {
	max-height: none !important;
	height: 90px !important;
	width: auto !important;
}

/* ===========================
   HLAVNÉ MENU – ZÁKLAD
=========================== */
.main_menu {
    width: 100%;
    background-color: #2f4f2f;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    position: relative;
    z-index: 50;
}
.main_menu > ul {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    list-style: none;
	justify-content: center;
}
.main_menu > ul > li {
    position: relative;
}
.main_menu > ul > li.active > a {
    background-color: #4f7f4f;
    color: #fff;
}
.main_menu > ul > li > a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.2s;
    white-space: nowrap;
}
.main_menu > ul > li > a:hover {
    background-color: #3d5f3d;
}
/* ===========================
   ŠÍPKY PRE POLOŽKY S MEGA MENU
=========================== */
.main_menu > ul > li.has-mega > a::after {
    content: " ▼";
    font-size: 10px;
    opacity: 0.7;
    margin-left: 4px;
}
/* ===========================
   MEGA MENU (DESKTOP)
=========================== */
.has-mega .mega {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2f4f2f;
    padding: 20px;
    width: 500px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border-top: 2px solid #4f7f4f;
    z-index: 100;
}
.has-mega:hover .mega {
    display: flex;
}
.mega .col {
    flex: 1;
    padding: 0 15px;
}
.mega h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
	position: relative;
}
.mega h4::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
}
.mega h4[data-link] {
    cursor: pointer;
}
.mega a {
    display: block;
    padding: 6px 0;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
    text-transform: lowercase;
}
.mega a:hover {
    opacity: 1;
    text-decoration: underline;
}
.mega a.active {
    font-weight: bold;
    text-decoration: underline;
    opacity: 1;
}



/* HLAVNY OBSAH */
/* Layout container */
.lz-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 4px;
    overflow-x: hidden;
}
/* Main content */
.lz-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
/* Sidebar */
.lz-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
/* Cards */
.lz-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
/* Typography */
.lz-card h1 {
    font-family: 'Inter', sans-serif;
    color: #1a3d1a; /* zelená z menu */
    margin-top: 0;
    margin-bottom: 28px;
}
.lz-card h2 {
    font-family: 'Inter', sans-serif;
    color: #1a3d1a; /* zelená z menu */
    margin-top: 0;
    margin-bottom: 14px;
}
.lz-card h3 {
    font-family: 'Inter', sans-serif;
    color: #1a3d1a; /* zelená z menu */
    margin-top: 0;
    margin-bottom: 16px;
}
.lz-card p {
    line-height: 1.6;
    font-size: 17px;
}

/* GRID pre fotky/videa */
.lz-photo-grid, .lz-video-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.lz-photo-grid a,
.lz-video-grid a {
    display: block;
}
.lz-photo-grid a img,
.lz-video-grid a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
	transition: opacity 0.2s;
}
.lz-photo-grid a:hover img,
.lz-video-grid a:hover img {
    opacity: 0.9;
}

/* Hlavička karty INZERCIA s odkazom vpravo */
.lz-latest-ads .lz-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
}
.lz-latest-ads .lz-card-header h2 {
    margin: 0;
}
.lz-card-header-link {
    font-size: 14px;
    color: #1a3d1a;
    text-decoration: none;
    opacity: 0.8;
}
.lz-card-header-link:hover {
    opacity: 1;
    text-decoration: underline;
}
/* Zoznam inzerátov */
.lz-ads-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* Jedna karta inzerátu */
.lz-ad {
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9f7;
    transition: box-shadow 0.2s, transform 0.2s;
}
.lz-ad-link {
    display: flex;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    padding: 12px;
}
.lz-ad:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}
/* Náhľadový obrázok */
.lz-ad-thumb {
    flex: 0 0 120px;
}
.lz-ad-thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
}
/* Textová časť */
.lz-ad-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lz-ad-title {
    font-size: 17px;
    margin: 0;
    color: #1a3d1a;
}
.lz-ad-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    opacity: 0.8;
    align-items: center;
}
.lz-ad-category {
    padding: 2px 8px;
    border-radius: 999px;
    background: #e3efe3;
}
.lz-ad-excerpt {
    margin: 4px 0 0 0;
    font-size: 15px;
    line-height: 1.5;
}
.lz-ad-cta {
    margin-top: 4px;
    font-size: 13px;
    color: #1a3d1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* OZNAMY */
.lz-ann-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* Jedna karta oznamu */
.lz-ann {
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9f7;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    gap: 16px;
    padding: 12px;
}
.lz-ann:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}
/* Ak oznam nemá fotku → text cez celú šírku */
.lz-ann:not(:has(.lz-ann-thumb img)) {
    flex-direction: column;
}
.lz-ann:not(:has(.lz-ann-thumb img)) .lz-ann-body {
    width: 100%;
}
.lz-ann:not(:has(.lz-ann-thumb img)) .lz-ann-thumb {
    display: none;
}
/* Fotka (voliteľná) */
.lz-ann-thumb {
    flex: 0 0 160px;
}
.lz-ann-thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
}
/* Ak oznam nemá fotku → skryť blok */
.lz-ann:not(:has(.lz-ann-thumb img)) .lz-ann-thumb {
    display: none;
}
/* Textová časť */
.lz-ann-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lz-ann-title {
    font-size: 18px;
    margin: 0;
    color: #1a3d1a;
}
.lz-ann-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
}
/* CTA */
.lz-ann-cta {
    margin-top: 4px;
    font-size: 13px;
    color: #1a3d1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FOTO kat */
/* Nadpis kategórie */
.lz-photo-category .lz-cat-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 28px;
    color: #1a3d1a;
}

/* FOTO najnovsie */
/* Sekcia kategórie fotiek */
.lz-photo-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
}
/* Hlavička sekcie */
.lz-photo-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
/* Textová časť */
.lz-photo-section-info {
    max-width: 700px;
}
.lz-photo-section-title {
    /*margin: 0 0 6px 0;*/
    margin: 0;
    font-size: 22px;
    color: #1a3d1a;
}
.lz-photo-section-desc {
    margin: 0 0 4px 0;
    font-size: 15px;
    opacity: 0.85;
}
.lz-photo-section-meta {
    margin: 0;
    font-size: 14px;
    opacity: 0.75;
}
.lz-photo-section-meta .today {
    margin-left: 8px;
    color: #1a3d1a;
    font-weight: 600;
}
/* Tlačidlo vpravo */
.lz-photo-section-link {
    align-self: center;
    padding: 6px 14px;
    background: #e3efe3;
    color: #1a3d1a;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
    white-space: nowrap;
}
.lz-photo-section-link:hover {
    background: #d4e6d4;
}
/* Grid fotiek */
.lz-photo-section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.lz-photo-section-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
}
/* FOTO detail */
/* sipky < >*/
.lz-photo-nav a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 12px 16px;
    background: rgba(0,0,0,0.25);
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    z-index: 20;
}
.lz-photo-prev {
    left: 10px;
}
.lz-photo-next {
    right: 10px;
}
.lz-photo-nav a:hover {
    background: rgba(0,0,0,0.45);
    color: #fff;
}
/* HERO FOTO */
.lz-photo-hero {
    position: relative;
}
.lz-photo-hero img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #000;
    cursor: zoom-in;
}
/* LAYOUT */
.lz-photo-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    max-width: 1300px;
    margin: 32px auto;
    padding: 0 10px;
    box-sizing: border-box;
    overflow-x: hidden;
}
/* HLAVNÁ KARTA */
.lz-photo-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}
.lz-photo-title {
    margin: 0;
    font-size: 28px;
    color: #1a3d1a;
}
.lz-photo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 15px;
    opacity: 0.85;
    align-items: center;
}
.lz-photo-category-link {
    color: #1a3d1a;
    font-weight: 600;
    text-decoration: none;
}

.lz-photo-category-link:hover {
    text-decoration: underline;
}
.lz-photo-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0px;
}
.lz-photo-stats {
    display: flex;
    gap: 20px;
    font-size: 15px;
}
.lz-btn-link {
    background: none;
    border: none;
    color: #2e7d32;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    margin: 0;
    text-decoration: underline;
}
.lz-btn-link:hover {
    color: #1b4d1f;
}
.lz-photo-votes-link {
    /*font-size: 14px;
    color: #666; /* jemnejšia sivá */
    margin: 4px;
}
.lz-photo-main .lz-photo-stats,
.lz-photo-main .lz-photo-votes-link {
    margin-bottom: -16px;
}
#show-votes-btn {
    font-size: 13px;
    color: #777;
    text-decoration: underline;
    padding: 0;
}
.lz-votes-list {
    margin-top: 12px;
    padding: 12px;
    background: #f7f7f7;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
}
.lz-photo-fav-header {
    font-size: 14px;
    color: #666; /* jemnejšia sivá */
    margin: 8px 4px 4px 4px;
}
#show-favorites-btn {
    font-size: 13px;
    color: #777;
    text-decoration: underline;
    padding: 0;
}
.lz-fav-list {
    margin-top: 10px;
    padding: 12px;
    background: #f7f7f7;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
}


/* SIDEBAR */
.lz-photo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}
.lz-photo-sidebar > * {
    max-width: 100%;
}

/* FOTO DETAIL SIDEBAR TLAČIDLÁ  */
/*
.lz-photo-actions .btn {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    background: #e3efe3;
    color: #1a3d1a;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 8px;
    box-sizing: border-box;
}
.lz-photo-actions .btn:hover {
    background: #d4e6d4;
}
*/
.lz-photo-actions.lz-card {
    padding: 16px;
}
.lz-photo-favorites.lz-card {
    padding: 16px;
}
/* Základný štýl tlačidiel */
.lz-photo-actions .lz-btn {
    display: block;
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    box-sizing: border-box;
}
/* Hover efekt – jemný, nerušivý */
.lz-photo-actions .lz-btn:hover {
    background: #efefef;
    border-color: #dcdcdc;
}
/* Jemná červená – Vymazať */
.lz-photo-actions .lz-btn-delete {
    background: #fff5f5;
    border-color: #ffdada;
    color: #c62828;
}
.lz-photo-actions .lz-btn-delete:hover {
    background: #ffecec;
    border-color: #ffcccc;
}
/* Jemná oranžová – Označiť */
.lz-photo-actions .lz-btn-mark {
    background: #fff8ef;
    border-color: #ffe4c7;
    color: #d47a1c;
}
.lz-photo-actions .lz-btn-mark:hover {
    background: #fff1df;
    border-color: #ffd7b0;
    cursor: pointer;
}

/* FOTO detail sidebar Oznacit za nevhodna */
/* Kontajner formulára */
.lz-mark-form {
    margin-top: 12px;
    padding: 14px;
    background: #fff8ef; /* jemná oranžová ako tlačidlo */
    border: 1px solid #ffe4c7;
    border-radius: 6px;
}
/* Nadpis */
.lz-mark-title {
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: #d47a1c;
}
/* Textové pole */
.lz-mark-textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    font-size: 15px;
    resize: vertical;
    box-sizing: border-box;
    margin-bottom: 12px;
}
/* Submit tlačidlo */
.lz-mark-submit {
    width: 100%;
    padding: 10px 14px;
    background: #d47a1c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.lz-mark-submit:hover {
    background: #b96517;
}


/* KOMENTÁRE */
.lz-photo-comments {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.lz-photo-details {
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lz-photo-details h3 {
    margin: 0;
    font-size: 18px;
    color: #1a3d1a;
}
.lz-photo-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 15px;
    line-height: 1.5;
}
.lz-photo-details li strong {
    color: #1a3d1a;
}
/* FOTO detail EXIF */
.lz-photo-exif {
    padding: 0 0 16px 0;
    border-bottom: 1px solid #eee;
}
.lz-photo-exif-toggle {
    font-size: 15px;
    font-weight: 600;
    color: #1a3d1a;
    cursor: pointer;
    user-select: none;
    margin-bottom: 8px;
}
.lz-photo-exif-content {
    display: none;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.85;
}
.lz-photo-exif-content strong {
    font-weight: 600;
    color: #2f4f2f;
}
/* zmenšíme medzery z &nbsp; */
.lz-photo-exif-content {
    white-space: normal;   /* ignoruje veľa &nbsp; za sebou */
}
/* voliteľné: zmenšiť vertikálnu medzeru medzi riadkami */
.lz-photo-exif-content br {
    line-height: 0.8;
}

/* FOTO detail komentare */
/* Nadpis */
.lz-comments-title {
    margin: 0 0 12px 0;
    font-size: 22px;
    color: #1a3d1a;
}
/* Tlačidlo na otvorenie formulára */
.lz-comment-toggle {
    margin-bottom: 16px;
}
/* Formulár */
.lz-comment-form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.lz-comment-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    resize: vertical;
    margin-bottom: 14px;
    font-size: 15px;
}
.lz-comment-upload {
    margin-bottom: 12px;
}
.lz-upload-label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}
.lz-upload-input {
    margin-top: 6px;
}
.lz-upload-note {
    font-size: 13px;
    opacity: 0.7;
}
.lz-comment-rules {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 16px;
}
.lz-comment-rules ol {
    margin: 6px 0 10px 20px;
}
.lz-comment-rules a {
    color: #1a3d1a;
    text-decoration: none;
    opacity: 0.8;
}
.lz-comment-rules a:hover {
    opacity: 1;
    text-decoration: underline;
}
/* Zoznam komentárov */
.lz-comment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Jeden komentár */
.lz-comment {
    display: flex;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}
.lz-comment:last-child {
    border-bottom: none;
}
.lz-comment-avatar img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}
.lz-comment-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lz-comment-header {
    display: flex;
    gap: 10px;
    align-items: center;
}
.lz-comment-author {
    font-weight: 600;
    color: #1a3d1a;
    text-decoration: none;
}
.lz-comment-author:hover {
    text-decoration: underline;
}
.lz-comment-date {
    font-size: 13px;
    opacity: 0.7;
}
.lz-comment-text {
    font-size: 15px;
    line-height: 1.5;
}
.lz-comment-text2 {
    font-size: 13px;
    line-height: 1.5;
    color: #1a3d1a;
}
.lz-comment-text3 {
    font-size: 13px;
    line-height: 1.5;
    color: #4A6F8A;
}
.lz-comment-actions {
    margin-top: 4px;
    font-size: 13px;
    display: flex;
    gap: 12px;
}
.lz-comment-actions a {
    color: #1a3d1a;
    text-decoration: none;
    opacity: 0.8;
}
.lz-comment-actions a:hover {
    opacity: 1;
    text-decoration: underline;
}
.lz-comment-actions a.lz-admin-action {
    color: #4A6F8A !important;
    font-weight: 600;
    opacity: 0.9;
}
.lz-comment-actions a.lz-admin-manage {
    color: #4A6F8A !important;
    font-weight: 600;
    opacity: 0.9;
}
.lz-admin-trash-btn {
    display: block;
    width: 100%;
    padding: 10px 14px;
    background: #8b2f2f;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    text-align: center;
}
.lz-admin-trash-btn:hover {
    background: #a33a3a;
}
.lz-comment-replyto {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 4px;
    padding-left: 6px;
    border-left: 2px solid #e3efe3; /* jemná zelená linka */
}
.lz-comment-replyto a {
    color: #1a3d1a;
    text-decoration: none;
}
.lz-comment-replyto a:hover {
    text-decoration: underline;
}
.lz-comment:target {
    background: #f0f5f0;
    transition: background 0.6s ease;
}
.lz-comment-photo {
    margin-top: 8px;
}
.lz-comment-photo img {
    height: 120px;
    width: auto;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.lz-comment-photo img:hover {
    opacity: 0.85;
}
#lzCommentForm #lzReplyInfo {
    background: #eef6ec !important;
    border: 1px solid #c7d9c2 !important;
    color: #2f4a2c !important;
    padding: 6px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#lzCommentForm #lzReplyCancel {
    color: #2f4a2c !important;
    text-decoration: none !important;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
}
.lz-reply-cancel:hover {
    color: #000;
}

/* FOTO detail tlacidla pod foto */
/* Kontajner tlačidiel pod fotkou */
.lz-photo-actions-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 24px 0;
    justify-content: center;
}
/* Základný štýl tlačidiel */
.lz-btn-action {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, opacity 0.2s;
    color: white;
}
/* Farebné varianty */
.lz-btn-action.green {
    background: #2f4f2f;
}
.lz-btn-action.green:hover {
    background: #3d6b3d;
}
.lz-btn-action.red {
    background: #8b2f2f;
}
.lz-btn-action.red:hover {
    background: #a33a3a;
}
.lz-btn-action.orange {
    background: #b65f1b;
}
.lz-btn-action.orange:hover {
    background: #d17322;
}
.lz-btn-action.blue {
    background: #1a3d6b;
}
.lz-btn-action.blue:hover {
    background: #224f8a;
}
.lz-btn-action.teal {
    background: #2f6f6f;
}
.lz-btn-action.teal:hover {
    background: #3d8a8a;
}


/* banner 6 300x300 v detaile foto */
.lz-photo-banner {
    margin-bottom: 20px;
    text-align: center;
}
.lz-photo-banner img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
}


.lz-show-more {
    color: #1a3d1a;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    display: inline-block;
}


/* Navigácia stránok */
.lz-cat-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.lz-cat-range {
    font-size: 15px;
    opacity: 0.8;
}
.lz-cat-pages a {
    margin-left: 12px;
    font-size: 15px;
    color: #1a3d1a;
    text-decoration: none;
    opacity: 0.8;
}
.lz-cat-pages a:hover {
    opacity: 1;
    text-decoration: underline;
}
.lz-cat-pages a.active {
    font-weight: 600;
    opacity: 1;
}

/* GRID fotiek */
.lz-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
/* Jedna fotka */
.lz-cat-photo {
    background: #f8f9f7;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}
.lz-cat-photo:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
/* Náhľad fotky */
.lz-cat-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}
/* Info o fotke */
.lz-cat-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lz-cat-title-photo {
    font-size: 16px;
    font-weight: 600;
    color: #1a3d1a;
    text-decoration: none;
}
.lz-cat-title-photo:hover {
    text-decoration: underline;
}
.lz-cat-author {
    font-size: 14px;
    opacity: 0.8;
    display: flex; /**/
    align-items: center; /**/
    gap: 6px; /**/
}
.lz-cat-author a {
    color: #1a3d1a;
    text-decoration: none;
}
.lz-cat-author a:hover {
    text-decoration: underline;
}
/* Štatistiky */
.lz-cat-stats {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lz-cat-stat {
    font-size: 14px;
    line-height: 1.4;
}
.lz-cat-stat .label {
    font-weight: 600;
}
.lz-cat-stat .value {
    margin-left: 4px;
}
.lz-cat-stat .last {
    display: block;
    font-size: 13px;
    opacity: 0.7;
    margin-left: 0;
}


/* ADMIN PANEL */
.lz-admin-photo-panel {
    max-width: 1300px;
    margin: 40px auto;
    padding: 24px;
    background: #f4f7fa;
    border: 1px solid #d6e0ea;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.lz-admin-title {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 24px;
    color: #4A6F8A;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Riadky */
.lz-admin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
}
.lz-admin-info {
    font-size: 16px;
    color: #333;
}
/* Tlačidlá */
.lz-admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.lz-admin-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    color: white;
    transition: background 0.2s;
}
.lz-admin-btn.green { background: #2f4f2f; }
.lz-admin-btn.green:hover { background: #3d6b3d; }
.lz-admin-btn.blue { background: #4A6F8A; }
.lz-admin-btn.blue:hover { background: #5a82a3; }
.lz-admin-btn.teal { background: #2f6f6f; }
.lz-admin-btn.teal:hover { background: #3d8a8a; }
.lz-admin-btn.red { background: #8b2f2f; }
.lz-admin-btn.red:hover { background: #a33a3a; }
/* Ikonové tlačidlá */
.lz-admin-btn.icon {
    display: flex;
    align-items: center;
    gap: 6px;
}
/* Bloky */
.lz-admin-block {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
}
.lz-admin-block h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #4A6F8A;
}
/* Nebezpečný blok */
.lz-admin-block.danger {
    border-color: #ffcccc;
    background: #fff5f5;
}
.lz-admin-block.danger h3 {
    color: #8b2f2f;
}
/* Formuláre */
.lz-admin-block label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}
.lz-admin-block input,
.lz-admin-block select,
.lz-admin-block textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 14px;
    font-size: 15px;
    box-sizing: border-box;
}
.lz-admin-block textarea {
    min-height: 100px;
}

/* IKONY OTOCIT */
.lz-admin-btn.icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lz-icon {
    width: 20px;
    height: 20px;
    stroke: rgba(255,255,255,0.65); /* stmavená biela */
    flex-shrink: 0;
}
/* Tmavšie tlačidlá pre otočenie fotky */
.rotate-btn {
    background: #4b4b4b !important;   /* tmavá sivá #1f1f1f */
    border-color: #000 !important;
    color: #fff !important;
}
.rotate-btn:hover {
    background: #686868 !important;      /* ešte tmavšie pri hover */
}

/* Správcovský alert v admin paneli */
.lz-admin-flag {
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
/* Kritický stav – nevymazávať */
.lz-admin-flag-danger {
    background: #fff5f5;
    border: 1px solid #ffb3b3;
}
/* Hlavný label */
.lz-admin-flag-label {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #8b2f2f;
    text-transform: uppercase;
}
/* Doplnkový text */
.lz-admin-flag-text {
    font-size: 14px;
    color: #5a1f1f;
}
.lz-admin-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.lz-admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.lz-admin-table thead {
    background: #f5f5f5;
}
.lz-admin-table th {
    text-align: left;
    padding: 12px 14px;
    font-weight: 600;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
}
.lz-admin-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
    color: #333;
}
.lz-admin-table tr:last-child td {
    border-bottom: none;
}
.lz-admin-table tbody tr:hover {
    background: #fafafa;
}


/* FOTO najlepsi fotografi tabulka */
/* Sekcia kategórií */
.lz-category-block {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e6e6e6;
}
/* Hlavička kategórie */
.lz-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.lz-category-header h2 {
    margin: 0;
    font-size: 24px;
    color: #1a3d1a;
}
.lz-category-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}
/* Tabuľka */
.lz-ranking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}
.lz-ranking-table thead th {
    text-align: left;
    padding: 10px 8px;
    background: #f4f7f4;
    color: #1a3d1a;
    font-weight: 600;
    border-bottom: 2px solid #d9e3d9;
}
.lz-ranking-table tbody td {
    padding: 10px 8px;
    border-bottom: 1px solid #eee;
}
.lz-ranking-table .cnt {
    text-align: center;
}
/* Zebra efekt */
.lz-ranking-table tbody tr:nth-child(even) {
    background: #fafafa;
}
/* Linka "Zobraziť fotky" */
.lz-ranking-table a {
    color: #1a3d1a;
    font-weight: 600;
    text-decoration: none;
}
.lz-ranking-table a:hover {
    text-decoration: underline;
}

/* PROFIL LOGIN */
.profil-wrap {
    display: inline-flex;
    align-items: center;   /* vertikálne centrovanie */
    gap: 6px;              /* medzera medzi ikonami a menom */
}
.profil-wrap img.profil {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.profil.muz {
    color: #1a3d1a;
}
.profil.zena {
    color: #b65f6b;
}
.profil.spravca {
    color: #4a6f8a;
}
.lz-comment .lz-comment-author.spravca {
    color: #4A6F8A !important;
}


/* MESACNIK odkaz a */
/* Odkazy vo vnútri .lz-card */
.lz-card a {
    color: #1a3d1a;              /* zelená z tvojej palety */
    text-decoration: none;       /* bez podčiarknutia */
    font-weight: 500;            /* jemné zvýraznenie */
    opacity: 0.85;               /* decentný vzhľad */
    transition: opacity 0.2s, text-decoration 0.2s;
}
.lz-card a:hover {
    opacity: 1;
    text-decoration: underline;  /* moderný, čistý hover */
}


/* EMPTY STATE – CHYBOVA HLASKA */
.lz-empty {
    padding: 48px;
    text-align: center;
    background: #f8f9f7;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.lz-empty p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #1a3d1a;
    opacity: 0.85;
}

/* Admin akcie – jednotný dizajn */
.lz-admin-action {
    color: #4A6F8A;              /* oceľovo-modrá */
    font-weight: 600;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s, text-decoration 0.2s;
}
.lz-admin-action:hover {
    opacity: 1;
    text-decoration: underline;
}

.lz-info {
    font-size: 14px;
    color: #5a1f1f;
}


/* ===========================
   FOOTER – MODERNÝ ŠTÝL
=========================== */
.lz-footer {
    background: #1f2f1f;
    color: #fff;
    padding: 40px 0 20px 0;
    margin-top: 40px;
    border-top: 3px solid #4f7f4f;
    font-size: 15px;
}
.lz-footer a.active {
    color: #c8e6c9;
    font-weight: bold;
    text-decoration: underline;
}
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}
.footer-col {
    flex: 1;
    min-width: 180px;
}
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #c8e6c9;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
}
.footer-col a {
    display: block;
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
    padding: 5px 0;
    transition: opacity 0.2s;
}
.footer-col a:hover {
    opacity: 1;
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}

img {
    max-width: 100%;
}

/* HLASKA */
.lz-msg {
    max-width: 960px;
    margin: 1.5rem auto 1.2rem;
    padding: 0.85rem 1.2rem;
    background: #eef6ec;          /* jemná prírodná zelená */
    border: 1px solid #c7d9c2;    /* decentná línia */
    color: #2f4a2c;               /* tmavšia, čitateľná zelená */
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.45;
}


/* TABLET */
@media (max-width: 1024px) and (min-width: 769px) {
    .top_box {
        width: 100%;
        background-size: cover;
		flex-direction: row;
		padding: 10px;
	}
	#logo {
		width: 120px;
		height: 100px;
	}
	.main_menu > ul {
		max-width: 100%;
		padding: 0 10px;
		gap: 5px;
		justify-content: center;
	}
	.main_menu > ul > li > a {
		padding: 10px 12px;
		font-size: 14px;
		white-space: nowrap;
	}
	/* Mega menu na tablete */
	.has-mega .mega {
		width: 100%;
		padding: 15px;
	}
	.mega .col {
		padding: 0 10px;
	}
	.mega h4 {
		font-size: 13px;
	}
	.mega a {
		font-size: 13px;
		padding: 5px 0;
	}

    .lz-container {
        grid-template-columns: 1fr 280px;
    }

    .lz-photo-grid, .lz-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBIL */
@media (max-width: 900px) {
    /* FOTO detail */
    .lz-photo-layout {
        grid-template-columns: 1fr;
    }
}


/* MOBIL */
@media (max-width: 768px) {

	/* horny pasik nezobrazovat */
    .top_info {
        display: none !important;
    }

	/* Zrušíme desktopovú minimálnu výšku */
    .top_box {
        min-height: 0 !important;
        height: auto !important;
        padding: 0 !important;
    }
    /* Hero obrázok – tenký pásik */
    .top_box::before {
        height: 60px; /* ak zmenim paddin v .top_box .top_content z 5px na 10px, musim dat height z 60px na 70px */
        top: 0;
        bottom: auto;
    }
    /* Obsah pod hero obrázkom */
    .top_box .top_content {
        padding: 0px 0 !important; /* medzera nad a pod bannerom */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        text-align: center;
    }
	/* Prebijeme banner hack */ .top_content img[src*="728"] {
		height: auto !important;
		max-height: 80px !important;
	}
    #logo {
        display: none !important;
    }
    .top_banner {
        padding: 5px !important; /* hore, dole, vpravo, vľavo */
        width: 100%;
        box-sizing: border-box; /* aby padding nezväčšil šírku */
    }
    .top_banner img {
        width: auto !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 80px !important;
        object-fit: contain;
        flex-shrink: 1;
    }
    .main_menu ul {
        flex-direction: column;
    }

    .main_menu a {
        padding: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    /* Mega menu na mobile */
    .has-mega .mega {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        padding: 10px 0;
        display: none;
        flex-direction: column;
    }
    .has-mega:hover .mega {
        display: block;
    }
    .mega .col {
        padding: 10px 15px;
    }

    .lz-container {
        grid-template-columns: 1fr;
    }
    .lz-photo-grid, .lz-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lz-sidebar {
        order: 2;
    }

    /* FOTO kat */
    .lz-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* banner 6 300x300 v detaile fotky */
    .lz-photo-banner img {
        max-width: 200px;
    }
    .lz-photo-banner {
        margin: 0 auto 16px auto;
    }

    .footer-container {
        flex-direction: column;
        gap: 25px;
    }
    .footer-col {
        min-width: 100%;
    }
    .footer-bottom {
        margin-top: 20px;
    }
    /* FOTO najnovsie */
    .lz-photo-section-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FOTO detail sipky < > */
    .lz-photo-nav a {
        font-size: 36px;
        padding: 16px 20px;
    }

    /* FOTO detail tlacidla pod foto – zarovnať na stred */
    .lz-photo-actions-bar {
        justify-content: center;
    }

}

@media (max-width: 600px) {

    /* foto/video uvod */
	.lz-photo-grid, .lz-video-grid {
		grid-template-columns: 1fr;
	}

    /* inzeraty uvod */
    .lz-ad-link {
        flex-direction: column;
    }
    .lz-ad-thumb {
        flex: 0 0 auto;
    }

    /* oznamy */
    .lz-ann-link {
        flex-direction: column;
    }
    .lz-ann-thumb {
        flex: 0 0 auto;
    }

    /* FOTO najlepsi fotografi tabulka */
    .lz-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .lz-category-note {
        font-size: 13px;
    }

    /* FOTO detail komentare */
    .lz-comment {
        flex-direction: column;
    }

    .lz-comment-avatar img {
        width: 36px;
        height: 36px;
    }

}

@media (max-width: 500px) {
    /* FOTO kat */
    .lz-cat-grid {
        grid-template-columns: 1fr;
    }
}