@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: M-BI;
    src: url(fonts/Montserrat-BlackItalic.ttf);
}
@font-face {
    font-family: M-EB;
    src: url(fonts/Montserrat-ExtraBold.ttf);
}
@font-face {
    font-family: M-B;
    src: url(fonts/Montserrat-Bold.ttf);
}
@font-face {
    font-family: M-M;
    src: url(fonts/Montserrat-Medium.ttf);
}
@font-face {
    font-family: P-B;
    src: url(fonts/PPMonumentExtended-Black-BF645465a1e687b.otf);
}
@font-face {
    font-family: P-R;
    src: url(fonts/PPMonumentExtended-Regular-BF645465a253250.otf);
}
@font-face {
    font-family: M-BI;
    src: url(fonts/Montserrat-BlackItalic.ttf);
}

:root {
    --primary-bg-color: #0D0D0D;
    --primary-color:    #19191A;
    --nav-text:         #fffffffd;
    --nav-text2:        #E2F85B;
    --right-bc:         #212121;
    --help-color:       #33DAFF;
    --help-back:        #058eb177;
    --settings:         #323234;

    --nav-height:       4.4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--primary-bg-color);
    color: white;
    font-size: 16px;
    overflow-x: hidden;
    user-select: none;
    height: 100%;
    scrollbar-width: none;
}

#FireNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 1.5rem;
    gap: 1.8rem;
    z-index: 1000;
}

/* Logo */
#logo {
    font-family: M-BI;
    font-size: clamp(1.5rem, 4.2vw, 2rem);
    color: white;
    white-space: nowrap;
    line-height: 1;
}

/* Hamburger */
.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.35s;
}

/* Navigation items */
.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0.5rem;
}

.navs {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    position: relative;
    transition: all 0.2s;
}

.navs:hover {
    background: rgba(255, 165, 0, 0.14);
}

.navs::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: orange;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.navs:hover::after {
    transform: scaleX(1);
}

.navicons,
.navicons2 {
    width: 1.45rem;
    height: 1.45rem;
    flex-shrink: 0;
}

.navicons  { fill: var(--nav-text);  }
.navicons2 { fill: var(--nav-text2); }

.navnavtext,
.navnavtext2 {
    font-family: M-B;
    font-size: clamp(0.78rem, 1.9vw, 0.92rem);
    white-space: nowrap;
}

.navnavtext  { color: var(--nav-text);  }
.navnavtext2 { color: var(--nav-text2); }

/* Right section */
#navright {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--right-bc);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
}

#helpbuble {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--help-back);
    padding: 0.45rem 1rem;
    border-radius: 4px;
    transition: all 0.25s;
}

#helpbuble:hover {
    background: rgba(51, 218, 255, 0.22);
}

#helptext {
    width: 1.4rem;
    height: 1.4rem;
    fill: var(--help-color);
}

#help {
    font-family: M-B;
    font-size: clamp(0.78rem, 1.9vw, 0.9rem);
    color: var(--help-color);
}

#settings,
#settings2 {
    width: 2.3rem;
    height: 2.3rem;
    background: var(--settings);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

#settings:hover,
#settings2:hover {
    background: #454549;
}

#settings svg,
#settings2 svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: white;
    transition: transform 0.45s;
}

#settings:hover svg {
    transform: rotate(90deg);
}

#profile {
    width: 2.3rem;
    height: 2.3rem;
    background: url(img/images.jpg) center/cover no-repeat;
    border-radius: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 410px){
        #FireNav {
        padding: 0 1.2rem;
        gap:0.5rem;

    }

}
@media (max-width: 1080px) {
    :root {
        --nav-height: 4.2rem;
    }



    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: var(--nav-height) 0 0 0;
        background: #111;
        flex-direction: column;
        align-items: stretch;
        padding: 1.2rem 0.8rem;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    #nav-toggle:checked ~ .nav-menu {
        transform: translateX(0);
    }

    #nav-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    #nav-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    #nav-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .navs {
        width: 100%;
        padding: 1.1rem 1.3rem;
        font-size: 1.05rem;
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    :root {
        --nav-height: 4rem;
    }

    #logo {
        font-size: 1.45rem;
    }

    #help {
        display: none;
    }

    #helpbuble {
        padding: 0.4rem 0.7rem;
    }

    #helptext {
        margin-right: 0;
    }

    #navright {
        gap: 0.6rem;
        padding: 0.35rem 0.7rem;
    }

    #settings, #settings2, #profile {
        width: 2.1rem;
        height: 2.1rem;
    }
}


#navbar_1 {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}
.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
#navbar_text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding: 0 3vw;
}
#navT {
    font-family: M-B;
    font-size: 1.2vw;
    color: #ffffffa4;
    align-items: center;
    display: flex;
    margin-bottom: 0.5vh;
}
#navT2 {
    font-family: P-B;
    font-size: 4vw;
    width: 100%;
    max-width: 15ch; 
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: break-word;
    word-spacing: -0.4vw;
    margin-bottom: 0.5vw;
}
#line{
    height: 3vh;
    width: 4px;
    background-color: #e3f85b86;
    display: inline-block;
    align-items: center;
    justify-content: center;
    margin-right: 0.6vw;
    margin-left: 0.2vw;
    border-radius: 1px;
}

#navT3 {
    font-family: M-M;
    max-width: 40ch;
    color: #ffffffb6;
    margin-bottom: 2vw;
    font-size: 1.2vw;
    padding: 0.2vw 0;
    line-height: 1.6vw;
    letter-spacing: 0.03vw;

}
#nav_split {
    display: inline-block;
    align-items: center;
    gap: 1.5vw;
    flex-wrap: wrap;

}
#nav_button {
    position: relative;
    height: 3vw;
    width: 17vw;
    background-color: #E2F85B;
    color: #181413;
    font-family: M-B;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    gap: 0.4vw;
    font-size: 1vw;
}
#nav_button::before {
    content: "";
    position: absolute;
    top: -150%;
    left: -450%;
    width: 700%;
    height: 700%;
    background-color: #ffffff;
    transform: rotate(45deg);
    transition: all 0.7s ease-in-out;
    z-index: 0;
}
#nav_button:hover::before {
    top: -50%;
    left: -230%;
}
#nav_button span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}
#nav_button:hover span {
    color: #0D0D0D;
}
#nav_arrow {
    height: 1.5vw;
    transform: rotate(45deg);
}











#phone_nav_arrow {
    height: 1.3rem;
    transform: rotate(45deg);
}
#phone_land{
    display: flex;
    justify-content: center;
    position: absolute;
    flex-direction: column;
    padding: 3vw;
    display: none;
    background-color: #181413;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;


}
#phone_navT{
    font-family: M-B;
    font-size: 1rem;
    color: #ffffffa4;
    align-items: center;
    display: flex;
    margin-bottom: 0.5rem;
    gap: 0.5vw;

}
#phone_navT2{
    font-family: P-B;
    font-size: 1.7rem;
    width: 100%;
    max-width: 15ch; 
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: break-word;
    word-spacing: -0.4vw;
    margin-bottom: 0.7rem;

}
#phone_navT3{
    font-family: M-M;
    max-width: 40ch;
    color: #ffffffb6;
    margin-bottom: 1.7rem;
    font-size: 0.9rem;
    padding: 0.2vw 0;
    line-height: 1.3rem;
    letter-spacing: 0.03rem;
}
#phone_nav_button{
    position: relative;
    height: 3rem;
    width: 10rem;
    background-color: #E2F85B;
    color: #181413;
    font-family: M-B;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    gap: 0.4rem;
    font-size: 1rem;
}
.phone_bg-video {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 70%;
    object-fit: cover;
    z-index: 0;
    display: none;
}
@media (max-width: 1080px) {
    #navbar_text{
        display: none;
    }
    #phone_land{
        display: flex;
    }
    .phone_bg-video{
        display: block;
    }
    .bg-video{
        display: none;
    }
}
#kategorije{
    display: flex;
    justify-content: space-around;
    padding: 2vw 0;
    box-sizing: border-box;
}
.kategorija{
    position: relative;
    width: 20vw;
    height: 26vw;
    background-color: #323234;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: M-EB;
    letter-spacing: 0.4vw;
    font-size: 1.1vw;
    overflow: hidden;
    color: white;

    transition: transform 300ms ease-in-out;
}


.kategorija::before{
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background: #E2F85B;
    top: 100%;
    left: -250%;
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: 0;
}


.kategorija span{
    position: relative;
    z-index: 1;
    transition: all ease-in-out 300ms;
}
.kategorija:hover{
    transform: scale(1.05);
}
.kategorija:hover span{
    color: #181413;

}

.kategorija:hover::before{
    top: -100%;
    left: -190%;
}

#kat1{
    background: url(img/flare.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
}
#kat2{
    background: url(img/luči.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}
#kat3{
    background: url(img/paketi.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}
#kat4{
    background: url(img/vrvi.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}
.marquee {
    width: 100%;
    height: 2vw;
    background-color: #e3f85b25;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 2vw;
    animation: scroll 20s linear infinite;
}

.neki {
    color: #E2F85B;
    font-family: M-B;
    font-size: 1vw;
    white-space: nowrap;
    letter-spacing: 0.1vw;
}

/* animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-20%);
    }
}
@media (max-width: 1080px) {
    #kategorije{
        padding: 0;
        flex-wrap: wrap;
    }

    .kategorija{
        width: 50%;
        height: 44vw;
        font-size: 3vw;
        letter-spacing: 1vw;
    }
    .kategorija:hover{
        transform: scale(1);
    }
    .marquee{
        height: 8vw;
    }
    .neki{
        font-size: 3.8vw;
        letter-spacing: 0.8vw;
    }
    .marquee-track{
        gap: 7vw;
    }
}
#title_prodajani{
    font-family: M-BI;
    font-size: 1.2vw;
    display: flex;
    align-items: center;
}
#about_prodajani{
    font-family: M-B;
    color: #ffffffab;
    font-size: 1vw;
    margin-left: 0.1vw;
}
#prodajani{
    padding: 0 2vw;
}
#prodaja-items{
    padding: 1vw 0;
    display: flex;
    gap: 1vw;
}




.prodaja_item{
    width: 15vw;
    height: 16vw;
    background-color: #202020;
    padding: 1vw;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: all ease-in-out 300ms;
}
.prodaja_name{
    font-family: M-B;
    font-size: 0.8vw;
    width: 70%;
    letter-spacing: 0.05VW;
    
}
.prodaja_podname{
    font-family: M-B;
    font-size: 0.7VW;
    color: #ffffff96;
}
.front_img{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    transform: translateY(-1vw) translateX(-1.1vw);
}
.front_img2{
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0.08;
    transform: scale(1.6) translateX(-0.6VW) translateY(-0.5vw);
}
.absolutno{
    position: absolute;
}
.prodaja_cena{
    position: absolute;
    bottom: 4.5vw;
    font-family: M-B;
    font-size: 1.2vw;
    display: flex;
    letter-spacing: 0.05vw;
    justify-content:space-around;
    width: 100%;
    z-index: 3;
}
.smaller_euro{
    font-size: 1.2vw;
    color: #ffffffa6;
    display: inline-block;
    transform: translateX(-0.2vw);

}
.prodaja_cenacena{
    position: absolute;
    left: 0;
}
.prodaja_paketcena{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    right: 2vw;
}
.cencena_paketa{
    font-size: 0.5vw;
    color: #ffffffb2;
}
.cencenacena_paketa{
    font-size: 0.7vw;
    color: #ffffffd2;
    letter-spacing: 0.05vw;
}
.podrobnosti_icona{
    height: 1vw;
    fill: #fff;
}
.podrobnost{
    background-color: #4d4d4d;
    display: flex;
    gap: 0.2vw;
    padding: 0.1vw 0.3vw;
    border-radius: 0.3vw;
    justify-items: center;
    align-items: center;
    
}
.prodaja_podrobnosti{
    position: absolute;
    bottom: 0.5vw;
    display: flex;
    width: 86%;
    justify-content: space-between;
    transition: all ease-in-out 300ms;
}
.podrobnosti_title{
    font-family: M-B;
    font-size: 0.6vw;
}
.prodaja_hover{
    background-color: #e3f85b33;
    position: absolute;
    width: 100%;
    height: 1.2vw;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-1vw) translateY(2vw) ;
    color: #E2F85B;
    font-family: M-B;
    letter-spacing: 0.1vw;
    font-size: 0.7vw;
    transition: all ease-in-out 300ms;
}
.prodaja_item:hover .prodaja_hover{
    transform: translateX(-1vw) translateY(0) ;
}
.prodaja_item:hover .prodaja_podrobnosti{
    bottom: 1.6vw;
}
.prodaja_item:hover{
    background-color: #2e2e2e;
}
@media (max-width: 1080px) {
    #title_prodajani{
        font-size: 5vw;
        gap: 1vw;
        padding-bottom: 0.5vw;
    }
    #prodajani{
        padding: 3vw
        ;
    }
    #about_prodajani{
        font-size: 3.5vw;
        padding-left: 0.2vw;
        padding-bottom: 1vw;
    }
}

#prodaja-items {
    display: flex;
    gap: 1vw;
}


.slider-btn {
    display: none;
}



@media (max-width:  1080px) {

    /* SLIDER WRAPPER */
    #prodaja-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    /* SLIDER TRACK */
    #prodaja-items {
        display: flex !important;
        width: 100%;
        overflow: hidden;
        gap: 0;
    }

    /* FORCE ITEM SIZE */
    .prodaja_item {
        min-width: 100% !important;
        width: 100% !important;
        height: 90vw;
        flex-shrink: 0;
    }

    /* SHOW ARROWS */
    .prodaja_name{
        font-size: 4vw;
    }
    .prodaja_item{
        padding: 5vw;
        box-sizing: border-box;
    }
    .prodaja_podname{
        font-size: 3vw;
    }
    .prodaja_cenacena{
        font-size: 8vw;
    }
    .smaller_euro{
        font-size: 8vw;
        transform: translateX(-1vw);
    }
    .cencena_paketa{
        font-size: 4vw;
    }
    .cencenacena_paketa{
        font-size: 4vw;
    }
    .prodaja_cena{
        bottom: 25vw;
    }
    .podrobnosti_icona{
        height: 6vw;
    }
    .podrobnosti_title{
        font-size: 3.5vw;
    }
    .podrobnost{
        padding: 0.3vw 2vw;
        border-radius: 1.5vw;
        gap: 2vw;
    }
    .prodaja_cena{
        width: 87%;
    }
    .front_img{
        transform: translateX(-7vw) translateY(-5vw);
    }
    .front_img2{
    transform: scale(1.6) translateX(-3VW) translateY(-2vw);
    }
    .prodaja_podrobnosti{
        bottom: 3vw;
    }
    #prodajani{
        padding: 5vw;
    }
    .prodaja_hover{
        height: 7vw;
        transform: translateX(-5vw) translateY(7vw);
        font-size: 3vw;
    }
    .prodaja_item:hover .prodaja_hover{
        transform: translateX(-5vw) translateY(0) ;
    }
    .prodaja_item:hover .prodaja_podrobnosti{
    bottom: 8.5vw;
    }



    
}

