/*
Theme Name: Astra Child
Template: astra
*/
/* Navigacioni meni stil */
.main-header-bar {
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 99%;
    max-width: 1200px;
    background-color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow-x: auto; /* SpreÄava prelazak sadrÅ¾aja */
} 

/* Navigacione stavke */
.main-header-bar-navigation ul {
    display: flex;
    flex-wrap: wrap; /* Stavke prelaze u novi red ako nema mesta */
    padding: 0;
    margin: 0;
    list-style: none;
	
}

.main-header-bar-navigation ul li {
    margin-right: 10px;
}

.main-header-bar-navigation ul li a {
    border-radius: 8px;
    transition: background 0.3s ease;
    padding: 6px 12px;
    font-size: 15px;
    display: inline-block;
    white-space: nowrap;
}

.main-header-bar-navigation ul li a:hover {
    background-color:#ffcc00;
}

/* Logo unutar menija */
.site-logo img {
    max-height: 36px;
}

/* Fade efekat */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive za mobilne ureÄ‘aje */
@media (max-width: 768px) {
    .main-header-bar {
        padding: 6px 15px;
        flex-direction: column;
    }

    .main-header-bar-navigation ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-header-bar-navigation ul li {
        margin-bottom: 6px;
    }

    .main-header-bar-navigation ul li a {
        font-size: 14px;
        padding: 5px 10px;
        width: 100%;
    }

    .site-logo img {
        max-height: 30px;
    }
}

.site-content {
    background-color: #ffffff;
    padding: 40px;
    margin: 0 auto;
    margin-top: 30px;
    border-radius: 30px;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.6s ease-out;
}

body {
    padding-top: 120px;
    background-color: #f4f4f4;
}

@media (max-width: 768px) {
    .site-content {
        padding: 20px;
        margin-top: 30px;
        border-radius: 15px;
        width: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

.site-footer {
    background-color: #ffffff !important;
    padding: 15px 20px;
    margin-top: 40px;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 99%;
    color: #333333;
    font-size: 14px;
}

.site-footer * {
    background-color: transparent !important;
    margin: 0;
}

/* Responzivno podeÅ¡avanje za mobilne ureÄ‘aje */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 15px;
        margin-top: 30px;
        width: 90%;
        border-radius: 15px 15px 0 0;
    }
}

/* Dodatni medijski upit za mobilne ureÄ‘aje */
@media (max-width: 600px) {
    .wp-post img {
        width: 100%;
    }
}
body, h1, h2, h3, h4, h5, h6, p, span, a, button {
  text-transform: none !important;
} 
/* Full-width wrapper */
.full-width-contact-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 40px 20px;
    box-sizing: border-box;
    background: #ffffff; /* bijela pozadina */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Kontakt forma unutar wrappera */
.full-width-contact-wrapper .contact-form {
    width: 100%;
    margin: 0 auto;
}

/* Inputi i textarea */
.full-width-contact-wrapper .contact-form input,
.full-width-contact-wrapper .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Dugme */
.full-width-contact-wrapper .contact-form input[type="submit"] {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    background:  #ffcc00; /* svjetlija žuta */
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.full-width-contact-wrapper .contact-form input[type="submit"]:hover {
    background: #e0b800; /* još svjetlija žuta na hover */
}

/* Responsivno za mobitele i tablete */
@media (max-width: 768px) {
    .full-width-contact-wrapper {
        padding: 20px 15px;
    }

    .full-width-contact-wrapper .contact-form input,
    .full-width-contact-wrapper .contact-form textarea {
        font-size: 14px;
    }

    .full-width-contact-wrapper .contact-form input[type="submit"] {
        width: 100%;
        padding: 10px;
        font-size: 15px;
    }
}
.contact-success {
    color: #e6c80e;   /* tamno-žuta, čitljiva */
     
}