@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap')
@font-face {
    font-family: 'BBQStandard'; /* You can give any name you want */
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'BBQHeader'; /* You can give any name you want */
    src: url('/_resources/themes/arbabbq/webfonts/NotoSans_ExtraCondensed-ExtraBold.ttf') format('opentype'); /* Path to your font file */
    /* You can add more src definitions for different font formats here */
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: 'BBQStandard', sans-serif;
    background: #0c0b09;
    color: #fff;
}

a {
    color: #cda45e;
    text-decoration: none;
}

a:hover {
    color: #d9ba85;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "BBQHeader", serif;
    color: #ff5757;
    text-transform: uppercase;
}

li .nav-link img:hover {
    opacity: 0.6;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #1a1814;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #1a1814;
    border-top-color: #cda45e;
    border-bottom-color: #cda45e;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {

}

@media (max-width: 767px) {
    .vatra-img {
        display: block;
        margin: auto; /* Center horizontally */
        margin-bottom: 10px; /* Adjust as needed */
    }

    .m-center {
        text-align: center;
    }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


.logo-container {
    margin-top: 55px;

}

.img-border {
    padding: 5px;
    border: 2px solid #fff;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar .contact-info i {
    font-style: normal;
    color: #d9ba85;
}

#topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

#topbar .languages ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #cda45e;
}

#topbar .languages ul a {
    color: white;
}

#topbar .languages ul li+li {
    padding-left: 10px;
}

#topbar .languages ul li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: rgba(255, 255, 255, 0.5);
    content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    border-bottom: 1px solid rgba(12, 11, 9, 0.6);
    transition: all 0.5s;
    z-index: 997;
}

#header.header-scrolled {
    top: 0;
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid #37332a;
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
    height: 50px;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    color: #304254;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #4d6a87;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #444444;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #cda45e;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #4d6a87;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

/* Custom CSS for mobile devices */
@media (max-width: 991px) {
    .logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}


.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #1a1814;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #cda45e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #cda45e;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#naslovna {
    width: 100%;
    height: 100vh;
    background: url("/assets/Uploads/Slajderi/Cumur-naslovna.png") top center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#naslovna:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#naslovna .container {
    padding-top: 110px;
}

@media (max-width: 992px) {
    #naslovna .container {
        padding-top: 98px;
    }
}

#naslovna h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 60px;
    color: #fff;
}

#naslovna h1 span {
    color: #fff;
}

#naslovna h2 {
    color: #eee;
    margin-bottom: 10px 0 0 0;
    font-size: 22px;
}

@media (min-width: 1600px) {
    #naslovna {
        background-attachment: fixed;
    }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.o-nama {
    background: url("/assets/Uploads/Pozadine/pozadina_1.PNG") center center;
    background-size: cover;
    position: relative;
    padding: 80px 0;
}

.o-nama .content {
    position: relative;
}

.o-nama .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.o-nama .content ul {
    list-style: none;
    padding: 0;
}

.o-nama .content ul li {
    padding-bottom: 10px;
}

.o-nama .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #cda45e;
}

.o-nama .content p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .o-nama {
        background-attachment: fixed;
    }
}


/*--------------------------------------------------------------
# Events background-color: rgba(0, 0, 0, 0.8);
--------------------------------------------------------------*/
.proizvodi {
    background: url("/assets/Uploads/Pozadine/pozadina_2.PNG") center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0;
}

.proizvodi::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.proizvodi .section-title h2 {
    color: #fff;
}

.proizvodi .container {
    position: relative;
}

.proizvodi .bordered{
    color: #0b0b0b;
    background-color: #fff;
    padding: 30px;
    min-height: 300px;
    margin: 0 40px;

}

.proizvodi .product-img {
    max-height: 300px;
}

.proizvodi h2 {
    color: rgb(78, 81, 82);
}
@media (min-width: 1024px) {
    .proizvodi {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
# Prednosti
--------------------------------------------------------------*/
.prednosti {
    background: url("/assets/Uploads/Pozadine/pozadina_3.PNG") top center no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0;
}

.prednosti::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.prednosti h3 {
    color: #fff;
}

.prednosti .container {
    position: relative;
}

@media (min-width: 1024px) {
    .prednosti {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
# Prednosti
--------------------------------------------------------------*/
.koraci {
    background: url("/assets/Uploads/Pozadine/pozadina_3.PNG") top center no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0;
}

.koraci::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.koraci h2 {
    color: #fff;
}

.koraci .container {
    position: relative;
}

.koraci .card {
    border: 1px solid #dee2e6; /* Add border to the card */
}
.koraci .card-img-overlay {
    background-color: rgba(255, 255, 255, 0.7); /* Add transparency to the overlay */
}

.koraci .bordered {
    border: 1px solid #ff5757;
    padding: 20px;
}
@media (min-width: 1024px) {
    .koraci {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
# Slogan
--------------------------------------------------------------*/
.slogan {
    background: url("/assets/Uploads/Pozadine/pozadina_4.PNG") center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0;
}

.slogan::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.slogan h3 {
    color: #fff;
}

.slogan .container {
    position: relative;
}

@media (min-width: 1024px) {
    .slogan {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
# Kontakt
--------------------------------------------------------------*/
.kontakt {
    background: url("/assets/Uploads/Pozadine/pozadina_2.PNG") center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0;
}

.kontakt::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.kontakt h3 {
    color: #fff;
}

.bordred {
    border: 1px solid #fff;
    background-color: transparent !important;
    color: #fff;
    border-radius: 0;
}

.kontakt .container {
    position: relative;
}

.form-control::placeholder {
    padding-left: 30px;
    color: #fff; /* Change placeholder color here */
}

@media (min-width: 1024px) {
    .kontakt {
        background-attachment: fixed;
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    background: url("/assets/Uploads/Pozadine/pozadina_1.PNG") center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 10px 0;
}

.error {
    border-color: #910c0c;
}
.error-message {
    color: #910c0c;
    font-size: 0.875em;
}

/* Position the button at the bottom for desktop screens */
@media (min-width: 992px) { /* Adjust the min-width as necessary for your desktop breakpoint */
    .kontakt-button {
        position: absolute;
        bottom: 2em;
        right: 0;
        width: 400px !important;
    }
}