
:root {
    --header-height: 3.5rem;
    --first-color: hsl(44, 90%, 45%);
    --first-color-alt: hsl(44, 90%, 38%);
    --second-color: hsl(22, 100%, 8%);
    --white-color: hsl(34, 100%, 96%);
    --text-color: hsl(0, 0%, 89%);
    --text-color-light: hsl(23, 16%, 40%);
    --body-color: hsl(0, 0%, 7%);
    --body-color-alt: hsl(34, 100%, 88%);
    --container-color: hsl(34, 100%, 96%);
    --shadow-small-img: drop-shadow(0 4px 16px hsla(22, 100%, 8%, .2));
    --shadow-big-img: drop-shadow(0 8px 24px hsla(22, 100%, 8%, .2));

    --body-font: "Montserrat", sans-serif;
    --second-font: "Aclonica", sans-serif;
    --biggest-font-site: 3rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;

    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;

    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 1150px) {
    :root{
        --biggest-font-site: 4.5rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
    }
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.banner{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(pozadina.jpeg);
    background-size: cover;
    background-position: center;  
  }
  .content{
      width: 100%;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      text-align: center;
      color: #fff;
  }
  .content h1{
      font-size: 70px;
      margin-top: 80px;
  }
  .content p{
      margin: 20px auto;
      font-weight: 100;
      line-height: 25px;
  }
  button{
  width: 200px;
  padding: 15px 0;
  text-align: center;
  margin: 20px 10px;
  border-radius: 25px;
  font-weight: bold;
  border: 2px solid #d9a20b;
  background: transparent;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  }
  span{
      background: #d9a20b;
      height: 100%;
      width: 0;
      border-radius: 25px;
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: -1;
      transition: 0.5s;
  }
  button:hover span{
      width: 100%;
  }
  button:hover{
      border: none;
  }

html{
    scroll-behavior: smooth;
}

body{
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

h1, h2, h3, h4 {
    color: var(--title-color);
    font-family: var(--second-font);
    font-weight: var(--font-regular);
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

img{
    display: block;
    max-width: 100%;
    height: auto;
}

.container{
    max-width: 1120px;
    margin-inline: auto; /* Centraliziraj container */
    padding-inline: 1.5rem;
}
.grid{
    display: grid;
    gap: 1.5rem;
}
.section{
    padding-block: 5rem 1rem;
}
.section__title{
    text-align: center;
    font-size: var(--h1-font-size);
    margin-bottom: 2rem;
}

.main{
    overflow: hidden;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--body-color);
    z-index: var(--z-fixed);
    transition: box-shadow .4s;
    padding: 0 1.5rem; /* Horizontal padding */
}

.nav {
    position: relative;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-family: var(--second-font);
    color: var(--title-color);
}

.nav__logo img {
    width: 150px; /* Increased size for desktop display */
}

.nav__logo div {
    background-color: var(--first-color);
    padding: 6px;
    border-radius: .5rem;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 2rem; /* Increased size */
    color: var(--title-color);
    cursor: pointer;
}

/* Ensures navigation is fixed and hidden on small screens */
@media screen and (max-width: 1150px) {
    .nav__menu {
        position: fixed;
        top: -100%;
        left: 0;
        background-color: var(--body-color);
        width: 100%;
        padding-block: 6rem 5rem; /* Increased padding */
        box-shadow: 0 4px 16px hsla(22, 100%, 8%, .2);
        transition: top .4s;
        z-index: var(--z-fixed);
    }

    .nav__toggle {
        display: flex;
    }

    .nav__close {
        display: flex;
    }

    .nav__menu.show-menu {
        top: 0; /* Show menu when toggled */
    }

    .nav__list {
        font-size: 2rem; /* Increased font size for better readability */
    }
}

.nav__list {
    display: flex;
    gap: 1.5rem;
    align-items: center; /* Added to vertically center items */
}

/* Responsive layout for small screens */
@media screen and (max-width: 1150px) {
    .nav__list {
        text-align: center;
        flex-direction: column;
        row-gap: 2rem;
    }
}

.nav__link {
    position: relative;
    color: var(--title-color);
    font-family: var(--second-font);
}

.nav__link::after {
    content: '';
    width: 0;
    height: 3px;
    background-color: var(--first-color);
    position: absolute;
    left: 0;
    bottom: -.5rem;
    transition: .3s;
}

.nav__link:hover::after {
    width: 60%;
}

.nav__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.shadow-header {
    box-shadow: 0 4px 16px hsla(22, 100%, 8%, .1);
}

.active-link::after {
    width: 60%;
}

/* Add a responsive fix for the flag icon */
.flag-icon {
    width: 40px; /* Increased size */
    height: auto;
    cursor: pointer;
}

/* Ensure the flag is centered and positioned correctly on small screens */
@media screen and (max-width: 768px) {
    .flag-icon {
        width: 30px; /* Adjust the size for smaller screens */
    }

    .nav__list {
        flex-direction: column; /* Stack vertically */
        row-gap: 2rem; /* Add spacing between items */
    }
}

.home__container{
   padding-block: 3rem 2rem;
    justify-content: center;
    row-gap: 3.5rem;
}

.home__data{
    position: relative;
    text-align: center;
}

.home__title{
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d9a20b;
}

.home__description{
    margin-bottom: 2.5rem;
}

.home__sticker{
   width: 60px;
   rotate: 15deg;
   position: absolute;
   bottom: 2rem;
   right: 1rem;
   opacity: .5; 
}

.home__images{
    position: relative;
    display: grid;
    justify-items: center;
    justify-self: center;
}

.home__ingredient{
    width: 60px;
    filter: var(--shadow-small-img);
    position: absolute;
    z-index: 2;
}

.home__struk,
.home__dish,
.home__konzola,
.home__colad,
.home__teren,
.home__pringle,
.home__cheetos,
.home__taki,
.home__kinder,
.home__mrbeast,
.home__rbd,
.home__lgtv,
.home__hisen,
.home__shokz{
    filter: var(--shadow-big-img);
}

.home__struk{
    margin-top: -70px;
    width: 300px;
    z-index: 2;
}
.home__dish{
    width: 600px;
    position: absolute;
    top: 5rem;
    rotate: 7deg;
}
.home__konzola{
    width: 600px;
    position: absolute;
    top: 5rem;
    rotate: 7deg;
}
.home__colad{
    width: 600px;
    position: absolute;
    top: 5rem;
}
.home__teren{
    width: 600px;
    position: absolute;
    top: 5rem;
}
.home__rbd{
    width: 600px;
    position: absolute;
    top: 5rem;
}


.home__sir-1{
    width: 30px;
    left: 1rem;
    top: 2rem;
    rotate: 15deg;
}

.home__sir-2{
    width: 30px;
    right: -2rem;
    bottom: 2.5rem;
    rotate:10deg;
}

.home__valjak-1{
    width: 60px;
    top: 3rem;
    right: 8rem;
    rotate: 50deg;
}

.home__sol-1{
    width: 60px;
    top: 5rem;
    right: 2rem;
    transform: scaleX(-1);
    rotate: -20deg;
}
.home__sol-2{
    width: 60px;
    left: -2.5rem;
    bottom: 7rem;
    rotate: 10deg;
}



.home__nin1{
    width: 30px;
    left: 1rem;
    top: 2rem;
    rotate: 15deg;
}

.home__nin2{
    width: 30px;
    right: -2rem;
    bottom: 2.5rem;
    rotate:10deg;
}

.home__nin3{
    width: 60px;
    top: 3rem;
    right: 8rem;
    rotate: 50deg;
}



.home__col1{
    width: 30px;
    left: 1rem;
    top: 2rem;
    rotate: 15deg;
}

.home__col2{
    width: 30px;
    right: -2rem;
    bottom: 2.5rem;
    rotate:10deg;
}


.home__nin4{
    width: 60px;
    top: 5rem;
    right: 2rem;
    transform: scaleX(-1);
    rotate: -20deg;
}




.home__rb1{
    width: 30px;
    right: -2rem;
    bottom: 2.5rem;
    rotate:10deg;
}
.home__rb2{
    width: 60px;
    top: 5rem;
    right: 2rem;
    rotate: -20deg;
}
.home__rb3{
    width: 60px;
    left: -2.5rem;
    bottom: 7rem;
    rotate: 10deg;
}



.home__pr1{
    width: 160px;
    right: -2rem;
    bottom: -1rem;
}
.home__pr2{
    width: 260px;
    top: -13rem;
    right: -9rem;
    rotate: -30deg;
}
.home__pr3{
    width: 160px;
    left: -2.5rem;
    bottom: 7rem;
    rotate: 10deg;
}


.home__hein1{
    width: 160px;
    right: -2rem;
    bottom: -1rem;
}
.home__hein2{
    width: 260px;
    top: -13rem;
    right: -9rem;
    rotate: -30deg;
}



.home__pringle{
    width: 600px;
    position: absolute;
    top: -1rem;
}
.home__prin1{
    width: 160px;
    right: -2rem;
    bottom: -1rem;
    rotate: 5deg;
}
.home__prin2{
    width: 150px;
    top: -12.3rem;
    right: 23rem;
    rotate: -5deg;
}
.home__prin3{
    width: 60px;
    left: -2.5rem;
    bottom: 7rem;
    rotate: 10deg;
}



.home__cheetos{
    width: 600px;
    position: absolute;
    top: -1rem;
}
.home__che1{
    width: 160px;
    right: -2rem;
    bottom: -1rem;
    rotate: 5deg;
}
.home__che2{
    width: 150px;
    top: -12.3rem;
    right: 23rem;
    rotate: -5deg;
}


.home__taki{
    width: 600px;
    position: absolute;
    top: -6rem;
}
.home__tak1{
    width: 160px;
    right: -2rem;
    bottom: -7rem;
    rotate: 15deg;
}
.home__tak2{
    width: 150px;
    top: -12.3rem;
    right: 23rem;
    rotate: -15deg;
}



.home__kinder{
    width: 600px;
    position: absolute;
    top: -6rem;
}
.home__nutella{
    width: 160px;
    right: -2rem;
    bottom: -7rem;
    rotate: 15deg;
}
.home__ferrero{
    width: 150px;
    top: -12.3rem;
    right: 23rem;
    rotate: -15deg;
}



.home__mrbeast{
    width: 500px;
    position: absolute;
    top: -1rem;
    rotate: 20deg;
}
.home__mrb1{
    width: 200px;
    right: -9rem;
    bottom: -7rem;
    rotate: 10deg;
}
.home__mrb2{
    width: 240px;
    top: -4.5rem;
    right: 25rem;
    rotate: -15deg;
}



.home__lgtv{
    width: 500px;
    position: absolute;
    top: -1rem;
}
.home__lg1{
    width: 30px;
    left: 1rem;
    top: 2rem;
    rotate: 15deg;
}

.home__lg2{
    width: 30px;
    right: -2rem;
    bottom: 2.5rem;
    rotate:10deg;
}

.home__elt1{
    width: 150px;
    left: -5rem;
    top: -7rem;
    rotate: -10deg;
}

.home__elt2{
    width: 150px;
    right: -6rem;
    bottom: 2.5rem;
    rotate:10deg;
}

.home__sam1{
    width: 200px;
    left: -5rem;
    top: -11rem;
    rotate: -10deg;
}
.home__sam2{
    width: 200px;
    right: -6rem;
    bottom: 2.5rem;
    rotate:10deg;
}


.home__hisen{
    width: 500px;
    position: absolute;
    top: -5.2rem;
}
.home__his1{
    width: 130px;
    left: -8rem;
    top: -11rem;
    rotate: 10deg;
}
.home__his2{
    width: 80px;
    right: -9rem;
    bottom: -1rem;
    rotate:10deg;
}


.home__shokz{
    width: 600px;
    position: absolute;
    top: -5rem;
}
.home__sho1{
    width: 120px;
    left: -7.5rem;
    top: -4rem;
    rotate: -10deg;
}
.home__sho2{
    width: 120px;
    right: -8rem;
    bottom: -7rem;
    rotate:10deg;
}
.home__sho3{
    width: 120px;
    right: 2rem;
    bottom: 2rem;
    rotate:10deg;
}
.home__sho4{
    width: 180px;
    left: -8rem;
    bottom: -7rem;
    rotate:40deg;
}


.button{
    display: inline-flex;
    background-color: var(--first-color);
    color: var(--title-color);
    padding: 1rem 1.5rem;
    font-family: var(--second-font);
    border-radius: 4rem;
    transition: box-shadow .4s;
}

.button:hover{
    box-shadow: 0 8px 24px hsla(22, 100%, 8%, .2);
}

button.small-black {
    width: 150px; /* Manja širina */
    padding: 10px 0; /* Manje margine */
    background: #000; /* Crna pozadina */
    border: 3px solid #fff; /* Crni okvir */
    color: #fff; /* Boja teksta ostaje bijela */
  }
  
  button.small-black:hover {
    border: none; /* Uklanja okvir prilikom hovera */
  }

::-webkit-scrollbar{
    width: .6rem;
    background-color: hsl(34, 16%, 75%);
}
::-webkit-scrollbar-thumb{
    background-color: hsl(34, 16%, 65%);
}
::-webkit-scrollbar-thumb:hover{
    background-color: hsl(34, 16%, 55%);
}

.scrollup {
    position: fixed;
    right: 1rem;
    bottom: 2rem;
    background-color: var(--body-color);
    color: var(--title-color);
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    z-index: var(--z-fixed);
    display: none; /* Initial state is hidden */
    opacity: 0;
    transition: opacity 0.4s;
    box-shadow: 0 4px 16px hsla(22, 100%, 8%, .2);
}

.show-scroll {
    display: block;
    opacity: 1;
}

.prava{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; /* Centriranje teksta */
}

.flag-icon {
    width: 30px; /* Adjust the size of the flag icon */
    height: auto;
    cursor: pointer;
}

@media screen and (max-width: 330px){
    .container{
        margin-inline: 1rem;
    }

    .home__title{
        font-size: 2.5rem;
    }
    .home__struk{
        width: 210px;
    }
    .home__dish{
        width: 250px;
        bottom: -2rem;
    }
    .recipe__container{
        column-gap: 5rem;
    }
    .recipe__img{
        left: 20rem;
    }
    .popular__container {
        grid-template-columns: 100px; /* Jedan card po redu */
        justify-content: center; /* Centriraj card */
    }

    .popular__card {
        padding: 4rem 1rem; /* Povećan padding za bolji izgled */
        font-size: 1.1rem; /* Povećaj font unutar card-a */
    }

    .popular__img {
        width: 150px; /* Povećaj sliku */
    }
    
}

@media screen and (min-width: 540px){
    .home__container{
        grid-template-columns: repeat(1, 600px);
        justify-content: center;
    }
    .home__sir-1{
        left: 1rem;
        top: 0.5rem;
    }
    
    .home__sir-2{
        right: -3rem;
        bottom: 2.5rem;
        rotate: 100deg;
    }
    
    .home__valjak-1{
        top: 2rem;
        right: 8rem;
        rotate: 50deg;
    }
    
    .home__sol-1{
        top: 5rem;
        right: 0.5rem;
        transform: scaleX(-1);
        rotate: -20deg;
    }
    .home__sol-2{
        left: -3.5rem;
        bottom: 7rem;
        rotate: 10deg;
    }
    .recipe__img{
        width: 500px;
        height: 1000px;
        left: -15rem;
        bottom: -5rem;
        top: -8rem;
    }
    .recipe__container{
        grid-template-columns: 200px 230px;
        justify-content: center;
        column-gap: 3rem;
    }
    .popular__container{
        grid-template-columns: repeat(2, 260px);
        justify-content: center;
    }
    .contact{
        max-width: 500px;
        margin: 0 auto;
    }





    .home__konzola{
        width: 530px;
        right: 1rem;
        position: absolute;
        top: 5rem;
        rotate: 13deg;
    }
    .home__nin1{
        left: -5rem;
        top: -5rem;
        width: 130px;
        rotate: -20deg;
    }
    
    .home__nin2{
        right: 7rem;
        top: -2rem;
        width: 80px;
        rotate: -360deg;
    }
    
    .home__nin3{
        top: -3.5rem;
        right: -3rem;
        rotate: 5deg;
        width: 130px;
    }

    .home__shokz{
        width: 600px;
        position: absolute;
        top: 0.5rem;
    }
    .home__sho1{
        width: 170px;
        left: -9.5rem;
        top: -7rem;
        rotate: -10deg;
    }
    .home__sho2{
        width: 120px;
        right: -8rem;
        bottom: -3rem;
        rotate:10deg;
    }
    .home__sho3{
        width: 120px;
        right: -9rem;
        bottom: 4rem;
        rotate:10deg;
    }
    .home__sho4{
        width: 180px;
        left: -10rem;
        bottom: -4rem;
        rotate:40deg;
    }


    .home__colad{
        width: 600px;
        position: absolute;
        top: -5rem;
    }
    .home__col1{
        width: 120px;
        left: -7.5rem;
        top: -4rem;
        rotate: -10deg;
    }
    
    .home__col2{
        width: 120px;
        right: -8rem;
        bottom: -7rem;
        rotate:10deg;
    }


    .home__rbd{
        width: 200px;
        position: absolute;
        top: 5rem;
    }
    .home__rb2{
        width: 220px;
        top: -8rem;
        right: -9.5rem;
        rotate: 5deg;
    }
    .home__rb3{
        width: 140px;
        left: -7rem;
        bottom: -3rem;
        rotate: -5deg;
    }


    .home__pr1{
        width: 180px;
        right: 17rem;
        bottom: -2.8rem;
    }
    .home__pr2{
        width: 135px;
        top: -9rem;
        right: -8rem;
        rotate: 0deg;
    }
    .home__pr3{
        width: 120px;
        left: 24rem;
        bottom: -2.5rem;
        rotate: 3deg;
    }


    .home__teren{
        width: 300px;
        position: absolute;
        top: -1rem;
    }
    .home__hein1{
        width: 160px;
        right: -7rem;
        bottom: -5rem;
        rotate: 5deg;
    }
    .home__hein2{
        width: 150px;
        top: -15rem;
        right: 16.5rem;
        rotate: -5deg;
    }


    
    .home__pringle{
        width: 400px;
        position: absolute;
        top: -2rem;
    }
    .home__prin1{
        width: 100px;
        right: -5rem;
        bottom: -2rem;
        rotate: 5deg;
    }
    .home__prin2{
        width: 100px;
        top: -11rem;
        right: 23rem;
        rotate: -5deg;
    }
    .home__prin3{
        width: 100px;
        left: 22rem;
        bottom: -2.5rem;
        
    }

    .home__cheetos{
        width: 600px;
        position: absolute;
        top: -5rem;
    }
    .home__che1{
        width: 240px;
        right: -15.5rem;
        bottom: -3rem;
        rotate: 10deg;
    }
    .home__che2{
        width: 230px;
        top: -9.5rem;
        right: 20rem;
        rotate: -10deg;
    }


    .home__taki{
        width: 400px;
        position: absolute;
        top: 5rem;
        rotate: 100deg;
        right: -1rem;
    }
    .home__tak1{
        width: 160px;
        right: -10rem;
        bottom: 1rem;
        rotate: 10deg;
    }
    .home__tak2{
        width: 150px;
        top: -1rem;
        right: 20rem;
        rotate: -10deg;
    }


    .home__kinder{
        width: 500px;
        position: absolute;
        top: -2.4rem;
        rotate: 20deg;
    }
    .home__nutella{
        width: 250px;
        right: -14rem;
        bottom: -4rem;
        rotate: 5deg;
    }
    .home__ferrero{
        width: 300px;
        top: -7rem;
        right: 14rem;
        rotate: -15deg;
    }


    .home__mrbeast{
        width: 500px;
        position: absolute;
        top: 7rem;
        rotate: 10deg;
    }
    .home__mrb1{
        width: 250px;
        right: -14rem;
        bottom: -3rem;
        rotate: 15deg;
    }
    .home__mrb2{
        width: 160px;
        top: -4rem;
        right: 22rem;
        rotate: -15deg;
    }


    .home__lgtv{
        width: 500px;
        position: absolute;
        top: -5.2rem;
    }
    .home__lg1{
        width: 100px;
        left: -8rem;
        top: -4rem;
        rotate: 0deg;
    }
    
    .home__lg2{
        width: 100px;
        right: -7rem;
        bottom: 1.5rem;
        rotate:10deg;
    }

    .home__elt1{
        width: 300px;
        left: -18rem;
        top: -3rem;
        rotate: -10deg;
    }
    
    .home__elt2{
        width: 150px;
        right: -12rem;
        bottom: -1rem;
        rotate:10deg;
    }

    .home__sam1{
        width: 130px;
        left: -8rem;
        top: -11rem;
        rotate: 10deg;
    }
    .home__sam2{
        width: 80px;
        right: -9rem;
        bottom: -1rem;
        rotate:10deg;
    }


    .home__hisen{
        width: 500px;
        position: absolute;
        top: 5rem;
    }
    .home__his1{
        width: 200px;
        left: -12.9rem;
        top: 4.2rem;
        rotate: 0deg;
    }
    .home__his2{
        width: 170px;
        right: -11rem;
        bottom: -1.7rem;
        rotate:0deg;
    }

}

@media screen and (max-width: 768px) {
    .popular__container {
        grid-template-columns: 1fr; /* Jedan card po redu */
        justify-content: center; /* Centriraj card */
    }

    .popular__card {
        padding: 4rem 1rem; /* Povećan padding za bolji izgled */
        font-size: 1.1rem; /* Povećaj font unutar card-a */
    }

    .popular__img {
        width: 150px; /* Povećaj sliku */
    }
}


@media screen and (min-width: 1150px){
    .container{
        margin-inline: auto;
    }
    .section{
        padding-block: 7rem 2rem;
    }
    .section__title{
        margin-bottom: 4.5rem;
    }
    .home__container{
        grid-template-columns: 430px 605px;
        align-items: center;
        column-gap: 4rem;
        padding-block: 7rem 4rem;
    }
    .nav{
        height: calc(var(--header-height)+2rem);
    }
    .nav__toggle,
    .nav__close{
        display: none;
    }
    .nav__list{
       flex-direction: row;
       column-gap: 4rem; 
    }
    .home__data{
        text-align: initial;
    }
    .home__description{
        margin-bottom: 3.5rem;
        padding-right: 3rem;
    }
    .home__sticker{
        width: 100px;
        right: 10rem;
        bottom: 1rem;
    }
    .home__struk{
        width: 490px;
    }
    .home__dish{
        width: 500px;
        bottom: -19rem;
    }
    .home__ingredient{
        width: 100px;
    }
    .home__sir-1{
        left: -5rem;
        top: -5rem;
        width: 200px;
        rotate: -20deg;
    }
    
    .home__sir-2{
        right: -8rem;
        bottom: 2.5rem;
        rotate: -20deg;
        width: 150px;
    }
    
    .home__valjak-1{
        top: -1rem;
        right: 8rem;
        rotate: 50deg;
    }
    
    .home__sol-1{
        top: -1rem;
        right: -2rem;
        transform: scaleX(-1);
        rotate: 10deg;
    }
    .home__sol-2{
        left: -2.5rem;
        bottom: 3rem;
        rotate: 10deg;
    }

    .home__konzola{
        width: 600px;
        right: 2rem;
        position: absolute;
        top: 11rem;
        rotate: 13deg;
    }
    .home__nin1{
        left: -5rem;
        top: -5rem;
        width: 200px;
        rotate: -20deg;
    }
    
    .home__nin2{
        right: 11rem;
        top: -1.5rem;
        width: 150px;
        rotate: -360deg;
    }
    
    .home__nin3{
        top: -2.5rem;
        right: -3rem;
        rotate: 5deg;
        width: 200px;
    }
    
    .home__shokz{
        width: 600px;
        position: absolute;
        top: 4rem;
    }
    .home__sho1{
        width: 180px;
        left: -7.5rem;
        top: -4rem;
        rotate: -10deg;
    }
    .home__sho2{
        width: 180px;
        right: -8rem;
        bottom: -7rem;
        rotate:-10deg;
    }
    .home__sho3{
        width: 140px;
        right: -6rem;
        bottom: 8rem;
        rotate:10deg;
    }
    .home__sho4{
        width: 180px;
        left: -8rem;
        bottom: -7rem;
        rotate:40deg;
    }

    .home__colad{
        width: 1200px;
        position: absolute;
        top: -6rem;
    }
    .home__col1{
        left: -9rem;
        top: -3rem;
        width: 150px;
        rotate: -10deg;
        
    }
    
    .home__col2{
        right: -10rem;
        bottom: -7rem;
        rotate: 10deg;
        width: 150px;
    }



    .home__rbd{
        width: 300px;
        position: absolute;
        top: 12rem;
    }
    .home__rb2{
        width: 260px;
        top: -5rem;
        right: -9rem;
        rotate: 5deg;
    }
    .home__rb3{
        width: 160px;
        left: -6.5rem;
        bottom: 0rem;
        rotate: -5deg;
    }


    .home__pr1{
        width: 180px;
        right: 28.5rem;
        bottom: -1.7rem;
    }
    .home__pr2{
        width: 135px;
        top: -4.5rem;
        right: -8rem;
        rotate: 0deg;
    }
    .home__pr3{
        width: 120px;
        left: 11rem;
        bottom: 10rem;
        rotate: 270deg;
    }




    .home__teren{
        width: 600px;
        position: absolute;
        top: -1rem;
    }
    .home__hein1{
        width: 160px;
        right: -2rem;
        bottom: -1rem;
        rotate: 5deg;
    }
    .home__hein2{
        width: 150px;
        top: -12.3rem;
        right: 23rem;
        rotate: -5deg;
    }




    .home__pringle{
        width: 600px;
        position: absolute;
        top: -1rem;
    }
    .home__prin1{
        width: 100px;
        right: 0rem;
        bottom: 0.5rem;
        rotate: 5deg;
    }
    .home__prin2{
        width: 100px;
        top: -12.3rem;
        right: 23rem;
        rotate: -5deg;
    }
    .home__prin3{
        width: 100px;
        left: -0.5rem;
        bottom: -12rem;
        rotate: -60deg;
    }


    .home__cheetos{
        width: 600px;
        position: absolute;
        top: -6rem;
    }
    .home__che1{
        width: 160px;
        right: -2rem;
        bottom: -7rem;
        rotate: 15deg;
    }
    .home__che2{
        width: 150px;
        top: -12.3rem;
        right: 23rem;
        rotate: -15deg;
    }



    .home__taki{
        width: 600px;
        position: absolute;
        top: 12rem;
        rotate: 90deg;
    }
    .home__tak1{
        width: 160px;
        right: -2rem;
        bottom: -7rem;
        rotate: 15deg;
    }
    .home__tak2{
        width: 150px;
        top: -12.3rem;
        right: 23rem;
        rotate: -15deg;
    }



    .home__kinder{
        width: 500px;
        position: absolute;
        top: -1rem;
        rotate: 20deg;
    }
    .home__nutella{
        width: 280px;
        right: -14rem;
        bottom: -7rem;
        rotate: 10deg;
    }
    .home__ferrero{
        width: 300px;
        top: -4.5rem;
        right: 24rem;
        rotate: -15deg;
    }


    .home__mrbeast{
        width: 500px;
        position: absolute;
        top: 15rem;
        rotate: 10deg;
    }
    .home__mrb1{
        width: 250px;
        right: -12rem;
        bottom: -3rem;
        rotate: 15deg;
    }
    .home__mrb2{
        width: 160px;
        top: -7rem;
        right: 25rem;
        rotate: -15deg;
    }


    .home__lgtv{
        width: 500px;
        position: absolute;
        top: 5.5rem;
        rotate: 1deg;
    }
    .home__lg1{
        width: 150px;
        left: -5rem;
        top: -7rem;
        rotate: -10deg;
    }
    
    .home__lg2{
        width: 150px;
        right: -6rem;
        bottom: 2.5rem;
        rotate:10deg;
    }


    .home__elt1{
        width: 380px;
        left: -5rem;
        top: -14rem;
        rotate: -10deg;
    }
    .home__elt2{
        width: 200px;
        right: -12rem;
        bottom: -5rem;
        rotate:10deg;
    }

    .home__sam1{
        width: 180px;
        left: -9rem;
        top: -11rem;
        rotate: 5deg;
    }
    .home__sam2{
        width: 110px;
        right: -9rem;
        bottom: -1rem;
        rotate:10deg;
    }


    .home__hisen{
        width: 300px;
        position: absolute;
        top: 15rem;
    }
    .home__his1{
        width: 210px;
        left: -8rem;
        top: 14rem;
        rotate: 0deg;
    }
    .home__his2{
        width: 180px;
        right: -7rem;
        bottom: -0.5rem;
        rotate:0deg;
    }


    .recipe__container{
        grid-template-columns: 350px 300px;
        column-gap: 8rem;
        padding-bottom: 3rem;
    }
    .recipe__img{
        width: 600px;
        height: 1400px;
        left: -10rem;
        bottom: -20rem;
    }
    .recipe__card{
        column-gap: 1rem;
    }
    .recipe__box{
        width: 100px;
        height: 100px;
        border-radius: 1.25rem;
        border-width: 5px;
    }
    .recipe_box img{
        width: 85px;
    }
    .recipe__title{
        font-size: var(--h3-font-size);
    }
    .recipe__description{
        font-size: var(--normal-font-size);
    }

    .popular__container{
        grid-template-columns: repeat(2, 600px);
        gap: 6.5rem 4rem;
        padding-block: 3rem;
    }
    .popular__card{
        padding: 4rem 1.25rem 1.25rem;
        border-radius: 2rem;
        border-width: 6px;
    }
    .popular__img{
        width: 200px;
        top: -5.5rem;
    }
    .popular__img1{
        position: absolute;
        top: -10.5rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 280px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img2{
        position: absolute;
        top: -10.5rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 280px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img3{
        position: absolute;
        top: -3.5rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 280px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img4{
        position: absolute;
        top: -4rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 280px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img5{
        position: absolute;
        top: -11.5rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 320px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img6{
        position: absolute;
        top: -4rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 320px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img7{
        position: absolute;
        top: -9rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 320px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img8{
        position: absolute;
        top: -5rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 250px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img9{
        position: absolute;
        top: -9rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 380px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img10{
        position: absolute;
        top: -7.5rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 300px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img11{
        position: absolute;
        top: -7rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 300px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img12{
        position: absolute;
        top: -8rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 180px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img13{
        position: absolute;
        top: -4.5rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 360px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    .popular__img14{
        position: absolute;
        top: -9rem; /* Prilagodba pozicije slike */
        left: 0;
        right: 0;
        transform: translateY(10%);
        width: 240px; /* Veličina slike */
        margin: 0 auto;
        filter: var(--shadow-small-img);
        transition: transform .4s;
    }
    
    .popular__title{
        font-size: var(--h2-font-size);
    }
    .popular__price{
        font-size: var(--h1-font-size);
    }

    .contact{
        max-width: initial;
    }
    .contact__container{
        border-radius: 4rem;
        padding-block: 4rem 6.5rem;
    }
    .contact__content{
        grid-template-columns: 420px 435px;
        justify-content: center;
        column-gap: 6.5rem;
    }
    .contact__data{
        grid-template-columns: repeat(2, max-content);
        text-align: initial;
        gap: 4.5rem 2rem;
        order: 1;
    }
    .contact__title{
        margin-bottom: 1rem;
    }
    .contact__image{
      position: relative;
      width: 100%;
    }
    .contact__img{
        width: 430px;
        position: absolute;
        top: -2.5rem;
    }

    .footer{
        padding-block: 5rem 3rem;
    }
    .footer__container{
        row-gap: 3.5rem;
    }
    .footer__copy{
        margin-top: 4rem;
    }
    .prava{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center; /* Centriranje teksta */
    }
    
}