/*
    Theme Name:   
    Theme URI:    
    Description:  
    Author:       Triton IT s.r.o.
    Author URI:   //www.tritonit.cz
    Version:      1.0.0
    License:      GNU General Public License v2 or later
    License URI:  http://www.gnu.org/licenses/gpl-2.0.html
    Tags:         
    Text Domain:  
*/


/* 
    Struktura less:
    1. Zadefinování zkratek
    2. Obecné styly
    3. Navbar
    4. Styl pro HP
    5. Styly pro ostatní stránky
    6. Styl pro příspěvky
    7. Footer
    8. Media queries
 */
/* Zadefinování zkratek */
/* Obecné styly */
b {
  color: white;
}
.bold {
  font-weight: 600;
}
html {
  scroll-behavior: smooth;
}
body {
  padding: 0;
  margin: 0;
}
::selection {
  background: gray;
  /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: gray;
  /* Gecko Browsers */
}
.parallax {
  /* Set a specific height */
  min-height: 300px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-wrapper {
  min-height: 100vh;
  position: relative;
}
/* Navbar */
.navbar-container {
  position: fixed;
  z-index: 1000;
  background-color: green;
  border-bottom: 1px solid black;
  top: 0;
}
.transparent {
  background-color: #8598a1ad !important;
}
.navbar {
  padding: 0 !important;
}
.navbar .navbar-brand img {
  height: 80px;
}
.navbar .navbar-toggler {
  border: none;
  padding: 15px;
  background-color: transparent;
  display: inline-block;
  transition: 0.2s;
  width: auto;
  height: auto;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}
.navbar .navbar-toggler .navbar-toggler-icon .hamburger {
  position: absolute;
  left: 0%;
  top: 30%;
  transition: 0.2s;
}
.navbar .navbar-toggler .navbar-toggler-icon .hamburger,
.navbar .navbar-toggler .navbar-toggler-icon .hamburger::before,
.navbar .navbar-toggler .navbar-toggler-icon .hamburger::after {
  width: 40px;
  height: 4px;
  background-color: white;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.navbar .navbar-toggler .navbar-toggler-icon .hamburger::before,
.navbar .navbar-toggler .navbar-toggler-icon .hamburger::after {
  content: "";
  display: block;
}
.navbar .navbar-toggler .navbar-toggler-icon .hamburger::before {
  top: -10px;
}
.navbar .navbar-toggler .navbar-toggler-icon .hamburger::after {
  bottom: -10px;
}
.navbar .navbar-toggler.active .hamburger {
  transform: rotate(45deg);
  transition-delay: 0.15s;
}
.navbar .navbar-toggler.active .hamburger::before {
  top: 0px;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.navbar .navbar-toggler.active .hamburger::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.navbar .navbar-toggler:hover .hamburger {
  opacity: 0.7s;
  transition: 0.2s;
}
.navbar button {
  border-style: none;
}
.navbar button:focus {
  outline: none;
}
.navbar .menu-item {
  margin: 0 10px;
}
.navbar .menu-item .nav-link {
  text-decoration: none;
  font-weight: 700;
  color: white;
  font-size: 17px;
  transition: .3s;
  text-align: right;
  padding-right: 0px;
  padding-left: 30px;
  transition: all .3s;
}
.navbar .menu-item .nav-link:hover {
  text-decoration: underline;
  color: yellow;
}
.navbar .menu-item-has-children:hover > .dropdown-menu {
  display: block;
}
.navbar .dropdown-menu {
  display: none;
  width: auto;
  margin: 0;
  padding-bottom: 0;
  background-color: white;
}
.navbar .dropdown-menu .dropdown-item {
  margin: 0;
  padding: 5px 30px ;
  color: black;
  background: transparent;
}
.navbar .dropdown-menu .dropdown-item .active {
  color: black;
}
.navbar .dropdown-menu .dropdown-item:hover {
  color: black;
}
.navbar img#search-image {
  margin-left: 20px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
}
.navbar .search-group input[type="text"] {
  width: 80%;
  padding: 2px 5px;
  border: 0;
  outline: 0;
  border-bottom: 1px solid black;
}
.navbar .search-group input[type="image"] {
  height: 30px;
  margin-left: 5%;
}
/* Home page */
main.home-page .banner-wrap {
  background-position: center;
  background-size: cover;
  height: 500px;
}
main.home-page .o-mne img {
  object-fit: cover;
  width: 300px;
  height: auto;
}
main.home-page .kde {
  margin-top: 100px;
}
main.home-page .kde p {
  line-height: 1;
  margin-bottom: 7px !important;
}
main.home-page .najnovsie {
  margin-top: 100px;
}
main.home-page .najnovsie .poviedky .poviedka hr {
  height: 90%;
  width: 2px;
  background-color: green;
}
/* 404 */
img#search-image {
  height: 50px;
  padding: 8px;
  cursor: pointer;
}
/* Footer */
footer {
  color: #e1cda2;
  position: relative;
  bottom: 0;
  border-top: 1px solid #ccab63;
}
footer .sipka {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
footer .sipka a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ccab63;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 20px 8px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 20px 8px rgba(0, 0, 0, 0.4);
}
footer .sipka img {
  width: 30px;
  height: auto;
  margin: 5px;
  margin-bottom: 8px;
}
footer .sipka:hover {
  transform: scale(1.05);
}
footer h3 {
  font-size: 30px;
  color: #e1cda2;
}
footer .kontakt svg {
  fill: #e1cda2;
  height: 30px;
  width: 30px;
  transition: .2s all;
}
footer .kontakt a {
  color: #ccab63;
  text-decoration: none;
  transition: .2s all;
}
footer .kontakt a:hover {
  color: white;
}
footer .socials svg {
  fill: #e1cda2;
  height: 38px;
  width: 38px;
  transition: .2s all;
}
footer .socials svg:hover {
  fill: white;
}
footer img {
  height: 40px;
  width: auto;
}
/* Media queries */
