/* --------------------------------------------------------------
   Variables
-------------------------------------------------------------- */

:root {
    --fp-transition: all 0.25s ease-in-out;
    --fp-header-height: 120px;
}

/* --------------------------------------------------------------
   Basic Reset
-------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    margin-bottom: 1rem;
}

button {
    font-family: inherit;
    font-size: 100%;
    line-height: 1;
    cursor: pointer;
}

[id] {
    scroll-margin-top: 120px;
}

/* --------------------------------------------------------------
   Input Fields
-------------------------------------------------------------- */

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 {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    appearance: none;
    border-radius: 6px;
    border: 1px solid #DADADA;
    box-shadow: none;
    box-sizing: border-box;
    cursor: pointer;
    font-family: var(--wp--preset--font-family--inter);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3em;
    margin: 0 0 7px;
    outline: 0;
    padding: 3px 16px;
    background-color: #fff;
    color: #383952;
    transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out;
}

input[type=date]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=text]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
    color: #DBDBDB;
}

textarea {
    height: 124px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMyAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuNSAxMEwwLjg3MDgzNSAwLjI1TDEyLjEyOTIgMC4yNTAwMDFMNi41IDEwWiIgZmlsbD0iIzM4MzkzNyIvPgo8L3N2Zz4K);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 24px);
    background-position-y: 50%;
}

/* --------------------------------------------------------------
   Select2
-------------------------------------------------------------- */
body .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-family: var(--wp--preset--font-family--inter);
    font-size: 12px;
    font-weight: 400;
    line-height: 36px;
    color: #383952;
    padding: 0 16px;
}

body .select2-container--default .select2-selection--single {
    border-radius: 6px;
    border: 1px solid #DADADA;
    height: 36px;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
    top: 0;
    right: 10px;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 4px 4px 0 4px;
    border-color: var(--wp--preset--color--main-blue) transparent transparent transparent;
}

body .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 4px 4px 4px;
    border-color: transparent transparent var(--wp--preset--color--main-blue) transparent;
}

body .select2-results__option[aria-selected] {
    font-family: var(--wp--preset--font-family--inter);
    font-size: 12px;
    line-height: 1.25em;
    font-weight: 400;
    color: #383952;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

body .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: transparent;
    color: #383952;
    font-weight: 700;
}

body .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: transparent;
}

body .select2-search.select2-search--dropdown {
    display: none;
}

body .select2-dropdown {
    border: 1px solid #DADADA;
}

body .select2-container--open .select2-dropdown--below {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

body .select2-container--open .select2-dropdown--above {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

body .select2-container--default .select2-results>.select2-results__options {
    padding: 3px 0;
}

body.admin-bar .select2-container--open .select2-dropdown--below,
body.admin-bar .select2-container--open .select2-dropdown--above {
    top: 32px;
}

body.admin-bar .select2-container--open .select2-selection--single {
    position: relative;
    z-index: 2;
}

body.admin-bar .select2-dropdown--below {
    z-index: 1;
}

body.admin-bar .select2-dropdown--above {
    z-index: 1;
}

body.popup-opened .select2-container--default.select2-container--open {
    z-index: 999999;
}

/* --------------------------------------------------------------
   Container
-------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: clamp(320px, 90%, 1420px);
    margin: 0 auto;
}

/* --------------------------------------------------------------
   Header
-------------------------------------------------------------- */
header {
    height: var(--fp-header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--wp--preset--color--white);
}

header .header-outer-holder,
header .header-inner-holder {
    height: 100%;
}

header .header-inner {
    height: 100%;
    width: 100%;
}

header .site-logo-block {
    flex-shrink: 0;
}

header .site-logo-block img {
    max-height: 82px;
}

@media only screen and (max-width: 1024px) {
    header .wp-block-fitpass-open-form {
        display: none;
    }
}

/* -- Header navigation menu -- */
header nav.wp-block-navigation ul.wp-block-navigation {
    gap: 52px;
}

header nav.wp-block-navigation ul.wp-block-navigation>li>a.wp-block-navigation-item__content {
    font-size: 16px;
    line-height: 1.25em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #fff;
    transition: var(--fp-transition);
}

header nav.wp-block-navigation ul.wp-block-navigation>li>a.wp-block-navigation-item__content:hover {
    color: var(--wp--preset--color--main-yellow);
}

@media only screen and (max-width: 1440px) {
    .custom-nav-menu-holder {
        gap: 40px;
    }
}

@media only screen and (max-width: 1360px) {
    .custom-nav-menu-holder {
        gap: 30px;
    }
}

@media only screen and (max-width: 1200px) {
    .custom-nav-menu-holder {
        gap: 25px;
    }
}

/* --------------------------------------------------------------
   Mobile Header
-------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
    header nav.wp-block-navigation {
        display: none;
    }

    header .language-switcher {
        margin-left: auto;
        margin-right: 0;
    }
}

/* --------------------------------------------------------------
   Footer
-------------------------------------------------------------- */

footer {
    background-color: #E5E5E5;
}

footer .footer-top {
    padding: 64px 0;
}

footer h4 {
    font-size: 26px;
    line-height: 1.25em;
    font-weight: 500;
}

footer .footer-top :where(.is-layout-flow)>* {
    margin-top: 16px;
}

footer .footer-top :where(.is-layout-flow)> :first-child {
    margin-block-start: 0;
}

footer .footer-top .wp-block-navigation.is-vertical {
    row-gap: 8px;
}

footer .site-logo-block img {
    max-height: 164px;
}

footer p .emphasize-word {
    color: var(--wp--preset--color--main-purple);
}

footer .footer-bottom {
    padding: 27px 0;
}

footer .footer-bottom p {
    font-size: 16px;
    line-height: 1.25em;
    color: #999;
}

@media screen and (max-width: 781px) {
    footer .footer-top .row-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    footer .footer-top .row-bottom>.wp-block-group {
        flex-basis: auto;
    }

    footer .footer-top .row-bottom .footer-nav-holder {
        padding-bottom: 21px;
        border-bottom: 1px solid #AFAFAF;
    }

    footer .footer-top .row-bottom {
        padding-top: 16px;
    }
}

@media screen and (max-width: 600px) {
    footer .footer-top .row-top {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 32px;
        padding: 0 0 30px;
    }

    footer .footer-nav-holder nav ul {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 19px;
    }
}

/* --------------------------------------------------------------
   Main content
-------------------------------------------------------------- */
main.main-content {
    margin: var(--fp-header-height) 0 0;
}

.admin-bar main.main-content {
    margin: calc(var(--fp-header-height) - 32px) 0 0;
}

/* --------------------------------------------------------------
   Button
-------------------------------------------------------------- */

/* Gurenberg block button */
:where(.wp-block-button__link) {
    transition: all 0.25s ease-in-out;
}

:where(.wp-block-button__link):hover {
    background-color: var(--wp--preset--color--main-orange);
    border-color: transparent;
    color: #fff;
}

/* --------------------------------------------------------------
   Swiper
-------------------------------------------------------------- */
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: #EFE9E2;
    width: 17px;
    height: 17px;
    margin: 0 12px;
    opacity: 1;
}

.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:first-child {
    margin-left: 0;
}

.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:last-child {
    margin-right: 0;
}

.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--wp--preset--color--main-orange);
}

.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    border: 1px solid #756B56;
    border-radius: 50%;
    transition: all 0.25s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #756B56;
}

.swiper-button-prev:after {
    content: '';
    width: 15px;
    height: 26px;
    background-color: #756B56;
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAxNSAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1IDEuNjQ3MjlMMTMuNTIyNSAwTDAgMTNMMTMuNTIyNSAyNkwxNSAyNC4zNTI3TDMuMTkxMjUgMTNMMTUgMS42NDcyOVoiIGZpbGw9IiM3NTZCNTYiLz4KPC9zdmc+Cg==);
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAxNSAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1IDEuNjQ3MjlMMTMuNTIyNSAwTDAgMTNMMTMuNTIyNSAyNkwxNSAyNC4zNTI3TDMuMTkxMjUgMTNMMTUgMS42NDcyOVoiIGZpbGw9IiM3NTZCNTYiLz4KPC9zdmc+Cg==);
    transition: all 0.25s ease;
}

.swiper-button-next:after {
    content: '';
    width: 15px;
    height: 26px;
    background-color: #756B56;
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAxNSAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMS42NDcyOUwxLjQ3NzUgMEwxNSAxM0wxLjQ3NzUgMjZMMCAyNC4zNTI3TDExLjgwODggMTNMMCAxLjY0NzI5WiIgZmlsbD0iIzc1NkI1NiIvPgo8L3N2Zz4K);
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAxNSAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMS42NDcyOUwxLjQ3NzUgMEwxNSAxM0wxLjQ3NzUgMjZMMCAyNC4zNTI3TDExLjgwODggMTNMMCAxLjY0NzI5WiIgZmlsbD0iIzc1NkI1NiIvPgo8L3N2Zz4K);
    position: relative;
    left: 1px;
    transition: all 0.25s ease;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    background-color: #fff;
}

@media screen and (max-width: 600px) {

    .swiper-button-prev:after,
    .swiper-button-next:after {
        width: 16px;
        height: 28px;
        mask-size: cover;
        -webkit-mask-size: cover;
    }
}

/* --------------------------------------------------------------
   Content custom styles
-------------------------------------------------------------- */
ul.wp-block-list {
    list-style: disc;
    padding-left: 21px;
}

@media screen and (max-width: 782px) {
    body #o-dogadjaju {
        background-image: none !important;
        position: relative;
    }

    div#o-dogadjaju:after {
        content: '';
        width: 100%;
        height: 200px;
        display: block;
        background-image: url('../../../../uploads/2026/05/o-nama-mob.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position-x: center;
    }
}