@font-face {
  font-family: "titlefont";
  src: url("../fonts/Kaffe.woff");
}
@font-face {
  font-family: "bodyfont";
  src: url("../fonts/Commodus-Regular.woff");
}

:root {
  --color-bg: #232221;
  --color-header: #ffffff;
  --color-nav: #f9ad81;
  --color-text: #d9bc80;
  --color-text-shadow: #aaaaaa;
  --color-text-hover: #f9ad00;
  --color-title: #ffffff;
  --color-title-shadow: #f9ad81;
  --color-link-hover: #f67d38;
}


/* GLOBAL */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "bodyfont", sans-serif;
}

p {
  margin: 0;
}

body {
  background: var(--color-bg);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

a {
  color: var(--color-text);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  color: var(--color-link-hover);
  outline: none;
  text-decoration: none;
}


/* HEADER */

#skv-header {
  position: absolute;
  width: 100%;
  z-index: 999;
  background: transparent;
  padding: 15px 5%;
}
#skv-header.fixed-top {
  position: fixed !important;
  top: 0;

  background: var(--color-header);

  transform: translateY(-100%);
  animation: HeaderSlideDown 0.3s ease-out forwards;
}
@keyframes HeaderSlideDown {
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  #skv-header {
    background: var(--color-header);
    height: 69px;
    padding: 9px 5%;
  }
  #skv-header.fixed-top {
    position: fixed !important;
    top: 0;
    transform: translateY(0);
    animation: none;
  }
}

#skv-header #skv-logo {
  float: left;
  line-height: 1.2;
  position: relative;
}
#skv-header #skv-logo img {
  width: 150px;
  height: 150px;
  z-index: 10;
  position: relative;
}
#skv-header.fixed-top #skv-logo img {
  content: url("../images/logoblack.png");
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  #skv-header #skv-logo img {
    content: url("../images/logoblack.png");
    width: 51px;
    height: 51px;
  }
  #skv-header.fixed-top #skv-logo img {
    width: 51px;
    height: 51px;
  }
}

#skv-header #skv-nav {
  float: right;
}
#skv-header #skv-nav ul {
  padding-top: 20px;
}
#skv-header #skv-nav ul li {
  display: inline;
}
#skv-header #skv-nav ul li a {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: var(--color-nav);
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  #skv-header #skv-nav ul {
    padding-top: 12px;
  }
  #skv-header #skv-nav ul li a {
    font-size: 15px;
  }
}
#skv-header #skv-nav ul li a:hover {
  text-decoration: none;
  color: var(--color-text-hover);
  text-shadow: var(--color-text-shadow) 0px 0px 3px;
  opacity: 0.8;
}


/* BODY */

#skv-body {
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}


/* HOME */

#skv-home {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#skv-home .slides {
  width: 100%;
  height: 100%;
}
#skv-home .slides li {
  position: absolute;

  width: 100%;
  height: 100%;

  list-style-type: none;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: 40%;

  opacity: 0;
  transition: 1.5s;
  -webkit-transition: 1.5s;
  -o-transition: 1.5s;
}
#skv-home .slides li.active {
  opacity: 1;
}

#skv-home .skv-text {
  position: absolute;
  top: 25%;
  z-index: 2;

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 1;
  animation: TextSlideUp 2s ease-out forwards;
}
@keyframes TextSlideUp {
  0% {
    top: 120%;
    opacity: 0;
  }
}
#skv-home .skv-text h1 {
  font-family: "titlefont", sans-serif;
  font-size: 111px;
  text-align: center;
  color: var(--color-title);
  text-shadow: var(--color-title-shadow) 0px 0px 10px;

  transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #skv-home .skv-text {
    top: 30%;
  }
  #skv-home .skv-text h1 {
    font-size: 80px;
  }
}


/* ABOUT */

#skv-about {
  background: var(--color-bg);
  padding: 5% 10% 0% 10%;
}

#skv-about h1 {
  font-variant: small-caps;
  font-size: 50px;
  text-align: center;
  letter-spacing: 2px;
  color: var(--color-text);
  text-shadow: var(--color-text-shadow) 0px 0px 3px;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 20px;
}
#skv-about p {
  padding-bottom: 40px;
  font-variant: small-caps;
  font-size: 35px;
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  #skv-about {
    padding: 5% 15px 0% 15px;
  }
  #skv-about h1 {
    font-size: 30px;
  }
  #skv-about p {
    font-size: 20px;
  }
}
#skv-about p a {
  text-shadow: var(--color-text-shadow) 0px 0px 3px;
}


/* FOOTER */

#skv-footer {
  background: var(--color-bg);
  padding: 0 10% 10px 10%;
}
#skv-footer p {
  font-variant: small-caps;
  font-size: 20px;
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  #skv-footer {
    padding: 0 15px 10px 15px;
  }
  #skv-footer p {
    font-size: 12px;
  }
}
