
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&family=Marck+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');


@keyframes prikaz {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.block{
    animation: prikaz linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}


:root{
    --bg-color-heder:#ffb30f;
    --bg-color-linear: linear-gradient(90deg, rgba(252, 185, 0, 0) 0%, #ffb30f 100%);
    --bg-color-gradient: linear-gradient(transparent, black 60%);
    --bg-color-dark: #000;
    --color-text: #000;
    --color-text2: #ffb30f;
    --color-text3: #fff;
    --color-text4: #A62B0C;
    --opacity: 0.4;
    --font-potpis: "Marck Script", cursive;
    --clr-gray: #667;
    --footer: #333;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Geologica", sans-serif;
    scroll-behavior: smooth;
}
img{
    max-width: 100%;
    display: block;

}
h1{
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
}
h2{
    font-size: clamp(1.8rem, 3vw, 2rem);
    font-weight: 700;
}
h3{
    font-size: clamp(1.5rem, 2vw, 1.8rem);
}
p{
    font-size: clamp(1rem, 2vw, 1.5rem);
}
p, a, li{
    margin: 0;
    color: var(--color-text);
    text-decoration: none;
    list-style: none;
}
body{
    background: var(--bg-color-linear);
    color: rgb(33, 33, 33);
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    
}

/* --------------------------------------------------------------------------------------------- */

        /* Navigacioni deo sajta */
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-color-heder);
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 100;
    
}
.logo{
    display: flex;
    align-items: center;
    padding-left: 10px;
    color: var(--color-text);
}
.logo img{
    width: 50px;
    height: 50px;
    margin-right: 20px;
    transition: all 0.5s ease;
}
.logo img:hover{
    scale: 1.5;
}
.nav-list{
    display: flex;
    align-items: center;
}
.nav-list li{
    padding: 10px;
    transition: all 0.5s ease;
}
.nav-list li:last-child{
    margin-right: 35px;
}
.nav-list li a{
    padding: 10px;
    color: var(--color-text);
    font-weight: 800;
    
    
}
.nav-list li:hover{
    scale: 1.1;
    border-bottom: 2px solid teal;
}
.menu-icon{
    margin-left: auto;
}



/* --------------------------------------------------------------------------------------------- */
/* Hamburger menu icon styling */
.menu-icon {
    font-size: 24px;
    color: black;
    cursor: pointer;
    display: none;    /* Hidden by default, shown only on mobile */
    margin-right: 30px;
}

/* Mobile menu container */
.menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 70px;
    right: 0px;
    background-color: var(--bg-color-heder);
    border: 2px solid var(--bg-color-heder);
    padding: 10px;

}
.active{
    display: flex;
}

/* Mobile menu links styling */
.menu a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 10px 0;
    border: 1px solid var(--bg-color-heder);
    width: 60%;           /* Links take up 60% of menu width */
    margin: auto;         /* Center links horizontally */
    background-color: white;
    text-align: center;
    z-index: 100;        /* Ensures links appear above other content */
    transition: all 0.5s ease;    /* Smooth transition for hover effects */
}

/* Hover effect for menu links */
.menu a:hover{
    background-color: var(--bg-color-heder);
    color: white;    /* Changes background and text color on hover */
}

/* ---------------------------MAIN------------------------------------------------------------------ */
@media screen and (min-width: 1400px)  {
    .header{
        min-height: fit-content;
        
    }
    .nav-list li{
        padding: 20px;
        transition: all 0.5s ease;
    }
    .nav-list li a{
        font-size: 1.5rem;
        color: var(--color-text);
        font-weight: 800;
    }
    .hero{
        width: 100%;
        height: 100vh;
        background-color: #333333;
        color: var(--color-text2);
        mix-blend-mode: normal;
        background-blend-mode: darken;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero .hero-content{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
    }
    .hero-content p{
        color: var(--color-text3);
    }
    
    .hero .hero-img{width: 100%;
        height: 100%;
        background: url("/img/background-4.jpg")no-repeat fixed 10% 50% / cover;
        opacity: 0.5;
    }
    

    .container{   
        margin: 5%;
    }
    .row-left, .row-right{
        margin: 5%;
    }
    .content{
        margin: 5%;
    }
    .content h1{
        margin: 5%;
    }
    .content p{
        margin: 5%;
    }
    .img_body{
        width: 50%;

    }
    .row-left{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        border: 2px solid rgb(164, 6, 255);

    }
    .row-right{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        border: 2px solid rgb(236, 165, 12);
    }

}

@media screen and (min-width: 700px) and (max-width: 1400px)  {
    .hero{
        width: 100%;
        height: 50vh;
        background-color: #333333;
        color: var(--color-text2);
        mix-blend-mode: normal;
        background-blend-mode: darken;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero .hero-content{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
    }
    .hero-content p{
        color: var(--color-text3);
    }
    
    .hero .hero-img{width: 100%;
        height: 100%;
        background: url("/img/background-4.jpg")no-repeat fixed center / cover;
        opacity: 0.5;
    }

    .container{   
        margin: 5%;
    }
    .row-left, .row-right{
        margin: 2%;
    }
    .content{
        margin: 0%;
    }
    .content h1{
        margin: 5%;
    }
    .content p{
        margin: 5%;
    }
    .img_body{
        width: 50%;
    }
    .row-left{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        border: 2px solid rgb(164, 6, 255);
    }
    .row-right{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        border: 2px solid rgb(236, 165, 12); 
    }



}
@media screen and (max-width: 700px) {
    .hero{
        width: 100%;
        height: 50vh;
        background-color: #333333;
        color: var(--color-text2);
        mix-blend-mode: normal;
        background-blend-mode: darken;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero .hero-content{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
    }
    .hero-content p{
        color: var(--color-text3);
    }
    
    .hero .hero-img{width: 100%;
        height: 100%;
        background: url("/img/background-4.jpg")no-repeat fixed center / cover;
        opacity: 0.5;
    }
    .menu-icon {
        display: flex;
    }
    .nav-list{
        display: none;
    }
    .menu:active{
        display: flex;
    }
    .row{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 2px solid rgb(0, 0, 0);
        padding: 20px;
        margin: 50px;

        .content h1{
            text-align: center;
            color: var(--color-text2);
            -webkit-text-stroke: 1px #4e2500;
            letter-spacing: 1px;
            
        }
        .content{
            text-align: center;
            padding: 10px;
        }
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 5%;
        background-color: var(--footer);
        padding: 50px;
        text-align: left;
        height: fit-content;
    }
    .footer-content-left{
        margin-bottom: 20px;
    }
    .footer-content-left #logo_footer{
        width: 100%;
        background-color: var(--clr-gray);
        border-radius: 20px;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .footer-content-right{
        margin-top: 20px;
    }
}



/* ---------------------------END_MAIN------------------------------------------------------------------ 
*/





/* ---------------------------FOOTER------------------------------------------------------------------ 
*/


.footer-content {
    display: flex;
    margin-top: 5%;
    background-color: var(--footer);
    padding: 50px;
    text-align: left;
    height: fit-content;
}

.footer-content-left{
    flex: 1;
    #logo_footer{
       width: 100%;
       display: flex;
       justify-content: center;
       align-items: center;
       background-color: var(--clr-gray);
    border-radius: 20px;
    }
    #a{
        color: var(--color-text1);
    }
    #b{
        color: var(--color-text2);
    }
    #c{
        color: var(--color-text3);
    }
    .company_info{
        margin-top: 20px;
    }
    .company_info p{
        font-size: 1rem;
        color: var(--color-text3);
        text-align: center;
        margin: auto;
        padding: 10px;
        #company_name{
            font-weight: 900;
        }
        #company_bold{
            font-weight: 900;
        }
        #company_pib{
            font-weight: 900;
        }
    }
    
}
.autor{
        margin-top: auto;
        text-align: center;
        #autor{
            font-weight: 900;
            font-size: 1.2rem;
            color: var(--color-text3);
       }
       #potpis{
        font-family: var(--font-potpis);
        font-weight: 900;
        font-size: 1.3rem;
        color: var(--bg-color-heder);
       }
       #potpis:hover{
        color: var(--color-text3);
        background-color: var(--bg-color-heder);
        padding: 0px 30px;
       }
    }

#link{
    color: var(--color-text2);
    margin: 10px;
    padding: 0px 10px;
    font-size: 1.1rem;
    transition: all 0.5s ease;
}
#link:hover{
    color: var(--color-text3);
    background-color: #ffb30f;
}
.left:last-child{
    margin: 5px;
    margin-top: 10%;
}

.footer-content-center{
    flex: 1;
}
.footer-content-right{
    flex: 1;
    height: 100%;   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    
 
}

/* ---------------------------END_FOOTER------------------------------------------------------------------ 
*/
/* ---------------------------privacy-policy------------------------------------------------------------------ 
*/
#privacy-policy {
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
}

#privacy-policy h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

#privacy-policy p {
    line-height: 1.6;
    margin: 10px 0;
}

#privacy-policy p strong {
    font-weight: bold;
    color: #555;
}

#privacy-policy a {
    color: #0066cc;
    text-decoration: none;
}

#privacy-policy a:hover {
    text-decoration: underline;
}

#privacy-policy .company-description h3 {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #444;
}



#impressum {
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
}

#impressum h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

#impressum p {
    line-height: 1.6;
    margin: 10px 0;
}

#impressum p strong {
    font-weight: bold;
    color: #555;
}

#impressum a {
    color: #0066cc;
    text-decoration: none;
}

#impressum a:hover {
    text-decoration: underline;
}

#impressum .company-description h3 {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #444;
}
#impressum {
    text-align: center;
}

#impressum .company-details,
#impressum .company-description {
    max-width: 800px;
    margin: 0 auto;
}



/* Banner styling */
.privacy-banner {
    height: fit-content;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    z-index: 9999;
    display: none; /* Hidden by default */
}

.privacy-banner a {
    color:var(--color-text2);
    text-decoration: none;
}
.privacy-banner p{
    color: rgb(255, 255, 255);
}

.privacy-banner button {
    background-color: var(--color-text3);
    border: none;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
}

.privacy-banner button:hover {
    background-color: var(--bg-color-heder);
    color: white;
}








