body {
	font-family: "Lato","Lato",Helvetica,Arial,sans-serif;
    font-weight: 100;
    background-color: black;
}

h1 { 
    letter-spacing: 1px;
    font-size: 28px;
    padding-bottom: 45px;
    font-weight: 100;

}

h2 { 
    letter-spacing: 1px;
    font-size: 16px;
    position: relative;
    padding-bottom: 20px;

}

h3 { 
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    padding-bottom: 5px;

}

h1, h2, h3 { 
    color: white;

}

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

p, span { 
    color: white;
    font-weight: 400;
}


a:hover, a:visited, a:link, a:active
{
    text-decoration: none;
}



a:hover { 
    color: white;
    opacity: 1;
    text-decoration: none;
}
/* portfolio context bar */

#portfolio-context-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(20, 20, 20, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.context-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

#portfolio-context-bar .back-to-site {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

#portfolio-context-bar .back-to-site:hover {
    color: white;
}

.context-bar-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.context-bar-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.context-bar-toggle:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

#design-notes {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

#design-notes.open {
    max-height: 500px;
    padding: 0 20px 14px;
}

#design-notes p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

#design-notes p:last-child {
    margin-bottom: 0;
}

#design-notes p strong {
    color: rgba(255, 255, 255, 0.75);
}


/* carousel */

.carousel-control.right, .carousel-control.left {
    background-image: none;
    color: white;
}

.carousel-indicators li {
    border-color: #b09d88;
    position: relative;
    top: 25px;
}

.carousel-indicators li.active {
    background-color: #white;
    position: relative;
    top: 25px;
}

.item img {
    display: block;
    margin: 0 auto;
}

/* kontaktni obrazec */


.btn {
    background-color: black;
    color: white;
    font-size: 12px;
    padding: 10px 20px;
    font-family: "Lato","Lato",Helvetica,Arial,sans-serif;
}

.btn:hover {
    background-color: white;
    color: black;
}

#btnSubmit {
    position: relative ;
    top: 30px;
}

label.tick {
    width: auto;
    position: relative;
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
}
label.tick:before {
    position: absolute;
    display: inline-block;
    content: "";
    width: 20px;
    height: 20px;
    background: none;
    background: transparent;
    border: solid 1px #9d9d9d;
    cursor: pointer;
}
label.tick:after {
    opacity: 0;
    visibility: hidden;
    content: "";
    position: absolute;
    width: 8px;
    height: 4px;
    background: transparent;
    top: 7px;
    left: 6px;
    border: 2px solid #000;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
input[type="radio"]:checked + label.tick:after {
    opacity: 1;
    visibility: visible;
}
label.tick span {
    font-size: 11px;
    color: #9d9d9d;
    padding-left: 30px;
}
label.tick:hover span,
input[type="radio"]:checked + label.tick span {
    color: black;
}
.izbira input[type="radio"] {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.mini {
    font-size: 11px;
    padding-top: 35px;
    color: white;
    opacity: 0.5;

}

/* design gallery */

.design-gallery {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background-image: url("../img/gallery_off.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    margin-top: 80px;
}

.design-gallery-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.design-gallery-video.active {
    opacity: 1;
}

.design-gallery-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 28px 32px;
    max-width: 420px;
}

.design-gallery-overlay h3 {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    color: white;
}

.design-gallery-overlay p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 20px 0;
}

.gallery-toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-label-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
}

.gallery-toggle {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.gallery-toggle-label {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-toggle:checked + .gallery-toggle-label {
    background: rgba(120, 200, 255, 0.25);
    border-color: rgba(120, 200, 255, 0.4);
    box-shadow: 0 0 12px rgba(120, 200, 255, 0.15);
}

.gallery-toggle:checked + .gallery-toggle-label .toggle-knob {
    transform: translateX(22px);
    background: rgba(120, 200, 255, 0.9);
}

@media (max-width: 600px) {
    .design-gallery {
        min-height: 50vh;
    }
    .design-gallery-overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
        padding: 20px;
    }
}

.footer {
    position: relative;
    margin: 100px auto 0 auto;
    z-index: 5;
    text-align: center;
    font-size: 12px;
    color: black;
    font-family: 'HelveticaNeue-Light', Helvetica, Arial, sans-serif;

}
.footer p {
    display: inline-block;
    color: white;
}
.footer p span {
    margin: 0 10px;
}
.footer p.disclaimer {
    font-size: 10px;
    display: block;
    padding-top: 6px;
    text-transform: none;
}
.footer p.disclaimer a {
    color: white;
    text-decoration: underline;
}
.footer img {
    display: block;
    margin: 0 auto 16px auto;
    clear: both;
}





/* animacije */

.slideanim {
    visibility:hidden;
}
.slide2 {
    /* The name of the animation */
    animation-name: slide;
    -webkit-animation-name: slide; 
    /* The duration of the animation */
    animation-duration: 1s; 
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible; 
}

/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    } 
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    } 
}
@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    } 
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}


img.brands {
    display: block;
    width: 500px;
    height: 33px;
    margin: 0 auto;
}


}

.concerte {
    display: block;
    width: 100%;
}

.slikeWrap {
    

    display: flex;
    flex-wrap: wrap;   
    
    max-width: 1170px;
    text-align: center;

    align-items: center;
    justify-content: center;
    
}
.slika {
    display: inline-block;
    float: left;
    width: 212px;
    height: 212px;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-right: 6%;

    
}
.slika.last {
    margin-right: 0;
}
.slika > .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.6;
}
.slika .previewBtn {
    content: "";
    margin-top: -25px;
    width: 50px;
    height: 50px;
    opacity: 0;
    cursor: pointer;
    background: url("../img/preview/hover.png") 0 0 no-repeat;
    transform: translateY(-100%);
}
.slika .previewTxt {
    text-transform: uppercase;
    margin-top: -20px;
    font-size: 12px;
    color: #fff;
    opacity: 0.8;
}
.slika .previewTxt span {
    font-size: 16px;
    display: block;
    padding-bottom: 2px;
}
.slika .previewBtn,
.slika .previewTxt {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.slika:hover .previewBtn {
    opacity: 1;
    z-index: 10;
    transform: translateY(0);
}
.slika:hover .overlay,
.slika:hover .previewTxt {
    opacity: 0;
}
/* Galerija */
a.button-hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
}
#colorbox,
#cboxOverlay,
#cboxWrapper {
    position:absolute;
    top:0;
    left:0;
    z-index:9999;
    overflow:visible;
}
#cboxOverlay {
    position:fixed;
    width:100%;
    height:100%;
    background:#000;
}
#cboxMiddleLeft,#cboxBottomLeft {
    clear:left;
}
#cboxContent {
    position:relative;
    overflow:visible;
}
#cboxLoadedContent {
    overflow:auto;
    -webkit-overflow-scrolling:touch;
    background: none;
    background: transparent;
    margin-bottom:20px;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.cboxPhoto {
    float:left;
    border:0;
    display:block;
    max-width:none;
    -ms-interpolation-mode:bicubic;
    margin:auto;
}
.cboxIframe {
    width:100%;
    height:100%;
    display:block;
    border:0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
    box-sizing:content-box;
    -moz-box-sizing:content-box;
    -webkit-box-sizing:content-box;
}
#cboxError {
    border:1px solid #ccc;
    padding:50px;
}
#cboxTitle {
    position:absolute;
    left:0;
    text-align:center;
    width:100%;
    color:#fff;
    bottom:-10px;
    margin:0;
}
#cboxCurrent {
    position:absolute;
    bottom:0;
    left:100px;
    color:#999;
    visibility:hidden;
}
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
    border:0;
    overflow:visible;
    width:auto;
    background:0;
    margin:0;
    padding:0;
    cursor:pointer;
    content: "";
}
#cboxSlideshow {
    position:absolute;
    bottom:0;
    right:42px;
    color:#888;
}
#cboxPrevious,
#cboxNext {
    position:absolute;
    top: 50%;
    margin-top: -41px;
    width: 28px;
    height: 82px;
    opacity: 0.5;
    display: block;
}
#cboxNext {
    background: url("../img/assets/next.png") 0 0 no-repeat;
    right: -50px;
}
#cboxPrevious {
    background: url("../img/assets/prev.png") 0 0 no-repeat;
    left: -50px;
}
#cboxClose {
    position:absolute;
    top:-34px;
    right:0;
    display:block;
    background: url("../img/assets/close.png") 0 0 no-repeat;
    width: 20px;
    height: 20px;
    opacity: 0.6;
}
#cboxPrevious:hover,
#cboxNext:hover,
#cboxClose:hover {
    opacity: 1;
}
#cboxSlideshow:hover,
#cboxPrevious:hover,
#cboxNext:hover,
#cboxClose:hover {
    color:#fff;
}
#colorbox,#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
    outline:0;
}

/* iphone-holder */
.iphone-holder {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10%;  
    max-width: 1170px;
    text-align: center;
    align-items: center;
    justify-content: center;
    }
.ime {
  
    font-size: 14px;
    font-weight: 900;
    color: white;
    }

.boja {

    font-size: 14px;
    font-weight: 400;
    color: white;
    font-family: "Lato","Lato",Helvetica,Arial,sans-serif;
    }

.dostupnost {
    position: relative;
    display: inline-block;
    right: 0;
    }
.gige  {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     justify-content: center;

} 


 
.circle {
transition:All 0.4s ease in;
-webkit-transition:All 0.4s ease;
-moz-transition:All 0.4s ease;
-o-transition:All 0.4s ease;


border: solid;
      border-radius: 50%;
      border-width: 1px;
      border-color: white;
      width: 28px;
      height: 28px;
      padding-top: 6px;
      font-size: 10px;
}





.mat:hover {
    background-color: #25272b;
    border-color: #25272b;
}

.silver:hover {
    background-color: #cbcccd;
    color: black;
    border-color: #cbcccd;
}

.gold:hover {
    background-color: #e1c9b0;
    color: black;
    border-color: #e1c9b0;
}

.rose:hover {
    background-color: #dbb0ab;
    color: black;
    border-color: #dbb0ab;
}



 .gige p {
     margin-right: 15px;
     opacity: 0.4;

    }

 .gige p:hover {
     opacity: 1;
    }      

.gige .last {
     margin-right: 0;
    }  

.iphoneContainer {
     max-width: 234px;
     margin-bottom: 40px;

    }

.iphone-holder-plus {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10%;  
    max-width: 1170px;
    text-align: center;
    align-items: center;
    justify-content: center;
    }

.arrowdown {
    transition:All 0.4s ease in;
-webkit-transition:All 0.4s ease;
-moz-transition:All 0.4s ease;
-o-transition:All 0.4s ease;
    color: white;
    font-size: 15px;
    opacity: 0.5;
    margin-bottom: 10px;
    }

.arrowdown:hover {
    color: white;
    font-size: 15px;
    opacity: 1;
    }



/* responsive */



@media screen and (max-width: 768px) {
    #myCarousel .item video {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }
    .col-sm-4 {
        text-align: center;
        margin: 25px 0;
    }
    .prijava {
        width: 230px;
    }
    .slikeWrap {
        max-width: 560px;
        margin-left: 16%;
    }
    
}

@media screen and (max-width: 320px) {
    
    
    .prijava {
        width: 230px;
    }
    .slikeWrap {
        margin-left: 15%;
    }
}


