/*
Theme Name: Flying Realms
Author: Sebastian "Tetrakern" Vetter
Description: A custom theme made for the company Flying Realms.
Version: 1.0
License: With permission only.
*/

/* #############################################################################
BASIC SETUP
############################################################################# */

html, body {
  height: 101%;
}

body {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}

a {
  color: #333333;
}

.background-left {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 50%;
  z-index: -100;
  background-image: url('###');
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  background-color: #fcfcfc;
}

.background-right {
  position: fixed;
  top: 0;
  left: 50%;
  bottom: 0;
  right: 0;
  z-index: -100;
  background-image: url('###');
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  background-color: #fcfcfc;
}

.site {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  max-width: 1100px;
  min-width: 320px;
  min-height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-width: 0 1px;
}

.flex-wrapper {
  display: flex;
  flex: 1;
}

/* #############################################################################
HEADER
############################################################################# */
.site-header__logo {
  text-align: center;
  padding: 20px 0;
}

.site-header__logo a {
  display: block;
}

.site-header__logo .custom-logo {
  width: 60%;
  height: 60%;
}

.site-header__mobile-menu,
.site-header__mobile-menu-label {
  display: none;
}

.sidebar {
  display: flex;
  flex-direction: column;
  width: 30%;
  min-width: 220px;
}

.sidebar__filler {
  flex: 1;
}

/* #############################################################################
NAVIGATION
############################################################################# */
.navigation {

}

.navigation .menu-item a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: inherit;
  padding: 10px 20px;
  margin-top: 1px;
}

.navigation .sub-menu .menu-item a {
  padding-left: 40px;
}

.navigation .menu-item a:hover {
  background-color: #555555;
  color: #fcfcfc;
}

.navigation .current-menu-item > a {
  background-color: #333333;
  color: #fcfcfc;
}

.pagination {
  text-align: center;
}

/* #############################################################################
MAIN + BLOG
############################################################################# */
.main {
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
}

.post {
  margin-bottom: 40px;
  background-color: rgba(255,255,255,0.8);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid #eee;
}

.post__title a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  line-height: 1;
}

.post__body {
  padding: 5px 10px 15px;
}

.post__meta {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.post__meta a {

}

.post__meta a:hover {

}

.post__more-link {

}

/* #############################################################################
FOOTER
############################################################################# */
.footer {
  text-align: center;
}

/* #############################################################################
Project Page
############################################################################# */
.project-blog {
  border-top: 1px solid #333333;
  padding-top: 30px;
  margin-top: 30px;
}

.resp-video {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.resp-video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* #############################################################################
MOBILE
############################################################################# */
/*@media only screen and (max-width: 768px) {
  .background-left,
  .background-right {
    display: none;
  }

  .flex-wrapper {
    flex-direction: column;
  }

  .sidebar {
    background-color: #fcfcfc;
    box-shadow: none;
    width: 100%;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    height: 60px;
    overflow: hidden;
  }

  .site-header__logo {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  .navigation {
    height: 0;
  }

  .site-header__mobile-menu-label {
    display: block;
  }

  .site-header__mobile-menu:checked ~ .navigation {
    height: 100%;
  }


}*/





/* */
