/* Extra WordPress theme CSS */

/* Slider – aktivní položka */
.slider-item {
    display: none;
    position: relative;
}
.slider-item.active {
    display: block;
}

/* Posun obsahu při WP admin baru */
.admin-bar .header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

/* Kontaktní stránka – přepis min-height při admin baru */
.admin-bar .contacts {
    min-height: calc(100svh - 44px - 32px);
}

/* Jurax kontakt formulář wrapper – míří na jurax_contacts-form_wrapper z home.css */
.contacts-form .jurax_contacts-form_wrapper {
    gap: clamp(5px, 1vmin, 10px);
}
.contacts-form .jurax_contacts-form_wrapper-item {
    gap: 0;
}

/* Projects stránka – wrapper pro flex expand efekt */
.projects > .wrapper {
    width: 100%;
    height: 50vmin;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
