/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

/* SKROLING HEDER: */
#skrolingheder {
	display:none;
	position:fixed;
	top:0;
	left:0;
}

/* Providna dugmad na baneru: */
.providnodugme a {
	width:100%;
}

@media only screen and (max-width: 1280px) {
	.providnodugme a {
		width:50%;
	}
	
}

/* Pomerenost logotipa kad se otvara hamburger left align: */
@media only screen and (max-width: 980px) {
.elementor-13 .elementor-element.elementor-element-4113d87 > .elementor-element-populated {
text-align:left;
}
}

/* Kategorije pocetna na hover: */
.kata {
  transition: transform 0.3s ease;
	cursor: pointer;
}

.kata:hover {
  transform: scale(1.1);
}

/* === PRICING: === */
.pricing-span-big {
	font-size:45px;
	font-weight:600;
}
.pricing-span-small {
	font-size:13px;
	color:#7d7d7d;
}
/* Colors: */
#ps-big-oa1, #ps-big-oa2 {
	color:#61CE70;
}
#ps-big-free {
	color:#707070;
}
#ps-big1 {
	color:#61CE70;
}
#ps-big2 {
	color:#30975E;
}
/* Kad se jos ne klikne na ANNUAL dugme, lista za srednji plan: */
#list-annual1 {
	display: none;
}

/* === CONTACT FORM 7: === */
input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
	border: 1px solid #61CE70;
	margin-top: 11px;
}

.wpcf7-form [type="button"], .wpcf7-form [type="submit"], .wpcf7-form button {
background-color: #61CE70;
border: 1px solid #61CE70;
border-radius: 3px;
color: #FFF;
display: inline-block;
font-size: 1rem;
font-weight: 400;
padding: 0.5rem 1rem;
text-align: center;
transition: 0.3s;
-webkit-user-select: none;
white-space: nowrap;
}

.wpcf7-form [type="button"]:hover, .wpcf7-form [type="submit"]:hover, .wpcf7-form button:hover {
	background-color: #30975E;
	border: 1px solid #30975E;
}

label {
width: 100%;
}

/* ========================================================================== */
/* === BLOG: === */
/* ========================================================================== */

/* =========================
   BLOG PAGE WRAPPER
========================= */
.blog-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* =========================
   BLOG TITLE
========================= */

/* =========================
   POST CARD
========================= */
.post-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.25s ease;
}

.post-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE
========================= */
.post-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   CONTENT WRAP
========================= */
.post-item .col-md-8 {
    padding: 25px;
}

/* =========================
   TITLE
========================= */
.post-item h2 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.post-item h2 a {
    color: #30975E;
    text-decoration: none;
    transition: 0.2s;
}

.post-item h2 a:hover {
    color: #0073aa;
}

/* =========================
   META
========================= */
.post-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

/* =========================
   EXCERPT
========================= */
.post-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* =========================
   READ MORE BUTTON
========================= */
.read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 14px;
    font-size: 14px;
    background: #61CE70;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s;
}

.read-more:hover {
    background: #885100;
}

.post-meta span a {
    color: #61CE70;
}

/* =========================
   PAGINATION
========================= */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 3px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
}

.pagination .current {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .blog-heading h1 {
        font-size: 30px;
    }

    .post-item .row {
        display: flex;
        flex-direction: column;
    }

    .post-item .col-md-4,
    .post-item .col-md-8 {
        width: 100%;
    }

    .post-item .col-md-8 {
        padding: 18px;
    }
}

/* ========================================================================== */
/* === SINGLE: === */
/* ========================================================================== */

/* =========================
   SINGLE PAGE WRAPPER
========================= */
.single .site-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* fallback ako row/div iz teme smeta */
.single .row,
.single .col-lg-8,
.single .col-md-8 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    padding: 0;
}

/* =========================
   ARTICLE CARD LOOK
========================= */
.single article {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* =========================
   FEATURED IMAGE
========================= */
.single .post-thumbnail {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.single .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   TITLE
========================= */
.single .entry-title {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
}

/* =========================
   META
========================= */
.single .entry-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* =========================
   CONTENT TYPOGRAPHY
========================= */
.single .entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.single .entry-content p {
    margin-bottom: 18px;
}

/* headings inside article */
.single .entry-content h2,
.single .entry-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #111;
}

/* links */
.single .entry-content a {
    color: #61CE70;
    text-decoration: underline;
}

/* =========================
   POST NAVIGATION
========================= */
.post-navigation {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-navigation a {
    color: #61CE70;
    text-decoration: none;
    font-weight: 600;
}

.post-navigation a:hover {
    color: #30975E;
}

.nav-links {
   width:100%;
   display:flex;
   flex-wrap:wrap;
}

.nav-previous {
    width:50%;
    text-align:left;
    padding:11px 0;
}

.nav-next {
    width:50%;
    text-align:right;
    padding:11px 0;
}

/* Ako postoji samo NEXT */
.nav-links .nav-next:only-child {
    width:100%;
    text-align:left;
}

/* Ako postoji samo PREVIOUS */
.nav-links .nav-previous:only-child {
    width:100%;
    text-align:left;
}

@media only screen and (max-width: 980px) {
    .nav-previous, .nav-next {
        width:100%;
        text-align:center;
        padding:5px 0;
    }
    
    .nav-links .nav-next:only-child,
    .nav-links .nav-previous:only-child {
        text-align:center;
    }
    
}

/* =========================
   COMMENTS
========================= */
.comments-area {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .single article {
        padding: 20px;
    }

    .single .entry-title {
        font-size: 26px;
    }

    .single .entry-content {
        font-size: 16px;
    }
}

/* ZA STILIZOVANJE BLOGA - UNUTAR CLANAKA U EDITORU: */
.clanak-kontejner2col {
	width: 100%;
	display: flex;
	flex-wrap:wrap;
	padding:51px 0;
}
.left2col {
	width:50%;
}
.right2col {
	width:50%;
}

.paddinger {
	padding:51px 0;
}

.paddinger1 {
	padding-top:121px;
}

@media only screen and (max-width: 980px) {
    .left2col {
	width:100%;
	text-align:center;
}
.right2col {
	width:100%;
	text-align:center;
}
.paddinger, .paddinger1 {
	padding-top:21px;
}
}

/* Headline za blog i kategorije - manual: */
.blog-heading {
    width: 100%;
    background-image: linear-gradient(115deg, #30975E 0%, #61CE70 100%);
    padding: 51px 0px 51px 0px;
    text-align: center;
}

.blog-heading h1 {
    font-family: "Roboto", Sans-serif;
    font-size: 55px;
    font-weight: 600;
    line-height: 61px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
}

.blog-heading p {
    font-family: "Roboto", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 23px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
}

@media only screen and (max-width: 980px) {
    .blog-heading {
        padding: 21px;
    }
}

a.read-more:hover {
    color: #fff;
}

/* ===== SEARCH stranica: =====*/
