*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

section{
    position: relative;
    width: 100%;

    overflow: hidden;
    margin: 10px auto;
}

a{
    text-decoration: none;
    color: #333;
}

@font-face {
    font-family: pisano;
    src: url('../hello-mermaid-font/HelloMermaid-K7qKW.otf');
}

 .btn{
    padding: 10px 20px;
    background-color: #7fd2dd;
    border: none;
    color: #333;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 20px;
}
.btn:hover{
    background-color: #5bb0b6;
    transition: .7s;
}



marquee{
    z-index: 10000;
}

h1,h2,h3,h4,h5,a,li,span,p, label, textarea, i{
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

.flex{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
}


.container{
    width: 80%;
    margin: 30px auto;
}

p{
    text-align: justify;
}

#preloader{
    background: #001e31 url('../img/preloader.gif') no-repeat center center;
    background-size: 20%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 10000;
}

  .language{
    position: relative;
    width: 100%;
    height: 100vh;

  }

  #fullscreen-video {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 100%;
    min-height: 100vh;
    width: fit-content;
    height: auto;
    z-index: -1;
    margin: auto;
    
  }

.language-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width: 100%;
}

.logo-language img{
    width: 300px;
    animation: animate .8s ease-in-out 0.1s 1 forwards;
    opacity: 0;
}



.language-text h1{
    font-size: 3em;
    color: white;
    animation: animate 1.6s ease-in-out 0.3s 1 forwards;
opacity: 0;
}

.language-text span{
    font-size: .8em;
    font-weight: 100;
    font-family: pisano;
    animation: animate 1.3s ease-in-out 0.6s 1 forwards;
    opacity: 0;
}

.language-text p{
    font-size: 1.2em;
    color: white;
    animation: animate 1.9s ease-in-out 0.9s 1 forwards;
    opacity: 0;
}

@keyframes animate{
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }
    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}


/*Header*/




.contact-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: white;
    padding: 10px;
}

.phone a{
    color: white;
}

.social-header a i{
    color: white;
    margin-right: 5px;
}

.flex-column{
    flex-basis: 45%;
    margin: auto;
    
}

.flex-column h3{
    font-size: 1.1em;
  color: #ffffff;
}

.flex-column img{
    max-width: 100%;
}


/*MENU TOGGLE*/




/*NAVIGACIJA*/

header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(232, 232, 232, 0.7);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    padding: 0 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 9998;
    transition: .7s;
}

header img:first-of-type{
    max-width: 100px;
 }

 .info{
    flex-direction: row;
    width: 100%;
    margin-right: auto;
 }

 .info p{
    margin: 0 10px;
 }

 .info a i{
    color: gold;
 }



header img{
   max-width: 100px;
   display: block;
   margin: 10px auto;
   transition: .7s;

}

.logo-mobile{

   display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: fixed;
    right: 50px;
    top: 50px;
    display: none;
  
  }

.bar {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: transform 0.3s ease;
    z-index: 10000;
  }
  
  .menu-toggle.open .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background-color: #333;
  }
  
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: #333;
  }




  header .navbar{
    margin: auto;
  }

header .navbar ul li{
   position: relative;
   float: left;
   text-transform: uppercase;
   
}

header .navbar ul li a{
    font-size: 15px;
    padding: 20px;
    color: #333;
    display: block;
    transition: .5s;

}

header .navbar ul li a:hover{
   background: #333;
   color: #fff;
   transition: .7s;
}

header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background: #fff;
    display: none;
}

header .navbar ul li ul li{
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .1);
}
header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul{
    display: initial;
}

header nav ul p{
    display: none;
}


.navbar ul li a img{
    max-width: 20px;
}

header.sticky{
    background-color: rgba(255, 255, 255, 1);
    padding: 5px;
    transition: .7s;
}

header.sticky img{
    max-width: 40px;
    transition: .7s;
}

.navbar.sticky ul{
    margin-top: 0;
    transition: .7s;
}

.navi.sticky ul li a{
    
    transition: .7s;
}


/*NASLOVNA*/

/* Welcome text section */

.welcome-text{
    background-image: url(../img/oyster-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-basis: 40%;
     margin: auto;
     padding: 20px;
    
}
.welcome-text h2{
    font-family: pisano;
    font-size: 1.3em;
    color: #333;
    text-align: center;
    margin: 20px auto;
}

.welcome-text p, .services-main-page p {
    font-size: 1.2em;
    color: #333;
    text-align: center;
    margin: 20px auto;
    line-height: 1.6;
}

.welcome-text img{
    max-width: 300px;
}

.welcome-img img{
    max-width: 100%;
}

.welcome-image{
    position: relative;
        width: 100%;
        height: 100vh;
        justify-content: center;
        align-items: center;
        flex-basis: 50%;
}

.welcome-image img:first-of-type{
    position: absolute;
    width: 100%;
    height: 100%;
}

.welcome-image img:last-of-type{
    max-width: 100%;
    position: absolute;
    bottom: 0;
        animation: lebdenje 13s ease-in-out infinite;
}

@keyframes lebdenje {
  0% {
    transform: translateY(0);
  }
  50% {
    /* Pomera sliku na dole za 50px */
    transform: translateY(20px);
  }
  100% {
    /* Vraća sliku na početnu poziciju */
    transform: translateY(0);
  }
}



.services-main-page{
    background-color: #7fd2dd;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    justify-content: center;
    align-items: center;
    text-align: center;
}





.button{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
    
}

.button button{
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s;
}

.button button:hover{
    background: #ababab;
    color: #fff;
}







.parralax{
    background: url('../img/osmijeh.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    height: 700px;
    position: relative;
}

.parralax h2{
    position: absolute;
    top: 50%;
    left: 20%;
    font-size: 3em;
}







/*O NAMA POCETNA*/
.container1{
    width: 60%;
    margin: 50px auto;
}







.onama-slika img{
    max-width: 100%;
    display: block;
    margin: auto;
}



/*O NAMA MAIN*/



.onama-text{
    flex-basis: 45%;
    margin: auto;
    
}

.onama-text h2{
    font-weight: 900;
    font-family: pisano;
}

.onama-usluge{
    flex-basis: 45%;
}


.about-us {
    background: url('../img/About-1-scaled.jpg');
    background-size: cover;
    background-position: center;
     height: 70vh;
     color:white;
    
}

.svg{
    flex-basis: 40%;
    margin: auto;
}

.about-text{
    flex-basis: 55%;
    margin: auto;
}

.about-image{
    flex-basis: 40%;
    margin: auto;
}

.svg svg{
    max-width: 100%;
}


.brojac{
    width: 100%;
    height: 500px;
    text-align: center;
    background-image: url(../img/morski-plodovi.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
   
}

.brojac-single{
    flex-basis: 30%;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 30px 20px;
}

.brojac i, .brojac span{
    margin: auto;
    font-size: 5em;
    color:rgb(23, 142, 121);
    font-weight: 900;
    
}

.brojac i span{
    color: white;
    font-size: 3em;
    display: contents;
    width: 100px;
    font-weight: 900;
}

.brojac-single h3{
    font-size: 1.5em;
    color: #333;
    margin-top: 20px;
    font-weight: 500;
}

.brojac-single p{
    font-size: 1.2em;
    color: #333;
    margin-top: 20px;
   
} 

.pulsirajuci-putic {
  fill: red;
  stroke: #0978ab;
  stroke-width: 1.25022936;
  stroke-linecap: butt;
  stroke-miterlimit: 1;
  stroke-dasharray: 1.25022931, 0;
}

/* Fiksna tačka u samom centru */
.pulse-center {
  fill: red;
}

/* Prsten koji pulsira i širi se */
.pulse-ring {
  fill: none;
  stroke: red;
  stroke-width: 2px;
  transform-origin: center;
  /* Animacija traje 2 sekunde i ponavlja se beskonačno */
  animation: svgPulse 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

/* Definicija animacije pulsiranja */
@keyframes svgPulse {
  0% {
    r: 24px;        /* Početni mali radijus prstena */
    opacity: 0.9;  /* Vidljiv na početku */
  }
  100% {
    r: 250px;       /* Do koje veličine se prsten širi (možeš povećati ako želiš veći talas) */
    opacity: 0;    /* Potpuno nestaje na ivici */
  }
}





.onama-usluge{
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
}

.onama-usluge img{
   max-width: 100%;
   display: block;
   margin: auto;
}



.dio-slika{
    flex-basis: 40%;
}

.dio-slika img{
    max-width: 100%;
}

.dio-text{
    flex-basis: 50%;
    margin: auto;
}

.dio-text ul li{
    list-style: disc;
    margin: 10px 0;
    font-size: 1.2em;
}

.dio-text ul{
    padding-left: 20px;
}

.odjel, .about-us{
    
    position: relative;
    height: 70vh;
}

.odjel-konz{
    background: url(../img/Shop-1-scaled.jpg);
    background-size: cover;
    background-position: center;
}

.odjel h1{
    position: absolute;
    bottom: 10%;
    left: 10%;
    color: white;
    font-size: 2em;
    padding: 10px 50px;
    border-bottom: 1px solid white;
    font-family: pisano;
}

.odjel p{
    position: absolute;
    bottom: 5%;
    left: 10%;
    color: white;
}

.shop-bg{
    background-image: url(../img/oyster-shop.jpg);
    background-position: bottom;
}





  /*BLOG*/

  .blog-flex{
    display: flex;
    flex-direction: row;
  }



  .blog-flex a{
    flex-basis: 30%;
    margin: 30px;
    color: #333;
  }

  .card-body img{
    max-width: 100%;
  }

  .blog-header{
    margin-top: 400px;
  }






/*KONTAKT*/

.contact-us{
    background: url(../img/Contact-1-scaled.jpg);
    background-size: cover;
    background-position: center;
}

.contact-container{
    margin: 0 auto;
}



.event-form{
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
}

.event-form .form-group{
    margin-bottom: 20px;
}

.event-form input,
.event-form textarea{
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease;
    box-sizing: border-box;
    background: #fafafa;
}

.event-form input:focus,
.event-form textarea:focus{
    border-color: #000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

.event-form textarea{
    resize: vertical;
    min-height: 140px;
}






/*Footer*/


.footer{
    display: flex;
    flex-direction: row;
    padding: 30px;
    justify-content: space-between;
    margin: auto;
    border-top: 1px solid #333;
    position: relative;
    background-color: #7fd2dd;

}

.footer-single{
    flex-basis: 20%;
    margin: auto;
    color: white;
}

.footer-single ul li{
    margin: 5px 0;
    color: white;
}

.footer-single img{
    max-width: 100%;
}

.footer-single ul li a{
    color: white;
    
}

.footer-single hr{
    background-color: #dcad67;
}


.prava p{
    text-align: center;
    padding: 5px 0
}



/*LOGIN PAGE*/

.login-wrapper, .register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    flex-direction: column;
}

.login-wrapper img, .register-wrapper img {
    max-width: 250px;
    margin: 70px auto;
}
.login-box {
    width: 320px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}









@media only screen and (max-width: 991px){

    section{
        margin: 0;
    }
    #fullscreen-video {
       top: -225px;
    }
    .flex, .blog-flex{
        flex-direction: column;
    }

    .container, .container1{
        width: 90%;
    }

    .info{
        display: none;
    }

    

    header a>img{
        display: none;
    }

    .menu-toggle{
        display:flex;
        right: 20px;
        top: 10px;
        z-index: 9999;
        transition: .7s;
      }

      .toggleNavi{
        left: 0;
        transition: .7s;
      }

      header{
        padding: 30px;
        background-color: transparent;
        
      }

      .welcome-image img:last-of-type{
        position:relative;
      }

       .navbar{
        position: absolute;
        top: 100%;
        left: 100%;
        height: 100vh;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, .1);
        transition: .7s;
        text-align: center;
        width: 100%;
        
      }

      .toggleNavi{
        left: 0;
        transition: .7s;
      }

      .navbar ul p{
        display: block;
        text-align: center;
      }

      header .navbar ul li{
        width: 100%;
     
      }

      header .navbar ul li ul{
        position: relative;
        width: 100%;
      }

      header .navbar ul li ul li{
        background: #eee;
        height: 55px;

      }

      header .navbar ul li ul li ul{
        width: 100%;
        left: 0;
      }
      .logo-mobile{
        display: block;
        flex-direction: column;
        
      }

      .content a{
        display: block;
        margin: auto;
        width: 150px;
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        text-align: center;
      }

      #menu-bar:checked ~ .navbar{
        display: initial;
      }



      /*SLAJDER*/

      .item .content{
        width: 90%;
        left: 10px;
      }

      .slide .item:nth-child(3) {
        left: 79%;
        top: 94%;
    }

    .name h1{
        font-size: 1em;
    }
    .parralax{
        height: 200px;
    }
    .parralax h2{
        font-size: 2em;
        transform: translateY(-50%);
    }

    .ocjena-single{
        margin: 20px auto;
    }

    .marketi{
        margin: 50px auto;
    }
    .brojac{
        flex-direction: column;
        height: auto;
        padding: 50px 0;
    }

    .market-parralax img:first-of-type{
        left: 50%;
        width: 100px;
    }

    .market-parralax img:nth-of-type(2){
        left: 10%;

    }

    .market-parralax {
    background-size: cover;
    background-position: center;
    }

    .market-parralax h2{
        padding: 20px 0;
        font-size: 2em;
    }

    .brojac i{
        margin: 20px auto;
    }

   

    .parralax-stocna h2{
        width: 91%;
    }

    .onama-content-single{
        height: auto;
    }

    .onama-usluge img{
        max-width: 100%;
    }

    .onama-text{
        margin: auto;

    }

    .onama-text h2, .about-text h2{
        font-size: 1em; 
    }

    .karijera{
        background-size: cover;
        background-position: right;
    }

    .karijera h2{
        background-color: rgba(255, 255, 255, .8);
        padding: 30px;
        left: 0;
        bottom: -5px;
    }

    .karijera-poslovi{
        flex-direction: column;
    }

    .karijera-single{
        width: 100%;
    }

    table{
        display: none;
    }

    .svg{
        flex-basis: 100%;
    }

    .svg svg{
        max-width: 100%;
    }

    

    .gorivo{
        height: auto;
    }

    .gorivo img{
        top: 100px;
    }

    .gorivo-single h5{
        font-size: 5em;
    }

    .solar-parralax h2{
        font-size: 3em;
        top: 82%;
    }

    .solar-parralax{
        background-size: cover;
        background-position: center;
    }

  

    .poslovnice1{
        flex-direction: column;
        padding: 10px;
    }

    .poslovnice1{
        margin-top: 100px;
        display: flex;
    }

    .poslovnice1 ul{
        border-bottom: 1px solid #333;
        margin-bottom: 30px;
    }

 
   .radno{
    position: relative;
    color: #333;
   }

   .radno button{
    display: none;
   }

   #slideWindow{
    position: relative;
    right: 0;

   }
  .odjel h1{
    font-size: 1em;
padding: 0;}

.about-us{
    background-position: right;
}

.brojac-single{
    margin: 10px auto;
}


.contact-text h2{
    font-size: 1em;
}

.event-form{
    padding: 5px;
}
   

    .footer{
        flex-direction: column;
        padding: 10px;
    }

    .footer-single{
        margin:20px 0;
    }
}