/*
Theme Name: Zajednica Mađara Daruvar
Theme URI: http://madjaridaruvar.hr
Author: PLAVI LINK D.O.O.
Description: Službena stranica zajednice Mađara u Daruvaru.
Version: 1.0
*/

.post-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px; 
    max-width: 100%; 
}
.pagination {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    font-family: Arial, sans-serif;
    padding: 0;
    justify-content: center;
}
.pagination a,
.pagination span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #f0f0f0;
    color: #028A0F;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.pagination a:hover {
    background: #e0e0e0;
}
.pagination .current {
    background: #028A0F;
    color: white;
}
.pagination .dots {
    background: transparent;
    cursor: default;
    color: #028A0F;
    font-weight: bold;
}

/* Fp */
.post-thumbnail {
    overflow: hidden; 
    border-radius: 5px; 
}
.post-thumbnail img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.5s ease-in-out;
}
.post-thumbnail img:hover {
    transform: scale(1.1); 
}

/* Post */
.post-thumbnail-medium {
    overflow: hidden; 
    border-radius: 5px; 
}
.post-thumbnail-medium img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.5s ease-in-out;
}
.post-thumbnail-medium img:hover {
    transform: scale(1.05); 
}

/* Single post*/
.post-thumbnail-single {
    overflow: hidden; 
    border-radius: 5px; 
}
.post-thumbnail-single img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.5s ease-in-out;
}
.post-thumbnail-single img:hover {
    transform: scale(1.02); 
}

/* Font */
.custom-font {
    font-family: 'DM Serif Text', sans-serif;
}
/* No underline */
a {
    text-decoration: none;
}


/* Hover underline */
.hover-underline-animation {
    display: inline-block;
    position: relative;
}
.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #466D1D;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
} 
.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


/* Icons for navigation */
.wp-block-navigation-item a[href*="home"] .wp-block-navigation-item__label::before {
    content: "\f015";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    display: inline-block !important;
}
/* Ensure icons work in responsive menus */
@media (max-width: 1024px) {
    .wp-block-navigation-item a[href*="objave"] .wp-block-navigation-item__label::before {
        content: "\f1ea";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-right: 8px;
        display: inline-block !important;
    }
    .wp-block-navigation-item a[href*="o-nama"] .wp-block-navigation-item__label::before {
        content: "\f05a";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-right: 8px;
        display: inline-block !important;
    }
	.wp-block-navigation-item a[href*="zanimljivosti"] .wp-block-navigation-item__label::before {
        content: "\f005";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-right: 8px;
        display: inline-block !important;
    }
    .wp-block-navigation-item a[href*="kontakt"] .wp-block-navigation-item__label::before {
        content: "\f0e0";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-right: 8px;
        display: inline-block !important;
    }
}


/* Wordpress button */
.wp-block-search__button {
    margin: auto;
}