/* starting values */

#wpadminbar{
  display: none !important;
}

html{
  margin-top: 0 !important;
}

  
  *, *:before, *:after{
    scroll-behavior: smooth;
    box-sizing: border-box;
  }
  
  body {
    margin:auto;
    font-family:Roboto;
    position:relative;

  }

  ul{
    display: flex;
    gap: 20px;
  }
  
  li {
    list-style: none;
  }
  
  
  a {
    text-decoration: none;
  }
  
  h2 {
    margin: 0;
  }

  /* header */

  #Header{
    height: 70px;
    color: white;
    display: flex;
    justify-content: center;
  }

  header{
    height: 100%;
    max-width: 1440px;
  }

  .navbar{
    display: flex;
    align-items: center;
    background-color: transparent;
    position: relative;
    width: 100%;
    background: #202022;
    justify-content: space-between;
    padding: 0 40px 0 40px;
    height: 100%;
  }
  
  .logo-container{
    height: 50px;
    width: 15%;
    display: flex;
    justify-content: center;
  }

  .logo-link{
    display: flex;
    align-items: center;
  }

  .logo-container img {
    width: 100%;
  }

  .complete-menu a{
    color: white;
  }
  
  /* Menus */

  .main-menu{
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .sub-menu{
    background: white;
    display: flex;
    visibility: hidden;
    z-index: 1;
    position: absolute;
    top: 71px;
    flex-direction: column;
    padding: 20px;
    border-radius: 5px;
    
  }

  .dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
    color: #aaa;
}


  .main-menu .menu > li:hover > .sub-menu {
    visibility: visible;
    
  }

  .has-children-link{
    padding: 28px 11px;
    font-weight: 700;
    font-size: 14px;
    color: #444444;
  }

  .menu a:hover{
    color: #006cb8;
  }
  
  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px
  }
  
  .nav-branding {
    color: white;
    font-size: 3rem;
  }
  
  .nav-link {
    color: gray;
    transition: 0,7s ease;
  }
  
  
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    display:block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
  
  }

  /* Homepage */
  
  #Homepage{
    display: flex;
    background: white;
    max-width: 1440px;
    margin: auto;
    flex-direction: column;
  }

  .intro{
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    align-items: center;
    height: fit-content;
  }
  
  .slideshow-container {
    width: 100%;
    position: relative;
    height: 600px;
    display: flex;
    padding-top: 2rem;
    
  }

  .slideshow{
    width: 100%;
  }

  .mySlides {
    display: none;
    height: 100%;
    align-items: center;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }

  .mySlides img{
    width: 100%;
  }

  

  .hero-text{
    position: absolute;
    padding: 30px;
    border-radius: 15px;
    top: 50%;
    left: 100px;
  }

  .hero-text button{
    border: 0;
    border-radius: 5px;
    background: white;
    height: 100px;
    width: 300px;
    font-size: x-large;
    border-left: 5px solid orange;
  }

  .hero-text button:hover{
    color: orange;
    transition: 0.3s;
    cursor: pointer;
  }

  .hero-text p{
    background-color: orange;
    color: white;
    position: absolute;
    top: 90px;
    width: 70%;
    left: 65px;
    padding: 7px;
  }


  .fade {
    animation: fadeIn 5s;
    animation-duration: 1.5s;
  }

  @keyframes fadeIn {
    0% {opacity: 0.7;}
    100% {opacity: 1;}
  }


  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }

  .picture-selector-container{
    width: 100%;
    position: relative;
    height: fit-content;
    display: flex;
    justify-content: center;
  }

  .picture-selector{
    width: 120px;
    height: 40px;
    margin-top: 10px;
    background: lightgray;
    top: 100%;
    right: 46%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 15px;
  }

  .dot{
    display: block;
    height: 15px;
    width: 15px;
    background: white;
    border-radius: 10px;
    border: 3px solid white;
    transition: 0.3s;
  }

  .active-dot{
    background: orangered;
    border: 0;
  }
  
  .description{
    display: flex;
    align-items: flex-end;
    justify-content:start;
    width: 80%;
    color: black;
    height: 100px;
    margin: 0px 0px 20px 20px;
  }

  .description-text{
    font-size: 2em;
    width: 80%;
  }
  
  .description a{
    margin: 5px;
    color: black;
  }

  .description a:hover{
    color: gray;
  }

  .carousel-container{
    position: relative;
    display: flex;
    width: 100%;
    height: 45vh;
    flex-direction: column;
    margin: 60px 0 0 0;
    
    overflow: hidden;
  }

  .carousel::-webkit-scrollbar{
    display: none;
  }

  .carousel{
    display: flex;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 30px 0;
  }
  
  .carousel-slide{
    width: 100%;
    height: 100%;
    display: flex;
  }

  .slide-inner{
    display: flex;
    flex-direction: row;
    position: relative;
    margin: 20px;
    justify-content: center;
    width: 100%;
    gap: 20px;
    height: 315px;
  }

  .post-item{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    flex-direction: column;
    width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
  }

  .post-item:hover{
    border: 1px solid lightgray;
  }

  .post-desc{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: gray;
  }

  .post-desc h3{
    font-size: 19px;
    text-decoration: none;
    color: orangered;
  }

  .post-desc a{
    color: orangered;
  }

  .thumbnail{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .prevArticle, .nextArticle{
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      margin-top: -22px;
      padding: 16px;
      color: black;
      font-weight: bold;
      font-size: 18px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
    }

    .nextArticle {
      right: 0;
      border-radius: 3px 0 0 3px;
    }

    .prevArticle{
      left: 0;
    }

    

    .slike-prodavnice{
      width: 100%;
      height: 60vh;
      margin: 0px 0 100px 0;
      position: relative;
    }

    .pictures-grid{
      display: flex;
      gap: 20px;
      justify-items: center;
      height: fit-content;
    }

    .pics{
    height: 90%;
    width: 90%;
    }

    .pics-img{
      height: 100%;
      width: 100%;
      
    }

    .pics-img img{
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

  .social{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px;
  }

  .social-title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: black;
    height: 200px;
    font-size: 3em;
  }

  .social-pad{
    height: 400px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    background: lightgray;
    border-radius: 15px;
    overflow: hidden;
  }

  .social-pad-text{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 20px 20px 20px 45px;
  }

  .social-pad-text p:first-child{
    font-weight: 500;
    font-size: x-large;
  }

  .social-pad-img{
    height: 100%;
    width: 45%;
  }
  
  .social-pad-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .social-media{
    height: 100px;
    width: 100%;
    display: flex;
    transition: 0.3s;
  }

  .social-media div{
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
  }

  .social-media div img{
    height: 50px;
    width: 50px;
  }

  .ending{
    width: 100%;
    height: 40vh;
  }
  
  .footer{
    display: flex;
    justify-content: center;
    background: #323234;
    color: white;
    align-items: center;
    height: 100%;
    width: 100%;
    flex-wrap: wrap;
    padding-top: 40px;
    flex-direction: column;
    gap: 20px;
  }

  .footer p{
    font-size: 13px;
    font-weight: 400;
  }

  .footer-logo{
    height: 100px;
    width: 100px;
  }

  .footer img{
    width: 100%;
    height: 100%;
  }

  .menu-for-footer a{
    color: white;
  }

  #menu-footer-menu{
    padding: 0;
  }

  /* this is for single articles */

  .intro-for-articles{
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    align-items: center;
    padding-top: 20px;
  }

  .article{
    width: 30%;
  }

  .single-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  /* this css is for asortiman */

  .shop-title{
    display: flex;
    align-items: start;
    padding-left: 20%;
    margin-top: 50px;
    font-size: x-large;
  }

  .shop-container{
    display: flex;
    justify-content: center;
    margin: 100px 0 200px 0;
  }

  .shop-grid {
    width: 60%;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 10px;
}

.shop-item {
  background: white;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  height: 100%;
  width: 100%;
  transition: 0.3s;
}

.shop-item:hover{
  background: #f4f4f4;
  
}

.shop-item a{
  color: black;
}


.shop-item img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.thumb{
  height: 80%;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
}

.thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* css for contact page */

.hero-container{
    width: 100%;
    position: relative;
    height: 40vh;
    overflow: hidden;
    display: flex;
    
}

.single-img{
    display: flex;
    height: 100%;
    align-items: center;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.single-hero-text {
    display: flex;
    align-items: start;
    padding-left: 20%;
    margin-top: 50px;
    font-size: x-large;
}

.content{
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin: 100px 0 200px 0;
    align-items: center;
}

.doboj{
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.doboj-info p{
  font-weight: 300;
}

.doboj-img{
  height: 50vh;
  width: 50%;
}

.doboj-img img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.maps{
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* css for Location page */

.doboj-field{
  display: flex;
  height: 50vh;
  justify-content: space-between;
}

.doboj-location-text p:first-child {
  font-weight: 600;
  font-size: x-large;
}

.doboj-location-text p{
  font-weight: 300;
}

.doboj-location-text button{
  height: 70px;
  width: 150px;
  background-color: transparent;
  border-radius: 0;
  border: 1px solid black;
}


.doboj-location {
  height: 100%;
  width: 50%;
}

.doboj-location img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.intro-category{
  width: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  align-items: center;
  height: 200vh;
}

.category-title{
  width: 100%;
  height: 200px;
  padding-left: 15%;
  font-size: xxx-large;
  display: flex;
  align-items: center;
}

.article-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 30%;
  gap: 16px;
  padding: 1rem;
  height: 100vh;
}

.article-item {
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* First item is larger */
.article-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}


/* Responsive for tablet */

  @media(max-width:1080px){

    body{
      width: 100%;
      background: #fff;
    }

    .navbar{
      flex-direction: column;
      background: #202022;
    }

    .logo-container{
      display: flex;
      justify-content: center;
      width: 100%;
      overflow: hidden;
    }

    .logo-link{
      width: 40%;
      height: 100%;
    }

    .complete-menu{
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .sub-menu{
      top: 150px;
    }

    .article{
      width: 50%;
    }

    .carousel-container{
      height: fit-content;
    }

    .slike-prodavnice{
      margin: 0;
    }

    .social{
      margin: 0;
    }

    /* css for the shop page */

    .shop-grid{
      grid-template-columns:repeat(2 ,1fr);
    }
  }
  /*header menu for tablets */
  @media(min-width:600px) and (max-width: 1080px){

  #Header{
    height: fit-content;
  }
  
  #menu-my-main-header-menu{
    padding: 0;
  }

  .hero-text{
    width: 55%;
  }

  .post-item{
    width: 260px;
  }

  .post-desc{
    width: 100%;
  }

  /* shop css */

  .shop-item{
    height: 300px;
  }

  .thumb{
    height: 65%;
  }
  
  }
  /* phone screen*/
  @media(max-width: 600px) {

    #Header{
    height: 100%;
    background: #202022;
    color: white;
    }

    .navbar{
      flex-direction: row;
      padding: 0;
      height: 80px;
      background: #202022;
    }

    .bar{
      background: white;
    }

    .hamburger{
      display: block;
      right: 5%;
      position: relative;
      z-index: 6;
    }

    .dropdown-arrow{
      color: white;
      display: block;
    }

    .dropdown-arrow.active + .sub-menu{
      display: flex;
    }

    .dropdown-arrow

    .menu-item{
      height: 15px;
    }
    
    .menu-item.active{
      height: 115px;
    }

    .complete-menu{
      position: absolute;
      width: 100%;
      height: 0;
      z-index: 5;
      top: 79px;
      overflow: hidden;
      transition: 0.5s;
      background: #202022;
    }

    .complete-menu.active{
      height: 200px;
    }

   .menu{
      width: 100%;
      height: 100%;
      margin: 21px 0;
      padding-top: 17px;
      padding-left: 20px;
    }

    .has-children-link{
      color: black;
      font-size: 14px;
      display: flex;
      padding: 0;
    }
    
    li{
      display: grid;
      grid-template-areas:'has-children-link dropdown-arrow'
                          'sub-menu sub-menu' ;
      height: 15px;
      justify-content: space-between;
    }

    ul{
      flex-direction: column;
    }

    .main-menu{
      width: 100%;
      height: 0;
      transition: 0.5s;
    }

    .main-menu.active{
      height:200px;
      border-bottom:1px solid #dadada;
      background: #202022;
      color: white;
    }

    .sub-menu{
      visibility: visible;
      position: relative;
      display: none;
      padding: 0 10px 0 10px;
      right: 0px;
      top: 0px;
    }

    .logo-container{
      position: relative;
      background: #202022;
      justify-content: left;
      height: 100%;
      width: 100%;
    }

    .logo-container img{
      width: 80%;
    }

    .logo-link{
      width: 84%;
    }

    .logo-container h1{
      font-size: 15px;
    }

    #Homepage{
      flex-direction: column;
    }

    .hero-text{
      font-size: medium;
      padding: 10px;
      width: 100%;
      top: 70%;
      left: 0;
      display: flex;
      justify-content: center;
    }

    .hero-text p{
      display: none;
    }

    .description{
      width: 100%;
      display: flex;
      justify-content: center;
      height: 200px;
      align-items: center;
      margin: 0;
    }

    .description-text{
      width: 100%;
      text-align: center;
    }

    .intro{
      width: 100%;
    }

    .homepage-blog-section{
      margin: 15px;
    }

    .slideshow-container{
      height: 60vh;
      padding: 0;
    }

    .mySlides img{
      height: 100%;
      object-fit: cover;
    }

    .picture-selector{
      display: none;
    }

    .homepage-blog-section-posts{
      display: flex;
    }

    .carousel-container{
      position: relative;
      display: flex;
      width: 100%;
      height: fit-content;
      margin: 0;
    }

    .slide-inner{
      display: flex;
      flex-direction: row;
      position: relative;
      margin: 15px;
      justify-content: center;
      width: 100vw;
    }

    .prevArticle, .nextArticle{
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      margin-top: -22px;
      padding: 16px;
      color: black;
      font-weight: bold;
      font-size: 18px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
    }

    .prevArticle{
      left: 0;
    }

    .nextArticle {
      right: 0;
      border-radius: 3px 0 0 3px;
    }

    .post-item{
      border: 0;
      margin: 0;
      flex-direction: column;
      width: 100%;
      height: 100%;
    }

    .thumbnail{
      width: 100%;
      height: 300px;
    }

    .post-item a{
      height: 80%;
    }

    .post-desc{
      width: 100%;
      height: 20%;
      display: flex;
      justify-content: center;
      flex-direction: column;
    }

    .post-desc h3{
      margin: 10px 0 0 0;
    }

    .slike-prodavnice{
      flex-direction: column;
      height: fit-content;
    }

    .pictures-grid{
      flex-direction: column;
      align-items: center;
    }


    .pics{
      display: flex;
      align-items: center;
      justify-content: center;
          height: fit-content;
    width: 80%;
    }

    .pics img{
      height: 35vh;
      width: 100%;
    }

    .social-pad{
      height: 420px;
      width: 80%;
      flex-direction: column;
      margin-top: 80px;
    }

    .social-pad-text{
      width: 80%;
      margin: 20px 20px 20px 30px;
    }

    .social-pad-img{
      display: none;;
    }

    .social-media{
      gap: 30px;
      height: fit-content;
      justify-content: flex-start;
    }

    .social-media div{
      width: fit-content;
      height: fit-content;
    }

    .social-media div img{
      height: 50px;
      width: 50px;
    }

    .social-media a{
      height: 100%;
      width: 100%;
    }

    .footer{
      justify-content: center;
      padding: 0;
    }


    .menu-for-footer{
      width: 100%;
      height: 100%;
      margin: 21px 0;
      padding-top: 17px;
      padding-left: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .menu-for-footer a{
      text-decoration: none;
      color: white;
    }

    .article{
      width: 90%;
    }

    /* css for the shop page */

    .shop-grid{
      grid-template-columns:repeat(1 ,1fr);
      width: 90%;
    }

    .shop-title{
      justify-content: center;
      padding: 0;
    }

    .shop-item{

    }

    .thumb img{
      height: 100%;
      width: 100%;
      object-fit: contain;
    }

    .info{
      width: 100%;
      margin: 100px 0 0 0;
    }

    .doboj-location-text{
          width: 40%;
    padding: 10px;
    }

    .maps{
      width: 100%;
    }

    .doboj{
      justify-content: center;
    }

    .doboj-img{
      width: 100%;
    }

    .single-hero-text{
      padding: 0;
      font-size: 2em;
      justify-content: center;
    }

    .intro-category{
      height: fit-content;
    }

    .article-container{
      display: flex;
      height: fit-content;
      width: 100%;
      justify-content: center;
      flex-direction: column;
    }

    .article-item{
      height: 100%;
      width: 100%;
    }

    .article-item.featured{
    }

    .category-title{
      font-size: 2.5em;
      padding: 0;
      justify-content: center;
      text-align: center;
    }
  }
  
   