﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

#logo:hover {
    opacity: 50%;
    transition: filter 0.3s ease;
}

#neubar {
    box-shadow: 4px 6px 12px rgba(0,0,0,0.4)
}

    #neubar .dropdown-menu a:hover {
        color: #454545
    }

    #neubar .nav-item {
        margin: auto 4px;
    }

    #neubar a {
        padding-left: 12px;
        padding-right: 12px;
    }

/*Cards*/
.card-hover {
    height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 32px -10px rgba(0, 0, 0, 0.08);
}

    .card-hover:has(.card-hover__link:hover) .card-hover__extra {
        transform: translateY(0);
        transition: transform 0.35s;
    }

    .card-hover:hover .card-hover__content {
        /* background-color: #DEE8C2;*/
        bottom: 100%;
        transform: translateY(100%);
        padding: 40px 60px;
        transition: all 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
    }

    .card-hover:hover .card-hover__link {
        opacity: 1;
        transform: translate(-50%, 0);
        transition: all 0.3s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
    }

    .card-hover:hover img {
        transform: scale(1);
        transition: 0.35s 0.1s transform cubic-bezier(0.1, 0.72, 0.4, 0.97);
    }

.card-hover__content {
    width: 100%;
    text-align: center;
    background-color: #567491;
    padding: 0 40px 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(0);
    transition: all 0.35s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
    will-change: bottom, background-color, transform, padding;
    z-index: 1;
}

    .card-hover__content::before, .card-hover__content::after {
        content: "";
        width: 100%;
        height: 120px;
        background-color: inherit;
        position: absolute;
        left: 0;
        z-index: -1;
    }

    .card-hover__content::before {
        top: -80px;
        -webkit-clip-path: ellipse(60% 80px at bottom center);
        clip-path: ellipse(60% 80px at bottom center);
    }

    .card-hover__content::after {
        bottom: -80px;
        -webkit-clip-path: ellipse(60% 80px at top center);
        clip-path: ellipse(60% 80px at top center);
    }

.card-hover__title {
    font-size: 1.5rem;
    margin-bottom: 1em;
}

    .card-hover__title span {
        color: #fff;
    }

.card-hover__text {
    font-size: 1rem;
    color: #fff
}

.card-hover__link {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translate(-50%, 10%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    color: #fff;
    opacity: 0;
    padding: 10px;
    transition: all 0.35s;
}

    .card-hover__link:hover svg {
        transform: translateX(4px);
    }

    .card-hover__link svg {
        width: 18px;
        margin-left: 4px;
        transition: transform 0.3s;
    }

.card-hover__extra {
    height: 55%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    font-size: 1.3rem;
    text-align: center;
    background-color: #31599c;
    padding: 70px;
    bottom: 0;
    z-index: 0;
    color: #dee8c2;
    transform: translateY(100%);
    will-change: transform;
    transition: transform 0.35s;
}

    .card-hover__extra span {
        color: #fff;
    }

.card-hover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: -1;
    transform: scale(1.2);
    transition: 0.35s 0.35s transform cubic-bezier(0.1, 0.72, 0.4, 0.97);
}

/*End cards*/

.card-event-container {
    display: flex;
    flex-wrap: wrap;
}

.card-event {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-event-img {
    width: 100%;
    height: 300px; /* Visina slike */
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
}

    .card-event-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.event-details h3 a {
    color: #cf057c;
    text-decoration: none;
}

    .event-details h3 a:hover {
        color: #4125dd;
    }

.card-event-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Boja prekrivanja i prozirnost */
    opacity: 0; /* Početno prozirnost */
    transition: opacity 0.3s ease; /* Animacija promjene prozirnosti */
}

.card-event-img:hover::before {
    opacity: 1; /* Pri hoveru, postavljamo prozirnost na 1 */
}

.card-event-img .card-event-description {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Boja teksta */
    text-align: center;
    opacity: 0; /* Početno prozirnost */
    transition: opacity 0.3s ease; /* Animacija promjene prozirnosti */
}

.card-event-img:hover .card-event-description {
    opacity: 1; /* Pri hoveru, postavljamo prozirnost na 1 */
}
/* Media query za mobilne uređaje */
@media (max-width: 767px) {
    .card-event {
        width: calc(100% - 20px); /* Širina kartice je širina ekrana sa malim razmakom */
    }

    .card-event-img {
        height: 150px; /* Manja visina slike za mobilne uređaje */
    }
}

.custom-title {
    font-family: 'DM Sans';
    font-weight: normal;
    color: #567491;
}

#image {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-size: cover;
    background-position: center;
}

#info {
    text-align: center;
}

.offer {
    font-size: 5rem;
}

.vip-bg {
    background-image: url('/images/bosanka.jpg');
    background-size: cover;
    background-position: center;
}

.card-event {
    margin: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-event-content {
    padding: 20px;
}

.event-date {
    text-align: center;
}

    .event-date span {
        font-size: 24px;
    }

    .event-date p {
        margin-top: 5px;
    }

.event-details h3 a {
    color: #cf057c;
    text-decoration: none;
}

.navbar-toggler-icons .bi-cart-fill {
    font-size: 1.5rem; /* Prilagodite veličinu po potrebi */
}

.dbox {
    width: 100%;
    margin-bottom: 25px;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .dbox {
        margin-bottom: 0;
        padding: 0;
    }
}

.dbox p {
    margin-bottom: 0;
}

    .dbox p span {
        font-weight: 500;
        color: #000;
    }

    .dbox p a {
        color: #2553b8;
    }

.dbox .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2553b8;
    margin: 0 auto;
    margin-bottom: 20px;
}

    .dbox .icon span {
        font-size: 20px;
        color: #fff;
    }

.dbox .text {
    width: 100%;
}

.product-content {
    border: 2px solid #dfe5e9;
    margin-bottom: 20px;
    margin-top: 12px;
    background: #fff;
    padding: 4px;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
}

    .product-content .product-image {
        background-color: #fff;
        display: block;
        min-height: 238px;
        overflow: hidden;
        position: relative;
    }

    .product-content .product-deatil {
        border-bottom: 1px solid #dfe5e9;
        padding-bottom: 17px;
        padding-left: 16px;
        padding-top: 16px;
        position: relative;
        background: #fff;
    }

        .product-content .product-deatil h5 a {
            color: #2f383d;
            font-size: 15px;
            line-height: 19px;
            text-decoration: none;
            padding-left: 0;
            margin-left: 0;
        }

            .product-content .product-deatil h5 a span {
                color: #9aa7af;
                display: block;
                font-size: 13px;
            }

    .product-content .description {
        font-size: 12.5px;
        line-height: 20px;
        padding: 10px 14px 16px 19px;
        background: #fff;
    }

    .product-content .product-info {
        padding: 11px 19px 10px 20px;
    }

    .product-content .price-container span {
        color: #21c2f8;
        font-family: Lato, sans-serif;
        font-size: 24px;
        line-height: 20px;
    }

.product-wrap .product-image span.tag2 {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 10px 0;
    color: #fff;
    font-size: 11px;
    text-align: center;
    background-color: #a90329;
}

.product-wrap .product-image img-responsive {
    position: relative;
    object-fit: cover;
    object-position: center;
}

.product-deatil {
    padding: 30px 30px 50px;
}

    .product-deatil .product-image {
        border-right: 0px solid #fff !important;
    }

    .product-deatil .name {
        margin-top: 0;
        margin-bottom: 0;
    }

        .product-deatil .name small {
            display: block;
        }

        .product-deatil .name a {
            margin-left: 0;
        }

    .product-deatil .price-container {
        font-size: 24px;
        margin: 0;
        font-weight: 300;
    }

        .product-deatil .price-container small {
            font-size: 12px;
        }

    .product-deatil .fa-2x {
        font-size: 16px !important;
    }

        .product-deatil .fa-2x > h5 {
            font-size: 12px;
            margin: 0;
        }

        .product-deatil .fa-2x + a,
        .product-deatil .fa-2x + a + a {
            font-size: 13px;
        }

@media only screen and (min-width:1024px) {
    .product-content .product-image {
        border-right: 1px solid #dfe5e9;
    }

    .product-content .product-info {
        position: relative;
    }
}

.footer-payment {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .footer-payment {
        width: 100%;
    }
}

.footer-payment .logo {
    display: block;
}

@media (max-width: 992px) {
    .footer-payment .logo {
        display: none;
    }
}

.footer-payment .payments-wrapper {
    padding: 0;
    padding-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .footer-payment .payments-wrapper {
        padding: 30px 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        /*justify-content: flex-end;*/
        flex-wrap: nowrap;
    }
}

@media (min-width: 768px) {
    .footer-payment .payments-wrapper {
        width: 100%;
    }
}

.footer-payment .payments-wrapper .payment-logo {
    width: 20%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

@media (min-width: 992px) {
    .footer-payment .payments-wrapper .payment-logo {
        width: 8%;
        margin-bottom: 0;
        justify-content: flex-end;
    }
}

@media (min-width: 768px) {
    .footer-payment .payments-wrapper .payment-logo {
        width: 10%;
        margin-bottom: 30px;
    }
}

.checkout .payments-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    display: flex;
    flex-direction: row;
}

    .checkout .payments-wrapper .payment-logo {
        width: 20%;
        margin-bottom: 30px;
        justify-content: center;
        align-items: center;
    }
/*colors*/
.bg-blue {
    background-color: #1bb8d1
}

.text-blue {
    color: #1bb8d1 !important;
}

#progressbar-2 {
    color: #455A64;
}

    #progressbar-2 li {
        list-style-type: none;
        font-size: 13px;
        width: 33.33%;
        float: left;
        position: relative;
    }

        #progressbar-2 li.active:before {
            content: '\f058';
            font-family: "Font Awesome 5 Free";
            color: #fff;
            width: 37px;
            padding-left: 12px;
        }

        #progressbar-2 li.text-muted:before {
            content: '\f111';
            font-family: "Font Awesome 5 Free";
            color: #fff;
            width: 37px;
            padding-left: 12px;
        }

        #progressbar-2 li:before {
            line-height: 37px;
            display: block;
            font-size: 12px;
            background: #c5cae9;
            border-radius: 50%;
        }

        #progressbar-2 li:after {
            content: '';
            width: 100%;
            height: 10px;
            background: #c5cae9;
            position: absolute;
            left: 0%;
            right: 0%;
            top: 15px;
            z-index: -1;
        }

        #progressbar-2 li:nth-child(1):after {
            left: 1%;
            width: 100%
        }

        #progressbar-2 li:nth-child(2):after {
            left: 1%;
            width: 100%;
        }

        #progressbar-2 li:nth-child(3):after {
            left: 1%;
            width: 100%;
        }

        #progressbar-2 li:nth-child(4) {
            left: 0;
            width: 37px;
        }

            #progressbar-2 li:nth-child(4):after {
                left: 0;
                width: 0;
            }

        #progressbar-2 li.active:before,
        #progressbar-2 li.active:after {
            background: #6520ff;
        }

.info-menu {
    padding: 20px; /* Prilagodite padding po potrebi */
}

.nav-link {
    color: #007bff; /* Boja linkova */
    text-decoration: none; /* Uklanjanje podcrtavanja */
    padding: 8px 0; /* Prilagodite padding po potrebi */
}

    .nav-link.active {
        text-decoration: underline; /* Podcrtaj aktivnu stavku */
    }
