/*
Theme name: Vodiq_2026
Author: Luděk Pasecký, ludek.pasecky@gmail.com, +420602775598
*/

:root {
 	--color: #XXXXXX;
}

.red_txt {color: var(--red);}
.red {background-color: var(--red);}

@font-face {font-family: mon_bold; src: url("fonts/Montserrat-Bold.woff");}
@font-face {font-family: mon_regular; src: url("fonts/Montserrat-Regular.woff");}

* {transition: box-shadow 0s ease/* !important*/;}
	
html {
	touch-action: manipulation;
	-webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
	box-sizing: border-box;
}

.reveal{
	opacity: 0;
	transition: 0.5s all ease;
}

.reveal.active{
	opacity: 1;
	transition: 0.5s all ease;
}

.active.from_right {
	animation: from_right 0.5s ease-in;
}

.active.from_left {
	animation: from_left 0.5s ease-in;
}

.active.from_bottom {
	animation: from_bottom 0.5s ease-in;
}

@keyframes from_right {
  0%	{transform: translateX(5vw); opacity: 0;}
  100%	{transform: translateX(0); opacity: 1;}
}

@keyframes from_left {
  0%	{transform: translateX(-5vw); opacity: 0;}
  100%	{transform: translateX(0); opacity: 1;}
}

@keyframes from_bottom {
  0%	{transform: translateY(3vw); opacity: 0;}
  100%	{transform: translateY(0); opacity: 1;}
}






  * { margin: 0; padding: 0; box-sizing: border-box; }

  html, body {
    min-height: 100vh;
    background: #ffffff;
    overflow-x: hidden;
  }

  #parallax-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    /* overflow záměrně NENÍ hidden – molekuly mohou přetékat přes okraj viewportu */
  }

  .molecule {
    position: absolute;
    transform-origin: center center;
    mix-blend-mode: multiply;
    background: transparent;
  }

  .molecule img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* ── Demo obsah – smazat / nahradit ── */
  #content {
    position: relative;
    z-index: 10;
    min-height: 600vh;
    padding: 10vw 7.5vw;
    pointer-events: auto;
  }

  #content h1 {
	font-size: 4vw;
    letter-spacing: -0.01em;
    line-height: 5vw;
    font-family: mon_bold;
    text-align: center;
	background: radial-gradient(circle at 30% 30%, rgba(34, 171, 227, 0.9) 0%, rgba(16, 158, 190, 0.6) 40%, rgba(0, 0, 0, 0) 70%), linear-gradient(45deg, #2EE889 0%, #109ebe 20%, #096db5 50%, #2EE889 133%);
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;  
	 position: absolute;
    left: 50%;
    top: 35%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
  }

  #content p {
    max-width: 580px;
    line-height: 1.8;
    color: #2a5a70;
    font-family: Georgia, serif;
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  #content button {
    padding: 13px 34px;
    background: rgba(30,120,170,0.12);
    border: 1px solid rgba(30,120,170,0.35);
    border-radius: 40px;
    color: #1a6a8a;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.3s, transform 0.2s;
  }

  #content button:hover {
    background: rgba(30,120,170,0.24);
    transform: translateY(-2px);
  }












@media only screen and (min-width: 700px) {
    html, body { width: 100%; margin: 0; padding: 0; border: 0; min-width: 300px; background-color: var(--white_1); display: block; }
    html { scroll-behavior: smooth; scroll-padding-top: 2.5vw; }
    .mobile { display: none; }
    .desktop { display: block; }
}

.top_line {
	position: fixed;
	top: 2.5vw;
	height: 5vw;
	width: calc(100% - 15vw);
	left: 50%;
	transform: translatex(-50%);
	border-radius: 2.5vw;
	z-index: 100;
	background-color: rgba(255, 255, 255, 25%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1vw 2vw #4ec9d412;
	display: flex;
	justify-content: space-between
}

.logo {
	position: relative;
	margin-left: 2.5vw;
	height: 5vw;
	width: 10vw;
	background-image: url(images/logo_vodiq.svg);
	background-position: left center;
	background-size: contain;
	background-repeat: no-repeat;
}

.btn_box {
	position: relative;
	display: flex;
	flex-direction: row;
	gap: 1.25vw;
	height: 5vw;
    padding: 1vw 0vw;
	margin-right: 2.5vw;
}

.btn {
	position: relative;
	height: 100%;
	aspect-ratio: 1;
	border-radius: 5vw;
	transition: 0.2s ease;
	cursor: pointer;
}

.btn:hover {
	scale: 110%;
	rotate: 30deg;
	transform-origin: center center;
}

navigation {
    margin: 1vw 0;
    line-height: 3vw;
	font-family: mon_regular;
	font-size: 1.2vw;
}

.menu {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
    gap: 2.5vw;
  }

.menu > li.menu-item {
    position: relative;
    float: left;
  }

.menu a {
    color: #339da9;
    text-decoration: none;
}



.blue {	
	background: radial-gradient(circle at 30% 30%, rgba(34, 171, 227, 0.9) 0%, rgba(16, 158, 190, 0.6) 40%, rgba(0, 0, 0, 0) 70%), linear-gradient(45deg, #2EE889 0%, #109ebe 20%, #096db5 50%, #2EE889 133%);
	box-shadow: 0 1vw 2vw #4ec9d412;
}

.hero {
	position: relative;
	width: 100%;
	height: calc(100vh - 10vw - 2.5vw);
}

.cta_box {
	position: absolute;
	bottom: 5vw;
	left: 50%;
	transform: translatex(-50%);
	display: flex;
	flex-direction: row;
	gap: 1.5vw;
}

.cta_primary {
	position: relative;
	height: 3vw;
	width: 15vw;
	border-radius: 3vw;
	color: white;
	line-height: 3vw;
	font-family: mon_bold;
	text-align: center;
	font-size: 1.25vw;
	cursor: pointer;
	text-decoration: none;
}



.blue_border {
    border: 0.1vw solid transparent;
    background: radial-gradient(circle at 30% 30%, rgba(34, 171, 227, 0.9) 0%, rgba(16, 158, 190, 0.6) 40%, rgba(0, 0, 0, 0) 70%), linear-gradient(45deg, #2EE889 0%, #109ebe 20%, #096db5 50%, #2EE889 133%);
    box-shadow: 0 1vw 2vw #4ec9d412;
}

.cta_secondary {
    position: relative;
    height: 3vw;
    width: 15vw;
    border-radius: 3vw;
    line-height: 3vw;
    font-family: mon_bold;
    text-align: center;
    font-size: 1.25vw;
    cursor: pointer;
	background-color: rgba(255, 255, 255, 25%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* gradient border */
.cta_secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3vw;
  padding: 0.15vw; /* tloušťka borderu */
  background: radial-gradient(circle at 30% 30%, rgba(34, 171, 227, 0.9) 0%, rgba(16, 158, 190, 0.6) 40%, rgba(0, 0, 0, 0) 70%), linear-gradient(45deg, #2EE889 0%, #109ebe 20%, #096db5 50%, #2EE889 133%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}

.cta_secondary span {
    background: radial-gradient(circle at 30% 30%, rgba(34, 171, 227, 0.9) 0%, rgba(16, 158, 190, 0.6) 40%, rgba(0, 0, 0, 0) 70%), linear-gradient(45deg, #2EE889 0%, #109ebe 20%, #096db5 50%, #2EE889 133%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.gradient-btn {
  position: relative;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 0;
}

/* gradient border */
.gradient-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 0.1vw; /* tloušťka borderu */
  background: radial-gradient(circle at 30% 30%, rgba(34, 171, 227, 0.9) 0%, rgba(16, 158, 190, 0.6) 40%, rgba(0, 0, 0, 0) 70%), linear-gradient(45deg, #2EE889 0%, #109ebe 20%, #096db5 50%, #2EE889 133%);
  
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  
  z-index: -1;
}

/* gradient text */
.gradient-btn {
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}








.subhero {
	position: relative;
	width: 100%;
	height: 30vw;
	border-radius: 2.5vw;
	background: radial-gradient(circle at 30% 30%, rgba(34, 171, 227, 0.9) 0%, rgba(16, 158, 190, 0.6) 40%, rgba(0, 0, 0, 0) 70%), linear-gradient(45deg, #2EE889 0%, #109ebe 20%, #096db5 50%, #2EE889 133%);
	box-shadow: 0 1vw 2vw #4ec9d412;
}
	


@keyframes from_left {
  0%   {transform: translateX(-20%);}
  100%  {transform: translateX(0);}
}

@keyframes from_right {
  0%   {transform: translateX(20%);}
  100%  {transform: translateX(0);}
}








@media only screen and (max-width: 699.9px) {
    html, body { width: 100%; margin: 0; padding: 0; border: 0; min-width: 300px; background-color: var(--white_1); display: block; }
    html { scroll-behavior: smooth; scroll-padding-top: 2.5vw; }
    .mobile { display: block; }
    .desktop { display: none; }
}
	

