 
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

 html, body {
      margin: 0;
      height: 100%;
      overflow: hidden;
      background: #131419;
      font-family: "Instrument Serif", serif;
      font-weight: 400;
      font-style: normal;
  }

  .container {
    height: 100vh; 
    overflow-y: scroll;

    /* sakrivanje scrollbar-a */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  section {
    height: 100vh;   
  }

  /*section one*/
  .layout {
    display: flex;
    flex-direction: column;
    background: #131419;
    }

  .top {
    height: 20%;
    width: 100%;
    background: #131419;
  }

  .bottom {
    height: 80%;
    display: flex;
  }

  .left {
    width: 70%;
    height: 100%;
    background: rgba(0,0,0,0.35);
  }

  .right {
    width: 30%;
    height: 100%;
    background: #131419;
  }

  .logo {
    height: 6rem;
    padding-left: 5rem;
    padding-top: 4rem;
  }

  .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .right {
    flex: 0 0 30%;
    background-color: #131419;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 2rem;
  }

  .services {
    padding-left: 6rem;
    line-height: 0.5;
  }

  .links{
    margin-top: 4rem;
    padding-left: 6rem;
    line-height: 0.5;
  }
  .links a{
    color: white;
  }

  /*section two*/
  .about {
    height: 100vh;
    background: #203d2b;
    line-height: 0.5;
  }

  .about h1 {
    color: white;
    font-size: 5rem;
    padding-top: 12vh;
    padding-left: 10vh;
  }

  .about p {
    color: white;
    font-size: 2rem;
    padding-left: 70vh;
  }

  /*section tree*/
  .location {
    height: 100%;
    width: 100%;
    background-image: url('/images/image2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .location .title {
    padding-top: 5vh;
    padding-left: 30%;
    line-height: 0.5;
  }

  .title p {
    color: white;
    font-size: 5rem;
  }

  .title p:first-child{
    padding-left: 3%;
  }

  .maps {
    display: flex;
    justify-content: center;
  }
  .maps a{
    color: yellowgreen;
    font-size: 2rem;
  }

  /*section four*/
  .contact {
    background-color: #131419;
    height: 100vh;
  }

    .contact h1 {
    color: white;
    font-size: 5rem;
    padding-top: 15%;
    padding-left: 5%;
  }

  .contacts {
    display: flex;
    color: white;
    padding-left: 5%;
    padding-top: 10%;
    font-size: 2rem;
    line-height: 0.5;
  }

  .contacts div:last-child {
    padding-left: 10%;
  }

  .contacts a{
    color: white;
    text-decoration: none
  }


  /* floating home button */
  .home-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #131419;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform .2s ease, box-shadow .2s ease;
    z-index: 999;
  }

  .home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  }

  /* white inner circle */
  .arrow-circle {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #203d2b;
    font-size: 18px;
    font-weight: bold;
  }

  /* COOKIES */

  .cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;   
    width: 400px;
    background: #131419;
    color: white;
    border: 2px solid white;
    border-radius: 7px;
    padding: 20px;
    font-size: 24px;
    line-height: 1.4;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
  }

  .cookie-popup.show {
    opacity: 1;
    transform: translateY(0);
  }

  .cookie-popup button {
    margin-top: 12px;
    background: white;
    color: #131419;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
  }

  .cookie-popup button:hover {
    opacity: 0.8;
  }

  .cookie-popup a {
    color: white;
    text-decoration: underline;
  }

  .cookie-popup a:hover {
    opacity: 0.7;
  }


  /* TABLET */

 /* section two */
 @media screen and (width <= 1500px){
  .about p {
    padding-left: 60vh;
  }
 }

@media screen and (width <= 1360px){
  .about p {
    padding-left: 50vh;
  }
 }
@media screen and (width <= 1250px){
  .about p {
    padding-left: 40vh;
  }
 }
 @media screen and (width <= 1100px){
  .about p {
    padding-left: 30vh;
  }
 }
 @media screen and (width <= 1024px){
  .about p {
    padding-left: 20vh;
  }
 }

  /* MOBILE */

  @media screen and (width <= 932px) {

   /*section one */
   .top {
      height: 15%;
      width: 100%;
      background: #131419;
    }
    .bottom {
      height: 85%;
      flex-direction: column-reverse;
    } 

    .logo {
      height: 4rem;
      padding-left: 2rem;
      padding-top: 2rem;
    }

    .left {
      width: 100%;
    }

    .left img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .right {
      flex: 0 0 30%;
      background-color: #131419;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      font-size: 1.5rem;
    }

    .services {
      width: 90vw;
      padding-left: 2rem;
      line-height: 0.5;
    }

    .links{
      margin-top: 2rem;
      padding-left: 2rem;
      line-height: 0.5;
    }
    .links a{
      color: white;
    }

    /*section two*/

     .about {
      height: 100vh;
      background: #203d2b;
      line-height: 0.5;
    }

    .about h1 {
      color: white;
      font-size: 4rem;
      padding-top: 12vh;
      padding-left: 2rem;
      padding-bottom: 3vh;
    }

    .about p {
      color: white;
      font-size: 0.9rem;
      padding-left:2rem;
    }

    /*section three*/
    .location {
      height: 100%;
      width: 100%;
      background-image: url('/images/image2.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: block;
    }

    .location .title {
      padding-top: 10vh;
      padding-left: 0rem;
      line-height: 1;
      text-align: center;
    }

    .title p {
      color: white;
      font-size: 2rem;
    }

    .title p:first-child{
      padding-left: 0rem;
    }
    .title p:last-child{
      padding-left: 0rem;
    }

    .maps {
      padding-left: 0;
      padding-top: 10%;
      text-align: center;
    }
    .maps a{
      color: yellowgreen;
      font-size: 1rem;
     
    }

    /* section four */

    .contact {
      background-color: #131419;
      height: 100vh;
    }

    .contact h1 {
      color: white;
      font-size: 4rem;
      padding-top: 15%;
      padding-left: 2rem;
    }

    .contacts {
      display: flex;
      flex-direction: column;
      color: white;
      padding-left: 2rem;
      padding-top: 10%;
      font-size: 1.5rem;
      line-height: 0.5;
    }

    .contacts a{
      color: white;
      text-decoration: none
    }

    .contacts div:last-child {
      padding-left: 0%;
    }

    /*COOKIE*/
    
    .cookie-popup {
      left: 50%;
      transform: translate(-50%, 30px);
      width: 80%;
    }

    .cookie-popup.show {
      transform: translate(-50%, 0);
    }
}
