/**
 * Globals
 * ======================================== */
 
html {
  height: 100%;
}

.motive { /* = body */
  min-height: 100%;
  height: auto;
  position: relative;
  color: #eaeaea;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .motive {
    flex-direction: row;
    justify-content: space-between;
  }
}

.motive::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(21, 21, 21, .6);
  z-index: 1;
}

a {
  color: #eaeaea;
  text-decoration: none;
  -webkit-transition: all .2s ease;
     -moz-transition: all .2s ease;
       -o-transition: all .2s ease;
      -ms-transition: all .2s ease;
          transition: all .2s ease;
}

a:hover {
  color: #bbb;
  text-decoration: none;
}



/**
 * Motive
 * ======================================== */

.motive {
  background-image: url(/obrazek/3/brno-ptaci-persp-jpg/);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #151515;
}


/**
 * Layout
 * ======================================== */

@media (max-width: 991px) {
  .container-fluid {
    padding-left: 2rem;
    padding-left: clamp(.75rem, calc(.75rem + 5vw), 6rem);
    padding-right: 2rem;
    padding-right: clamp(.75rem, calc(.75rem + 5vw), 6rem);
  }
}

.masthead {
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.masthead:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(21, 21, 21, .92);
  backdrop-filter: blur(2px);
}

.masthead .masthead-content {
  position: relative;
  max-width: 50rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.masthead:before {
  transform: skewY(-4deg);
  transform-origin: bottom left;
}

@media (min-width: 992px) {
  .masthead {
    height: 100vh;
    width: 75vw;
    max-width: 75vw;
    min-height: 0;
    padding-bottom: 0;
  }

  .masthead:before {
    transform: skewX(-9deg);
    transform-origin: top right;
  }

  .masthead .masthead-content {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 2rem;
    padding-right: 9rem;
  }
}

@media (min-width: 1200px) {
  .masthead {
    width: 65vw;
    max-width: 65vw;
  }
}


/**
 * Perex
 * ======================================== */

 h1 {
  margin-bottom: .5em;
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

.logo {
  display: block;
  max-height: 320px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 1.5rem;
}

@media (min-width: 992px) {
  .logo {
    margin-left: 0;
    max-height: 260px;
  }
}


/**
 * Contact
 * ======================================== */

.list-address {
  margin-left: 0;
  margin-top: 2rem;
  padding-left: 2.5em;
}

.list-address li {
  position: relative;
  padding-left: 1.25em;
  list-style: none;
  border-left: 1px solid #777;
}

.list-address li i {
  position: absolute;
  left: -2.5em;
  width: 1.5em;
  top: .3125em;
  text-align: center;
  color: #bbb;
}


/**
 * Social links
 * ======================================== */

.social-site-icon {
  position: relative;
  z-index: 2;
}

.social-site-icon {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 0; /* fallback */
  padding: clamp(2rem, calc(1rem + 4vw), 4rem) 0;
}

@media (min-width: 992px) {
  .social-site-icon {
    flex-direction: column;
    height: 100%;
    width: auto;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.social-site-icon .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: .75rem; /* fallback */
  margin: clamp(.75rem, calc(.5rem + 1.25vw), 1rem);
  font-size: clamp(1rem, calc(.5rem + 1.25vw), 1.375rem);
  height: 3rem; /* fallback */
  height: clamp(2.5rem, calc(1rem + 4vw), 4rem);
  width: 3rem; /* fallback */
  width: clamp(2.5rem, calc(1rem + 4vw), 4rem);
  border-radius: 50%;
  border: 0;
  color: #fff;
  background-color: #151515;
  transform: scale(0.99);
  -webkit-transform: scale(0.99);
  -webkit-transition: all .3s ease;
     -moz-transition: all .3s ease;
       -o-transition: all .3s ease;
      -ms-transition: all .3s ease;
          transition: all .3s ease;
}

.social-site-icon .btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, .9);
  border-radius: 50%;
  opacity: 0;
  z-index: 0;
  -webkit-transition: all .3s ease;
     -moz-transition: all .3s ease;
       -o-transition: all .3s ease;
      -ms-transition: all .3s ease;
          transition: all .3s ease;
}

.social-site-icon .btn:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.social-site-icon .btn:hover::before {
  opacity: .1;
}

.social-site-icon .btn i {
  z-index: 1;
}


/* Icons colors */
.social-site-icon .fb {
  background-color: #4267B2;
}

.social-site-icon .tw {
  background-color: #1DA1F2;
}

.social-site-icon .ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-site-icon .ta {
  background-color: #34E0A1;
  color: #151515;
}

.social-site-icon .yt {
  background-color: #ff0000;
}


/**
 * Powered by inPage
 * ======================================== */

.poweredby-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 10;
  padding-left: 2rem;
  padding-left: clamp(.75rem, calc(.75rem + 5vw), 6rem);
  padding-right: 2rem;
  padding-right: clamp(.75rem, calc(.75rem + 5vw), 6rem);
}

.poweredby-wrap--mobile {
  padding-top: 1rem;
}

.poweredby-wrap--mobile .poweredby {
  color: #999;
  z-index: 1;
}

.poweredby-wrap--mobile .poweredby a:hover,
.poweredby-wrap--mobile .poweredby a:focus {
  color: #fff;
}

.poweredby-wrap--mobile::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}

@media (min-width: 992px) {
  .poweredby-wrap {
    width: 60vw;
    justify-content: flex-start;
    margin-top: 2rem;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 1200px) {
  .poweredby-wrap {
    width: 52vw;
  }
}

.poweredby {
  text-align: center;
  color: #aaa;
}

.poweredby a {
  color: inherit;
}

.poweredby a:hover,
.poweredby a:focus {
  color: #fff;
}


/**
 * Fix
 * ======================================== */

#imp {
  position: fixed;
}/* Seda */

.motive {
  color: #fff;
}

.motive:before {
  background-color: rgba(51, 51, 51, .6);
}

.masthead:before {
  background-color: rgba(112, 112, 112, .95);
}

a {
  color: #fff;
}

a:hover {
  color: #e2e2e2;
}

.list-address li {
  border-color: rgba(226, 226, 226, .5);
}

.list-address li i {
  color: #e2e2e2;
}

.poweredby {
  color: #e2e2e2;
}

.poweredby a {
  color: inherit;
}

.poweredby a:hover,
.poweredby a:focus {
  color: #fff;
}
