* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comfortaa', cursive;
}
h1 {
    font-family: 'Great Vibes', cursive;
}
:root {
    --main-color: #783a19;
}
header {
    width: 100%;
    height: 60px;
    border-bottom: 3px solid var(--main-color);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0px 30px;
    position: relative;
}
.logo {
    position: absolute;
    top: 0;
    left: 30px;
    z-index: 3;
}
.nav {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    color: var(--main-color);
}
.navigation {
   list-style: none;
   width: 70%;
   display: flex;
   align-items: center;
   justify-content: flex-end;
}
.nav-item {
    float: left;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding: 0px 20px;
}
.nav-item a {
  text-decoration: none;
  color: var(--main-color);
  transition: .5s;
  position: relative;
  display: flex;
  justify-content: center;
}
.nav-item a:after{
  content: "";
  width: 0%;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .5s;
}
.nav-item:hover {
  cursor: pointer;
}
.nav-item:hover a:after {
  width: 100%;
}
.social-icon {
    float: left;
    font-size: 30px;
    padding: 0px 20px;
}
.social-icon:hover {
  cursor: pointer;
}

/*******      ******/
.mobile-nav-open {
  font-weight: bold;
  display: none;
}
.mobile-nav {
  position: fixed;
  overflow: hidden;
  height: 0;
  width: 100%;
  background: white;
  top: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  transition: .5s ease-in;
}
.mobile-nav-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
}
.mobile-navigation {
  width: 80%;
  height: 70%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  list-style: none;
}
.mobile-nav-item a {
  text-decoration: none;
  color: var(--main-color);
  font-size: 2rem;
}
.social-icons-mobile {
  width: 80%;
  height: 20%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-icons-mobile a {
  font-size: 2rem;
  text-decoration: none;
  color: var(--main-color);
}



footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.glupi-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
}
.promo {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    background-image: linear-gradient(to right, #FFD832 , #FDC726);
    height: 400px;
}
.promo-text {
    position: absolute;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
.promo-desc {
    text-align: center;
    color: white;
}
.promo-desc h1 {
    font-size: 5rem;
}
.promo-desc p {
    font-size: 2rem;
}
.promo-img {
    width: auto;
    height: 400px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.promo-bg {
    width: auto;
    height: 500px;
}
.drops {
    margin-top: -10px;
}
.drops img {
    width: 100%;
    height: auto;
}
.footer {
    width: 100%;
    height: 60%;
}
.footer-nav {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
}
.footer-nav ul {
    list-style: none;
    padding-left: 20px;
}
.footer-nav li {
    padding: 5px 0px;
}
.footer-nav li a {
  text-decoration: none;
  color: var(--main-color);
  transition: .5s;
  position: relative;
  display: flex;
}
.footer-nav li a:after{
  content: "";
  width: 0%;
  height: 3px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .5s;
}
.footer-nav li:hover {
  cursor: pointer;
}
.footer-nav li:hover a:after {
  width: 100%;
}
.copyright {
    width: 100%;
    border-top: 3px solid var(--main-color);
    text-align: center;
    font-size: 20px;
    color: var(--main-color);
    padding: 10px 0px;
}
.content {
    height: 50vh;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
}
.slider-bg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.slider {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*background-image: linear-gradient(to right, #FFD832 , #FDC726);*/
    background-image: url('images/slider-bg-white.png');
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.slider-title {
    font-size: 3rem;
    text-align: center;
    color: var(--main-color);
    height: 20%;
}
.slide {
    height: 60%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}
.slide-text {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.slide-text h1 {
    font-size: 7rem;
    color: white;
}
.slide-text p {
    color: black;
    font-size: 1.5rem;
    text-align: center;
}
.slide-text a {
    color: black;
    background: white;
    border: 1px solid var(--main-color);
    width: 300px;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 1.5rem;
    text-decoration: none;
    text-align: center;
    margin-top: 30px;
    box-shadow: 4px 4px var(--main-color);
}
.slide-image {
    width: 40%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide-image img {
    width: auto;
    height: 450px;
}
.slider-dots {
    height: 80px;
    width: 220px;
    display: flex;
    position: relative;
}
.dot {
    width: 50px;
    height: 50px;
    background-image: url('images/dot.png');
    background-repeat: no-repeat;
    position: absolute;
    z-index: 3;
    transition: .5s;
}
.dot:hover {
  background-image: url('images/dot-full.png');
}
.active {
    background-image: url('images/dot-full.png');
}
.dot1 {
    top: 0;
    left: 0;
}
.dot2 {
    bottom: 0;
    left: 35px;
}
.dot3 {
    top: 0;
    left: 70px;
}
.dot4 {
    bottom: 0;
    left: 105px;
}
.dot5 {
    top: 0;
    left: 140px;
}
.dot6 {
    bottom: 0;
    left: 175px;
}

.naša-priča {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding: 100px 0px;
}
.naša-priča h1 {
    font-size: 5rem;
    color: var(--main-color);
    position: relative;
}
.naša-priča h1:after {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    top: -60px;
    right: -100px;
    background-image: url('images/pcela2.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.naša-priča p {
    margin-top: 40px;
    width: 60%;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
}
.naša-priča .pcela:before {
    position: absolute;
    content: "";
    width: 200px;
    height: 200px;
    left: -300px;
    background-image: url('images/pcela1.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.drops-index {
    z-index: 1;
}

.sta-je-med {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-image: linear-gradient(to right, #FFD832 , #FDC726);
    padding: 50px 0px;
    position: relative;
}

.sta-je-med-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60%;
    height: 100%;
    z-index: 2;
}
.sta-je-med-text h1 {
    font-size: 5rem;
    color: var(--main-color);
    position: relative;
}
.sta-je-med-text h1:after {
    content: "";
    position: absolute;
    width: 135px;
    height: 100px;
    right: -150px;
    background-image: url('images/kasika.png');
    background-repeat: no-repeat;
    background-size: contain;
    transform: scaleX(-1);
}
.sta-je-med-text p {
    width: 70%;
    font-size: 1.5rem;
    margin-top: 20px;
}
.sta-je-med-img {
    height: 500px;
    width: auto;
    z-index: 3;
}
.prostorije {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.prostorije h1 {
    font-size: 5rem;
    color: var(--main-color);
    text-align: center;
    position: relative;
}
.prostorije img {
    width: 100%;
}
.prostorije h1:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    left: -200px;
    bottom: -60px;
    background-image: url('images/pcela2.png');
    background-size: contain;
    background-repeat: no-repeat;
}
.prostorije-mobile {
  display: none;
}

.love {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    padding-bottom: 50px;
    background-image: url('images/love.png');
    background-repeat: no-repeat;
    background-size: 100%;
}
.love h1 {
    color: var(--main-color);
    font-size: 5rem;
    text-align: center;
}
.love p {
    font-size: 1.5rem;
    text-align: center;
}
.button {
    color: black;
    background: white;
    border: 1px solid var(--main-color);
    width: 300px;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 1.5rem;
    text-decoration: none;
    text-align: center;
    margin-top: 30px;
    box-shadow: 4px 4px var(--main-color);
}
.love-products {
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.love-products .product {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.love-products .product img {
    width: 100%;
    height: auto;
}
.product-image {
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-text {
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* O NAMA PAGE CSS */
.title-bg  {
    height: 20vh;
  }
  .title-text h1 {
    font-size: 7rem;
    margin-top: 45px;
    color: #5A3733;
  }
  .story {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .story-start {
    margin-top: 9%;
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .story-start p {
    text-align: center;
    color: black;
    font-size: 1.3rem;
  }
  .color {
    color: #5A3733;
  }
  .story-start img{
    height: 150px;
    width: auto;
    position: absolute;
    right: 110px;
  }
  .story-mid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 3% 0;
  }
  .story-mid img {
    max-width: 800px;
    height: auto;
    width: 100%;
  }
  .story-mid p {
    margin-top: 3%;
    text-align: center;
    color: black;
    font-size: 1.3rem;
  }
  .story-end {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .story-end img{
    max-width: 800px;
    height: auto;
    width: 100%;
  }
  #pcelica2 {
    height: 150px;
    width: auto;
    position: absolute;
    left: 100px;
  }
  .story-end-desc {
    margin: 3% 0;
    text-align: center;
    color: black;
    font-size: 1.3rem;
  }

  .pcelinjaci {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .pcelinjaci h1{
   font-size: 7rem;
   margin-top: 3%;
  }
  .pcelinjaci-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .pcelinjaci-img img {
    width: 500px;
    height: 334px;
    margin: 3% 0;
  }
  #margin {
    margin: 0 3%;
  }



  .prostorije-gallery{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .prostorije-gallery h1{
    font-size: 7rem;
    margin-top: 3%;
  }
  .prostorije-galerija {
    margin: 3 auto;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(10, 3fr);
    grid-template-rows: repeat(10, 7vw);
    grid-gap: 15px;
    grid-template-areas:
    ". . . . . . . . ."
    ". . image1 image1 image2 image2 image3 image3 ."
    ". . image1 image1 image2 image2 image3 image3 ."
    ". . image1 image1 image5 image5 image3 image3 ."
    ". . image1 image1 image5 image5 image6 image6 ."
    ". . image4 image4 image5 image5 image6 image6 ."
    ". . image4 image4 image5 image5 image6 image6 ."
    ". . image7 image7 image7 image7 image6 image6 ."
    ". . image7 image7 image7 image7 image8 image8 ."
    ". . image7 image7 image7 image7 image8 image8 ."
    ". . image7 image7 image7 image7 image8 image8 ."
    ". . . . . . . . ."

  }
  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery-image1 {
    grid-area: image1;
  }
  .gallery-image2 {
    grid-area: image2;
  }
  .gallery-image3 {
    grid-area: image3;
  }
  .gallery-image4 {
    grid-area: image4;
  }
  .gallery-image5 {
    grid-area: image5;
  }
  .gallery-image6 {
    grid-area: image6;
  }
  .gallery-image7 {
    grid-area: image7;
  }
  .gallery-image8 {
    grid-area: image8;
  }


  .snimci {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .snimci h1{
    font-size: 7rem;
    margin-top: 3%;
  }







  /***** KONTAKT PAGE **********/

  .title-bg-big {
    height:50vh;
  }
  .title-text-kontakt h1{
    font-size: 6rem;
  }
.promo-kontakt {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  /*background-image: linear-gradient(to right, #FFD832 , #FDC726);*/
  flex-direction: column;
  align-items: center;
  background-image: url('images/promo-bg.png');
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
  padding: 50px 0px;
}


.forma {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 40% ;
  height:auto;
  border: 3px solid #FFD832;
  background-color: white;
  margin: auto;
  z-index: 2;
  margin-top: 50px;
  position: relative;

}
.forma p{
  font-size: 1.5rem;
  color: black;
  margin-top: 3%;
}
.forma input {
  width: 80%;
  height: 50px;
  border: none;
  border-bottom: 2px solid #FFD832;
  margin: 3% 0;
  outline: none;
  font-size: 1.5rem;
}
.forma textarea {
  width: 80%;
  height: 300px;
  border: none;
  border-bottom:  2px solid #FFD832;
  background-color: lightgray;
  margin: 3% 0;
  resize: none;
  outline: none;
    font-size: 1.5rem;
}
.forma #form-button {
    width: 50%;
    background: white;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    box-shadow: 3px 3px var(--main-color);
    transition: .5s;
}
.forma #form-button:hover {
    cursor: pointer;
    font-weight: bold;
}
.map-title {
    margin-top: 50px;
    font-size: 5rem;
    color: var(--main-color);
    padding-bottom: 50px;
}
.map {
    border: 2px solid yellow;
    width: 60%;
    height: auto;
    margin: auto;
    height: 600px;
}
.forma::after {
    content: "";
    width: 100px;
    height: 100px;
    background-image: url('images/pcela2.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 40px;
    right: -150px;
}
.forma::before {
    content: "";
    width: 100px;
    height: 100px;
    background-image: url('images/pcela1.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 150px;
    left: -150px;
}
/*********** Proizovi page *************/
.pcelica h1{
  position: relative;
}
.pcelica h1:after {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  top: -20px;
  right: -110px;
  background-image: url('images/pcela2.png');
  background-size: contain;
  background-repeat: no-repeat;
}


.proizvod {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin-top: 50px;
  padding: 30px 0px;
}
.text-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
}
.text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
   margin: 0 50px;
}
.text h1{
  font-size: 7rem;
  color: #FFD832;
  margin-bottom: 20px;
}
.text span {
  width: 100%;
 font-size: 1.3rem;
 color: black;
}
.img {
  width: 50%;
  height: auto;
  background-image: url('images/product-circle.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img img {
  width: auto;
  height: 100%;
  max-height: 430px;
  filter: saturate(1.5);
}
.dugme {
  margin: 20px auto;
  width: 200px;
  height: 50px;
  border: 2px solid var(--main-color);
  border-radius: 20px;
  color: var(--main-color);
  font-size: 1rem;
  padding: 5px 10px;
  background: white;
  box-shadow: 3px 3px var(--main-color);
  outline: none;
}
.dugme:hover {
  cursor: pointer;
  font-weight: bold;
}
.hide {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height:auto;
}
.show {
  display: flex;
}
.proizvod-hide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 20px 0px;
}
.proizvod-hide img {
  width: auto;
  height: 100%;
  max-height: 270px;
}
.proizvod-hide p{
  padding-top: 15px;
  font-size: 1.5rem;
}
.title-made-with-love h1{
  font-size: 7rem;
  text-align: center;
  color: var(--main-color);
  margin: 3% auto;
}
.text ul{
  list-style: none;
}
/* MOBILE SLIDER CSS */
.mobile-slider {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: linear-gradient(to right, #FFD832 , #FDC726);
  padding: 20px 0px;
}
.mobile-slider-title {
  font-size: 3.5rem;
  color: var(--main-color);
}
.mobile-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-slide img {
  width: auto;
  height: 300px;
}
.mobile-slide-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
}
.mobile-slide-text h1 {
  font-size: 3rem;
  color: var(--main-color);
}
.mobile-slide-text p {
  text-align: center;
  color: black;
  padding: 10px 20px;
}
.arrows a {
  background: white;
  border: 2px solid var(--main-color);
  border-radius: 10px;
  font-size: 1.2rem;
  color: var(--main-color);
  padding: 10px 20px;
  text-decoration: none;
}
.arrows {
  width: 80%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0px;
}
.arrows span {
  font-size: 2rem;
}
.videos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.videos iframe {
    max-width: 700px !important;
    width: 100%;
    padding: 10px;
}

