:root {
	--bs-primary: #cbb26a!important;
}

a {
	color: var(--bs-primary);
	text-decoration: none;
}

a:hover {
	color: #9a8956; /* tmavší odtieň alebo rovnaký s podčiarknutím */
	text-decoration: underline;
}

.header-logo {
	width:150px;
}

@media (min-width:780px) {
	.header-logo {
		width:200px;
	}

}

.primary-text-color {
	color: var(--bs-primary)!important;
}


.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}
.pagination-wrapper {
	margin-top: 2rem;
}

.page-item.active .page-link {
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
	color: #fff;
}

.page-link {
	color: var(--bs-primary);
	border: 1px solid #dee2e6;
	background-color: #fff;
}

.page-link:hover {
	background-color: rgba(226, 199, 90, 0.15); /* jemný odtieň pri hoveri */
	color: var(--bs-primary);
}




.post-content p {
	text-align:justify;
}

img {
	max-width: 100%;
	height: auto;
}

.post_info_date {
	font-style: italic;
	color: var(--bs-primary);
	position: relative;
	display: block;
	margin: auto;
	margin-bottom: 10px;
	width: 60%;
	font-size: .9em;
}
/*
.post_info_date:before {
content: "";
border-bottom: 1px solid var(--bs-primary);
width: 100%;
position: absolute;
left: 0;
top: 50%;
z-index: 0
}*/

.post_info_date span {
	display: inline-block;
	padding: 0 1.2em;
	background: #fff;
	position: relative;
	z-index: 2
}


.commentlist {
	list-style: none;
	padding-left: 0;
}

.commentlist li {
	margin-bottom: 2rem;
	border-bottom: 1px solid #dee2e6;
	padding-bottom: 1rem;
}

.comment-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 500;
}

.comment-author .avatar {
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

.comment-meta {
	font-size: 0.875rem;
	color: #6c757d;
	margin-bottom: 0.5rem;
}

.comment-body p {
	margin-bottom: 0.5rem;
}

.comment-reply-link {
	font-size: 0.875rem;
	text-decoration: none;
}

.comment-reply-link:hover {
	text-decoration: underline;
}

.comment-form {
	margin-top: 3rem;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	width: 100%;
	padding: 0.75rem;
	border-radius: 0.5rem;
	border: 1px solid #ced4da;
}

.comment-form .form-submit input[type="submit"] {
	display: inline-block;
	text-align: center;
	padding: 0.75em 1em;
	font-weight: 700;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
	font-family: 'Roboto';
	border: 2px solid;
	background-color: var(--bs-primary);
	color: #ffffff;
	border-color: var(--bs-primary);
}




.post-tags a,
.post-categories a {
	font-weight: 400;      /* normálny text */
	color: #555 !important; /* jemnejší text */
	background-color: #f1f1f1;
	border-radius: 999px;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.post-tags a:hover,
.post-categories a:hover {
	background-color: var(--bs-primary);
}



div#sidebar section:first-child {
	margin-top: 0;
}
div#sidebar section {
	display: block;
	padding: 40px 25px;
	box-sizing: border-box;
	border: 1px solid #e1e1e1;
	margin: 40px 0 0 0;
}
div#sidebar section.widget_search {
	border: 0 !important;
}

div#sidebar section h2 {
	font-size: 24px;
	text-align: center;
	margin-bottom: 15px;
}

@media (max-width:560px) {
	div#sidebar section h2 {
		font-size: 18px;
	}
}
div#sidebar .widget ul li {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: .4em;
	text-decoration: underline;
	list-style: none; /* ✅ odstráni kruhy */
	transition: all 0.3s ease;
}

div#sidebar .widget ul li::before {
	content: '›'; /* alebo '→', '»', prípadne fontawesome či Bootstrap Icon */
	position: absolute;
	left: 0;
	top: 0;
	color: #555 !important;
	font-weight: bold;
	font-size: 1em;
}

div#sidebar .widget ul li a {
	color: #555 !important;
}


.widget_tag_cloud .tagcloud a {
	display: inline-block;
	background-color: #f1f1f1;
	color: #333;
	padding: 0.35em 0.75em;
	margin: 0.25em;
	border-radius: 999px;
	font-size: 0.875rem !important;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.widget_tag_cloud .tagcloud a:hover {
	background-color: var(--bs-primary);
	color: #fff;
	text-decoration: none;
}


#searchform {
	max-width: 100%;
}

#searchform .form-control {
	border-radius: 999px 0 0 999px;
}

#searchform .btn {
	border-radius: 0 999px 999px 0;
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}
.form-control:focus {
	color: var(--bs-body-color);
	background-color: var(--bs-body-bg);
	border-color: var(--bs-primary);
	outline: 0;
	box-shadow: none;
}


.widget_text.header-widget.header-left.widget_custom_html a {
	color: #323232;
	font-size: 18px;
	margin: 5px;
	text-decoration: none;
}

.widget_text.header-widget.header-left.widget_custom_html a:hover {
	color: var(--bs-primary);
}






/*footer*/
footer.web-footer {
	background: transparent;
	color:var(--farba2);
}

footer.web-footer ul {
	list-style: none;
}

footer.web-footer a {
	color: var(--farba2);
}

footer.web-footer a:hover {
	color: var(--farba3);
}

footer.web-footer section.footer-copyright {
	padding-top: 15px;
	padding-bottom: 15px;
	max-width: 100%;
	background: #000000;
	color: #ffffff;
}

footer.web-footer ul {
	margin-top:25px;
}







form.wpcf7-form {
	max-width: 100%;
	width: 100%;
}

form.wpcf7-form input[type="text"], 
form.wpcf7-form input[type="email"], 
form.wpcf7-form input[type="tel"],
form.wpcf7-form input[type="number"],
form.wpcf7-form input[type="url"],
form.wpcf7-form textarea {
	border-radius: 0px;
	max-width: 100%;
	width:1024px;
	margin-bottom: 10px;
	padding: 10px;
	width: 100%;
	border:2px solid;
}

form.wpcf7-form a {
	text-decoration: none;
	color: var(--bs-primary);
}

form.wpcf7-form input[type="submit"] {
	cursor: pointer;
	color: #ffffff;
	background: var(--bs-primary);
	border: 1px solid var(--bs-primary);
	border-radius: 0px;
	padding: 14px 26px!important;
	transition: ease-in-out .15s;
	text-decoration: none;
	margin-top: 30px;
}

form.wpcf7-form input[type="submit"]:hover {
	color: #ffffff;
	background: #9a8956;
	border: 1px solid #9a8956;
}


@media(max-width:780px) {
	form.wpcf7-form input[type="submit"] {
		margin:30px auto;
		display:block;
	}
}

form.wpcf7-form span.info-message {
	display: block;
	margin-bottom: 5px;
}





/*btn z bootstrapu napr pri projektoch vypis kategorie*/
.btn-primary {
	cursor: pointer;
	color: #ffffff;
	background: var(--bs-primary);
	border: 1px solid var(--bs-primary);
	border-radius: 30px;
	padding: 8px 16px!important;
	transition: ease-in-out .15s;
	font-size: .9em;
	text-decoration: none!important;
	margin-top: 30px;
}

.btn-primary:hover {
	background: #011633;
}







/*style pre daneho klienta*/

li.cta_menu a {
	background: var(--bs-primary) !important;
	color: #ffffff !important;
	border-radius: 0px !important;
	transition: all .3s ease-in-out !important;
	text-align:center!important;
}
li.cta_menu a:hover {
	background: #9a8956!important;
}

/*
.w-100.breadcrumb {
	background-color:#1F4CB214!important;
}*/
/*
.w-100.breadcrumb .text-white {
	color:black!important;
}
*/

.w-100.breadcrumb a:hover {
	color:#ffffff!important;
}








/*obj formular*/

/* ========== PENB FORM (CF7) – LAYOUT & STYLES ========== */
.pneb-form h3{
  margin: 1.25rem 0 .5rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

/* Grid kontajner */
.pneb-form .form-grid{
  display: grid;
  grid-template-columns: 1fr;    /* mobil default */
  gap: 14px;
	background:#f3f8f6;
	padding:25px;
}

/* Položka poľa */
.pneb-form .field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Tablet: 2 stĺpce */
@media (min-width: 768px){
  .pneb-form .form-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 stĺpce */
@media (min-width: 1200px){
  .pneb-form .form-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Utility šírky */
.pneb-form .span-2{ grid-column: span 2; }
.pneb-form .span-3{ grid-column: span 3; }

/* Labely */
.pneb-form label{
  font-weight: 500;
  font-size: .95rem;
  line-height: 1.25;
  margin: 0;
}

/* Textové polia, selecty, textarea (bez checkbox/radio) */
.pneb-form input:not([type="checkbox"]):not([type="radio"]),
.pneb-form select,
.pneb-form textarea{
  width: 100%;
  padding: .6rem .7rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font: inherit;
  line-height: 1.2;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease;
}

/* Focus */
.pneb-form input:not([type="checkbox"]):not([type="radio"]):focus,
.pneb-form select:focus,
.pneb-form textarea:focus{
  outline: none;
  border-color: #94a3b8; /* slate-400 */
  box-shadow: 0 0 0 3px rgba(148,163,184,.25);
}

/* Textarea výška */
.pneb-form textarea{
  min-height: 120px;
  resize: vertical;
}

/* CF7 validačné stavy */
.pneb-form .wpcf7-not-valid{
  border-color: #ef4444 !important; /* red-500 */
  box-shadow: 0 0 0 3px rgba(239,68,68,.15);
}
.pneb-form .wpcf7-not-valid-tip{
  color: #b91c1c; /* red-700 */
  font-size: .85rem;
  margin-top: 2px;
}

/* CF7 hláška pod formulárom */
.pneb-form .wpcf7-response-output{
  border-radius: 8px;
  padding: .75rem 1rem;
  margin: .75rem 0 0;
}

/* Checkboxy / rádio */
.pneb-form .wpcf7-list-item{
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: .25rem 1rem .25rem 0;
}
.pneb-form .wpcf7-list-item input[type="checkbox"],
.pneb-form .wpcf7-list-item input[type="radio"]{
  width: auto;
  height: auto;
  margin: 0;
}
.pneb-form .wpcf7-list-item-label{
  line-height: 1.3;
}

/* Skupiny checkboxov do 2 stĺpcov (tablet+) */
@media (min-width: 768px){
  .pneb-form .wpcf7-checkbox,
  .pneb-form .wpcf7-acceptance{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem 1rem;
  }
}

/* Number inputs – odstránenie spinnerov */
.pneb-form input[type="number"]{
  -moz-appearance: textfield;
}
.pneb-form input[type="number"]::-webkit-outer-spin-button,
.pneb-form input[type="number"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}

/* Tlačidlo odoslať (ak používaš .block-btn1) */
.pneb-form .block-btn1{
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: .8rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--bs-primary, #1d4ed8);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: filter .2s ease, transform .02s ease;
}
.pneb-form .block-btn1:hover{ filter: brightness(.95); }
.pneb-form .block-btn1:active{ transform: translateY(1px); }

/* Odseky */
.pneb-form p{ margin: .5rem 0; }

/* Medzery medzi mriežkami */
.pneb-form .form-grid + .form-grid{ margin-top: .25rem; }

/* Pre istotu: zruš max-width, ktorú niektoré témy dávajú vstupom */
.pneb-form input,
.pneb-form select,
.pneb-form textarea{
  max-width: 100% !important;
}

/* === MOBILE FIXES (≤ 767.98px) === */
@media (max-width: 767.98px){
  /* vždy 1 stĺpec a plná šírka */
  .pneb-form .form-grid{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .pneb-form .field,
  .pneb-form .span-2,
  .pneb-form .span-3{
    grid-column: 1 / -1 !important;
  }

  /* komfortné polia (napr. meno) */
  .pneb-form input:not([type="checkbox"]):not([type="radio"]),
  .pneb-form select,
  .pneb-form textarea{
    width: 100% !important;
    min-height: 44px;
    font-size: 16px; /* zabráni iOS zoomu */
    line-height: 1.25;
  }

  /* labely sa môžu zalomiť */
  .pneb-form label{
    display: block;
    margin-bottom: 4px;
    font-size: .95rem;
    line-height: 1.25;
    white-space: normal;
  }

  /* checkboxy pod seba */
  .pneb-form .wpcf7-checkbox,
  .pneb-form .wpcf7-acceptance{
    display: block !important;
  }
  .pneb-form .wpcf7-list-item{
    margin: .35rem 0 !important;
  }

  /* medzery sekcií */
  .pneb-form h3{ margin: 1rem 0 .5rem !important; }
  .pneb-form p{ margin: .5rem 0 !important; }
}


@media (min-width: 1400px){
  .pneb-form .form-grid{ grid-template-columns: repeat(4, 1fr); }
}



.grecaptcha-badge {
    z-index: -1!important;
	opacity:0!important;
}