/*---------------------------------------------------------------------------------

 Theme Name:   Banana_code
 Theme URI:    https://banana.com.hr
 Description:  Banana Code custom Theme
 Author:       Banana_code
 Author URI:   https://banana.com.hr
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

------------------------------ ADDITIONAL CSS HERE ------------------------------*/


.b-button-icon::after {
        animation: paw-wave 1.8s ease-in-out infinite;
  display: inline-block;
    line-height: 1;
    vertical-align: middle;

    transform-origin: 50% 50%;
    margin-top: -14px;
    background-color: #fff;
    border-radius: 99%;
    color: #000;
    padding: 5px;
}


.b-button-icon-2::after {


width:18px;
	height:18px;
    background-color: #fff;
    border-radius: 99%;
    color: #000;
    padding: 5px;
}


@keyframes paw-wave {
    0% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(15deg);
    }
    100% {
        transform: rotate(-5deg);
    }
}

.b-button-icon:hover { 
transform: scale(1.05) ;
}


.b-button-icon-2:hover { 
transform: scale(1.05) ;
}



.sapica-cta-img { 
margin-left:4px;
}





/* ===============================
   SECTION SETUP
================================ */

.bubble-section {
  position: relative;
  overflow: hidden;
}

/* ===============================
   WRAPPER
================================ */

.bubble-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===============================
   BUBBLES
================================ */

.bubble-wrapper > div {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: bubble-float 10s linear infinite;
  will-change: transform, opacity;
}

/* INNER DOT */
.bubble-wrapper > div span.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 20%;
  right: 20%;
}

/* ===============================
   INDIVIDUAL POSITIONS + SPEED
================================ */

.bubble-wrapper > div:nth-child(1)  { top: 80%; left: 10%; animation-duration: 14s; }
.bubble-wrapper > div:nth-child(2)  { top: 90%; left: 25%; animation-duration: 18s; }
.bubble-wrapper > div:nth-child(3)  { top: 85%; left: 40%; animation-duration: 12s; }
.bubble-wrapper > div:nth-child(4)  { top: 88%; left: 55%; animation-duration: 16s; }
.bubble-wrapper > div:nth-child(5)  { top: 92%; left: 70%; animation-duration: 20s; }
.bubble-wrapper > div:nth-child(6)  { top: 86%; left: 85%; animation-duration: 15s; }
.bubble-wrapper > div:nth-child(7)  { top: 95%; left: 50%; animation-duration: 22s; }
.bubble-wrapper > div:nth-child(8)  { top: 90%; left: 65%; animation-duration: 17s; }
.bubble-wrapper > div:nth-child(9)  { top: 93%; left: 30%; animation-duration: 19s; }
.bubble-wrapper > div:nth-child(10) { top: 89%; left: 15%; animation-duration: 13s; }

/* ===============================
   ANIMATION (UPWARD FLOAT)
================================ */

@keyframes bubble-float {
  0% {
    transform: translateY(0) scale(0.4);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-400px) scale(1);
    opacity: 0;
  }
}

/* ===============================
   CONTENT ABOVE BUBBLES
================================ */

.bubble-content {
  position: relative;
  z-index: 2;
}

/* ===============================
   SAFETY (NO SCROLLBAR)
================================ */

html, body {
  overflow-x: hidden;
}



/* ===============================
   MOBILE FIX: FULL HEIGHT FLOAT
================================ */

@media (max-width: 980px) {
  @keyframes bubble-float {
    0% {
      transform: translateY(0) scale(0.4);
      opacity: 0;
    }
    10% {
      opacity: 0.6;
    }
    100% {
      transform: translateY(-120vh) scale(1);
      opacity: 0;
    }
  }
}



@media screen and (max-width: 980px) {
    .reverse {
        display: flex;
        flex-direction: column-reverse;
		gap: 20px;
    }
}






/* ===============================
   SECTION SETUP
================================ */

.bubble-section-2 {
  position: relative;
  overflow: hidden;
}

/* ===============================
   WRAPPER
================================ */

.bubble-wrapper-2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===============================
   BUBBLES – REALISTIC SOAP LOOK
================================ */

.bubble-wrapper-2 > div {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.55),
      rgba(255, 255, 255, 0.22) 25%,
      rgba(0, 123, 255, 0.10) 50%,
      rgba(0, 123, 255, 0.03) 65%,
      rgba(255, 255, 255, 0.02) 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.22);

  box-shadow:
    inset -4px -4px 10px rgba(255, 255, 255, 0.25),
    inset 3px 3px 10px rgba(0, 0, 0, 0.05),
    0 6px 16px rgba(0, 0, 0, 0.06);

  animation: bubble-float-2 18s ease-in-out infinite;
  will-change: transform, opacity;
}

/* ===============================
   LIGHT REFLECTION
================================ */

.bubble-wrapper-2 > div span.dot-2 {
  position: absolute;
  width: 12px;
  height: 12px;

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.65),
    rgba(255,255,255,0.25) 60%,
    rgba(255,255,255,0) 100%
  );

  border-radius: 50%;
  top: 18%;
  left: 22%;
  filter: blur(0.5px);
}

/* ===============================
   DEPTH + DESYNC
================================ */

.bubble-wrapper-2 > div:nth-child(1)  { top: 95%; left: 8%;  animation-duration: 22s; animation-delay: -4s;  z-index: 1; }
.bubble-wrapper-2 > div:nth-child(2)  { top: 70%; left: 18%; animation-duration: 26s; animation-delay: -12s; z-index: 3; }
.bubble-wrapper-2 > div:nth-child(3)  { top: 85%; left: 30%; animation-duration: 20s; animation-delay: -8s;  z-index: 2; }
.bubble-wrapper-2 > div:nth-child(4)  { top: 60%; left: 45%; animation-duration: 24s; animation-delay: -16s; z-index: 4; }
.bubble-wrapper-2 > div:nth-child(5)  { top: 92%; left: 60%; animation-duration: 28s; animation-delay: -20s; z-index: 3; }
.bubble-wrapper-2 > div:nth-child(6)  { top: 75%; left: 72%; animation-duration: 21s; animation-delay: -10s; z-index: 5; }
.bubble-wrapper-2 > div:nth-child(7)  { top: 88%; left: 85%; animation-duration: 30s; animation-delay: -18s; z-index: 2; }
.bubble-wrapper-2 > div:nth-child(8)  { top: 65%; left: 55%; animation-duration: 25s; animation-delay: -14s; z-index: 4; }
.bubble-wrapper-2 > div:nth-child(9)  { top: 80%; left: 38%; animation-duration: 27s; animation-delay: -22s; z-index: 3; }
.bubble-wrapper-2 > div:nth-child(10) { top: 90%; left: 15%; animation-duration: 23s; animation-delay: -6s;  z-index: 1; }

/* ===============================
   FLOATING + DRIFT ANIMATION
================================ */

@keyframes bubble-float-2 {
  0% {
    transform: translate(0, 0) scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    transform: translate(24px, -420px) scale(1);
    opacity: 0;
  }
}

/* ===============================
   CONTENT ABOVE BUBBLES
================================ */

.bubble-content-2 {
  position: relative;
  z-index: 2;
}

/* ===============================
   SAFETY
================================ */

html, body {
  overflow-x: hidden;
}

/* ===============================
   MOBILE FIX
================================ */

@media (max-width: 980px) {
  @keyframes bubble-float-2 {
    0% {
      transform: translate(0, 0) scale(0.6);
      opacity: 0;
    }
    10% {
      opacity: 0.35;
    }
    100% {
      transform: translate(16px, -120vh) scale(1);
      opacity: 0;
    }
  }
}

/* ===============================
   REVERSE STACK FIX
================================ */

@media screen and (max-width: 980px) {
  .reverse-2 {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}







 






/*place button modules next to each other in the same column*/
.b-inline-buttons .et_pb_button_module_wrapper {
    display: inline-block;
}

/*place button modules next to each other in the same column*/
.b-inline-buttons-home .et_pb_button_module_wrapper {
    display: inline-block;
}

.b-inline-buttons-home {
    text-align: center !important;
}


.gradient-overlay:before {
    content: "";
    position: absolute;
    z-index: 1;
    background: inherit;
    top: 0;
    bottom: 0;
    width: 100%;
}


/*** Responsive Styles Tablet And Below ***/
@media all and (min-width: 981px) {
  .b-menu .et_pb_menu__logo { 
/*  position:absolute;
  top:14px;*/
}
 
}

/*** Responsive Styles Tablet And Below ***/
@media all and (max-width: 980px) {
  .b-menu .et_pb_menu__logo { 
/*  position:absolute;
  top:0px;
	  max-height:65px;
	  max-width: 185px;*/
}
 
}


.b_data_title { 
margin-bottom:10px;
	text-transform:uppercase;
	font-size:22px;
}

.kartice .kartice-grid { 
display:grid;
grid-template-columns: repeat(6, 1fr);
grid-gap:10px;
justify-items: center;
vertical-align: middle;
margin: auto;
padding: 10px;
}

.et_pb_menu--with-logo .et_pb_menu__menu>nav>ul>li>a {
	color:#000;
}



/*MOBILE MENU CSS */



/* X icon in expanded mobile menu */
.mobile_nav.opened .mobile_menu_bar:before {
content: '\4d';
}
/* Remove the top line in the mobile menu*/
.et_mobile_menu {
border-top:0;
}
/* Center-align moble menu items */
.et_mobile_menu li {
text-align:center !important;
}
  
.et_mobile_menu li li, .et_mobile_menu li ul {
padding-left:0 !important;
}
/* Make mobile menu fullwidth */
.et_mobile_menu {
/*min-width: 100vw;
margin-left: -10vw;*/
}

/* Remove the animation to avoid delay */
.mobile_nav.opened .et_mobile_menu {
display:block !important;
}


et_mobile_menu .first-level > a {
background-color: transparent;
position: relative;
}
.et_mobile_menu .first-level > a:after {
font-family: 'ETmodules';
content: '\4c';
font-weight: normal;
position: absolute;
font-size: 16px;
top: 13px;
right: 10px;
}
.et_mobile_menu .first-level > .icon-switch:after{
content: '\4d';
}
.second-level {
display: none;
}
.reveal-items {
display: block;
}
.et_mobile_menu {
margin-top: 7px;
    width: 95%;
    margin-left: 2.5%;
    border-radius: 1.5em;
}


.et_mobile_menu li a {

    padding: 8px 5%;

}

.et_mobile_menu li a {
    border-bottom: 0px solid rgba(0,0,0,.00);
    color: #000;
    padding: 10px 5%;
    display: block;
}

/*END MOBILE MENU CSS */




/* Menu Hover Effects Style 2 */

/* Change these values to edit line appearance and position */

:root {
  --BottomOffset: 20px;
  --LineHeight: 5px;
  --LineColor: #4ABCCA;
}

.b-menu-style2 ul.et-menu>li>a {
	position: relative;
	z-index: 1;
}
.b-menu-style2 ul.et-menu>li>a:before {
    position: absolute;
    content: '';
    display: block;
    z-index: -1;
    background: var(--LineColor);
    width: 0;
    height: var(--LineHeight);
    bottom: var(--BottomOffset);
    left: calc(var(--LineHeight) / -2);
    transition: 0.3s cubic-bezier(.03,.3,.4,.96);
    transform: skew(-10deg);
	border-radius:0.5rem;
}

.b-menu-style2 ul.et-menu>li>a:hover:before {
    width: calc(100% + var(--LineHeight));
}


.bg-video-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}









@media all and (min-width: 981px) {	
   .kontakt a {
	   color: #fff!important; /* Change button text color here */
   background-color: #EC7C8B!important; /* Change button background color here */


    border-radius: 3.75em !important; /* Set this to 0px if you want a square CTA button */

    text-align: center;
    line-height: 9px;
    font-weight: 600;
    padding: 5px 10px 5px 20px !important;
    text-transform: uppercase;
    display: block;
    border: 2px solid #EC7C8B;

	}
	}
	
	@media all and (max-width: 980px) {	
		img.sapica-cta-img {
    display: none!important;
}
		}
	
	
   .kontakt a:hover {

        color: #fff!important; /* Change hover button text color here */
       background-color: #2B2A29!important; 
      border: 2px solid #2B2A29;
opacity: 1;
        
   }
	 .kontakt a:active {
        color: #fff!important; /* Change hover button text color here */
 
   }
	
	.kontakt .ikona-meni {
margin-right:5px;

        
   }
	
}


/* Fix the padding in the primary menu to accomodate the button */
.et_pb_menu--with-logo .et_pb_menu__menu>nav>ul>li>a {
    padding-top: 0px;
    padding-bottom: 0px;
}
 
/* Make sure that the alignment in the menu is correct */
.et_pb_menu .et_pb_menu__menu>nav>ul>li {
    align-items: center;
}



/* Fix the padding in the primary menu to accomodate the button */
.et_pb_menu--with-logo .et_pb_menu__menu>nav>ul>li>a {
    padding-top: 0px;
    padding-bottom: 0px;
	
}
 
/* Make sure that the alignment in the menu is correct */
.et_pb_menu .et_pb_menu__menu>nav>ul>li {
    align-items: center;
}









/* -----------------------------------
   Base link setup (IMPORTANT)
----------------------------------- */
.b-menu ul.et-menu > li > a {
    position: relative;
    z-index: 1;
}

/* -----------------------------------
   Underline base (hidden)
----------------------------------- */
.b-menu ul.et-menu > li > a::before {
    content: '';
    width: 0;
    left: 50%;
    height: 3px;
    border-radius: 2px;
    background: #EC7C8B;
    position: absolute;
    bottom: -12px;
    opacity: 0;
    transition: .3s cubic-bezier(.25,.01,.32,1.61);
}

/* -----------------------------------
   Hover underline (EXCEPT kontakt)
----------------------------------- */
.b-menu ul.et-menu > li:not(.kontakt) > a:hover::before {
    width: 110%;
    left: -5%;
    opacity: 1;
}

/* -----------------------------------
   ACTIVE underline (EXCEPT kontakt)
   Covers ALL WP active states
----------------------------------- */
.b-menu ul.et-menu > li:not(.kontakt).current-menu-item > a::before,
.b-menu ul.et-menu > li:not(.kontakt).current-menu-ancestor > a::before,
.b-menu ul.et-menu > li:not(.kontakt).current_page_item > a::before,
.b-menu ul.et-menu > li:not(.kontakt) > a.current-menu-item::before,
.b-menu ul.et-menu > li:not(.kontakt) > a.current_page_item::before {
    width: 110%;
    left: -5%;
    opacity: 1;
}

/* -----------------------------------
   Kontakt — ALWAYS disabled
----------------------------------- */
.b-menu ul.et-menu > li.kontakt > a::before {
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}





.cjenik-link a{

display:inline-flex;
  align-items:center;
  gap:6px;

   color: #fff!important; /* Change button text color here */
   background-color: #EC7C8B!important; /* Change button background color here */


    border-radius: 3.75em !important; /* Set this to 0px if you want a square CTA button */

    text-align: center;
    line-height: 9px;
    font-weight: 600;
    padding: 10px 10px 10px 20px;
    text-transform: uppercase;
    display: block;
    border: 2px solid #EC7C8B;
	font-size:18px;


  transition:color .2s ease;
}

.cjenik-link .ikona-link svg{
  width:20px;
  height:20px;
  fill:#000;
  transition:transform .2s ease;
	background-color:#fff;
	border-radius:99%
}

.cjenik-link a:hover{
  color:#2B2A29;
}

.cjenik-link a:hover .ikona-link svg{
  transform:translateX(3px);
}



