@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Poppins&family=Work+Sans:wght@500&display=swap');

:root{
    --primary_white: #fff;
    --primary_black: #121212;
    --secondary_white: #f2f2f2;
    --secondary_black: #131c26;
}
body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* font-family: 'DM Serif Display', serif;
    font-family: 'Poppins', sans-serif; */
    font-family: 'Work Sans', sans-serif;
}
html{overflow-x: hidden;}
*{ margin: 0; }

/*Spacing*/
.mb-l{
    margin-bottom: 16px;
}

.mb-xl{
    margin-bottom: 32px;
}
/*Spacing end*/

/*Font sistem*/
p, h3, h5{
    margin: 0;
}

.u-l1{
    font-size: 32px;
    line-height: 110%;
}

.u-h1{
    font-size: 28px;
    line-height: 110%;
}

.u-h2{ font-size: 20px;}

.u-p1{ font-size: 16px;}

.u-p2{ font-size: 14px;}

.u-p3{ font-size: 12px;}

@media screen and (min-width: 1025px) {
    .u-h1{ font-size: 58px; }

    .u-h2{ font-size: 24px; }
    
    .u-p1{ font-size: 21px; }

    .u-p2{ font-size: 18px; }

    .u-l1{ font-size: 72px; }
}

/* Font sistem end */

textarea, input{
    font-family: 'Work Sans', sans-serif;
    border: 0;
    box-shadow: 0px 2px 24px 0px rgba(0,0,0,0.1);
    resize: none;
}

a{
    color: inherit;
    text-decoration: none;
}

/*Sections general*/
.goldText{
    color: #F0D57E;
}

.sectionBlack{
    background: var(--secondary_black);
    color: var(--primary_white);
}

.sectionGrey{
    background: var(--secondary_white);
    color: var(--primary_black);
}

.sectionWhite{
    background: var(--primary_white);
    color: var(--primary_black);
}

.whiteText{
    color: var(--primary_white);
}

.blackText{
    color: var(--primary_black);
}

.border {
    margin: 8px auto 16px auto;
    background: var(--primary_black);
    height: 2px;
    width: 64px;
}
/*Sections general end*/

.banner{
    width: 100%;
    height: 100%;
    min-height: 68vh;
    position: relative;
    /* background: var(--secondary_black); */
    background-image: url(Images/2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #2929299a;
    width: 100%;
    height: 100%;
}

.logoImage{
    background-image: url(Images/logo\ zlatni.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 120px;
    height: 120px;
    display: block;
}

button {
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 16px;
}
  
.navigation-menu {
    box-sizing: border-box;
    width: 100vw;
    height: 80px;
    margin: 0;
    padding: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9f9f9;
    background: var(--secondary_black);
  }
    
  .navigation-menu__overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: 0.3s;
  }
  
  body.open .navigation-menu__overlay {
    visibility: visible;
    opacity: 1;
  }
  
  .hamburger-menu {
    position: absolute;
    padding: 0;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    background: transparent !important;
  }
  
  #close-icon {
    display: none;
  }
    
  .site-identity-logo {
    margin: 0;
    padding: 0;
    cursor: pointer;
    font-size: 18px;
    &:hover {
      color: #E9CD83;
    }
  }
  
  .navigation-menu__labels {
    position: fixed;
    visibility: hidden;
    z-index: 3;
    top: 80px;
    left: 0;
    width: calc(100% - 40px);
    height: 100%;
    padding: 20px;
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--secondary_black);
    transition: translate 0.3s;
    translate: -100% 0;
    :hover {
      color: #E9CD83;
    }
  }
  
  body.open .navigation-menu__labels {
    translate: 0 0;
    visibility: visible;
  }
  
  .navigation-menu__labels > button {
    color: #f9f9f9;
    background: transparent;
    padding: 0 8px;
  }
  
  .navigation-menu__labels > button.active {
    color: inherit;
  }

.bannerText{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary_white);
    width: calc(100% - 64px);
    padding: 0 32px;
    z-index: 1;
}

.bannerNote_wraper{
    position: absolute;
    bottom: 0;
    color: var(--primary_white);
    background: #ffffff07;
    backdrop-filter: blur(2px);
    width: 100%;
    z-index: 1;
}

.bannerNote{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
    padding: 8px;
}

.services{
    background: #f1f1f1;
    text-align: center;
    padding: 48px 16px;
}

.servicesColumns{
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.servicesColumn{
    padding: 16px;
}

.weDo{
    padding: 48px 16px;
}

.columnRight{
    text-align: center;
}

.weDo ul{
    list-style: decimal-leading-zero;
    color: grey;
}

.weDo li{
    margin-bottom: 16px;
}

.myImage{
    width: 100%;
    position: relative;
}

.myImage img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aboutMe{
    padding: 48px 16px;
}

.contactForm{
    padding: 48px 16px 32px 16px;
}

.contactRow input,
.contactRow textarea{
    width: calc(100% - 32px);
    padding: 8px 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.contactRow .submitButton{
    width: 100%;
}

.contactInfo_row{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.ContactInfo_column{
    display: flex;
    flex-direction: column;
}

.contactInfo{
    margin-top: 16px;
}

.submitButton{
    cursor: pointer;
    background: transparent;
    border: 1px solid #121212;
    color: #121212;
    padding: 8px 24px;
}

.footer{
    padding: 32px 16px;
    color: #fff;
    text-align: center;
}

.footerLogo{
    background-image: url(Images/logo\ zlatni.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 120px;
    height: 120px;
    margin: auto;
}

.columnWidthImage{
    text-align: center;
    width: 70%;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .column.u-p2{
        font-size: 12px;
        margin: auto;
    }

    .submitButton{
        width: 100%;
        margin-top: 8px;
    }

    .not_mobile{
        display: none;
    }

    .languageMob{
        margin-top: 48px;
        display: flex;
        gap: 24px;
    }
}


  @media only screen and (min-width: 769px) {
    .not_desktop{
        display: none;
    }
    .navigation-menu__overlay {
      display: none;
    }

    .header_max {
        justify-content: space-between;
        padding: 16px 32px;
        width: 100%;
        max-width: 1140px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hamburger-menu {
        display: none;
    }

    .navigation-menu__labels {
        position: static;
        top: 0;
        left: 0;
        translate: 0 0;
        width: auto;
        background: transparent;
        flex-direction: row;
        visibility: visible;
        display: flex;
        align-items: center;
    }

    .bannerText{
        max-width: 1140px;
        margin: auto;
        padding: 0 64px;
    }

    .bannerText_wraper{
        max-width: 720px;
    }

    .bannerNote{
        padding: 32px 32px;
        width: calc(100% - 96px);
        max-width: 1140px;
        margin: auto;
        gap: 0;
    }

    .column {
        padding: 0 32px;
    }

    .column:nth-child(2){
        border-left: 1px solid #F0D57E;
        border-right: 1px solid #F0D57E;
    }

    .services{
        padding: 88px 0;
    }
    .servicesColumns{
        grid-template-columns: repeat(3, 1fr);
        margin-top: 64px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .servicesColumn{
        padding: 32px;
        /* box-shadow: 8px 8px 65px #0000001a; */
        box-shadow: 8px 8px 65px #f1f1f1;
        transition: all cubic-bezier(.19,1,.22,1) .7s;
        width: calc(33% - 82px);
    }

    .servicesColumn:hover{
        transform: translate3d(0px, 7px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        transform-style: preserve-3d;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    }

    .weDo{
        padding: 128px 0;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-evenly;
        align-items: center;
    }

    .columnRight{
        width: 20%;
        text-align: left;
        margin-right: 64px;
    }

    .columnLeft{
        width: 75%;
    }

    .columnLeft ul li span{
        margin-left: 16px;
    }

    .section_maxWidth{
        max-width: 1140px;
        margin: auto;
    }

    .aboutMe{
        padding: 64px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .columnAbout{
        width: 50%;
    }

    .columnWidthImage{
        width: 30%;
        text-align: center;
    }

    .contactForm{
        padding: 64px 0;
        display: flex;
        justify-content: space-between;
    }

    .contactForm-column{
        max-width: 720px;
    }

    .contactInfo{
        background: #9c9c9c0a;
        width: 40%;
        max-width: 330px;
        height: fit-content;
        padding: 48px 32px;
        margin-top: 0;
        box-shadow: 0px 2px 24px 0px rgba(0,0,0,0.1);
    }

    .submitButton{
        max-width: 30%;
        float: right;
    }

    .submitButton:hover{
        border-color: #F0D57E;
        color: #F0D57E;
        transition: all 0.3s ease-in;
    }

    .footerFlex{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
    }


    .footerLogo{
        margin: 0 0 0 0;
    }

    .sign{
        text-align: left;
    }

    .scrolledHeader{
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
    }

    .activeMenu_item{
        color: #F0D57E;
        position: relative;
    }

    .activeMenu_item::before{
        content: '';
        position: absolute;
        top: -5px;
        height: 1px;
        width: 100%;
        background: #F0D57E;
    }
  }


@media screen and (min-width: 1025px) {
    .bannerNote{
        padding: 32px 0px;
        width: calc(100% - 96px);
        max-width: 1140px;
        margin: auto;
        gap: 0;
    }

    .column {
        padding: 0 86px;
    }
}




.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;  /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
  
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
  
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
  
    /* Support for IE. */
    font-feature-settings: 'liga';
  }


.alert-danger{
    padding: 8px;
    background: #ff000073;
    opacity: 0.;
    border: 2px solid red;
    margin-bottom: 12px;
}

.alert-success{
    padding: 8px;
    background: #00ff8973;
    opacity: 0.;
    border: 2px solid #17c717;
    margin-bottom: 12px;
}

.languages{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px;
    position: absolute;
    left: -50%;
    background: var(--secondary_black);
    color: var(--primary_white);
    opacity: 0;
    visibility: hidden;
    display: none;
}

.languageIcons{ position: relative;}

.languageIcons:hover{ 
    cursor: pointer; 
    color: var(--primary_white);
}

.languageIcons:hover .languages{
    display: flex;
    visibility: visible;
    opacity: 1;
}

.language{
    display: flex;
    gap: 12px;
    color: var(--primary_white);
}


.form_error{
    color: red;
}
.form_succes{
    color: green;
}
.input_error{
    box-shadow: 0 0 5px red;
}

.animatedElement{
    transform: translateY(100%);
}

.animatedLeft{
    transform: translateX(-100%);
}

.animatedRight{
    transform: translateX(100%);
}

.animated{
    transform: translate(0, 0);
    transition: all 0.3s ease-in;
}