/* --------------------------------------------------
Author: Alina Jensch
Author URI: https://winterheart.de/
Description: This stylesheet was created for Kryptan https://kryptan.net.
Version: 1.6
Last modified: 14.02.2025
-------------------------------------------------- */

@font-face {
  font-family: 'Caslon Antique';
  src: url('fonts/font-caslonantique.woff2') format('woff2'),
       url('fonts/font-caslonantique.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-regular.woff2') format('woff2'),
       url('fonts/Poppins-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-500.woff2') format('woff2'),
       url('fonts/Poppins-500.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-700.woff2') format('woff2'),
       url('fonts/Poppins-700.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}

*, ::after, ::before {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}

body {
  background: #0f0f0f; /*#0a0a0a;*/
  color: #A0A0A0;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 1.6;
}
h1, h2, h3 {
  color: #a69a88;
  font-family: 'Caslon Antique', serif;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 10px 0px;
  font-weight: normal;
}
h1 {
  font-size: 46px;
}
h2 {
  font-size: 34px;
}
h3 {
  font-size: 22px;
}
a {
  color: #7E7E7E;
  text-decoration: none;
  outline: 0;
}
a:hover {
  opacity: 0.5;
  transition: 0.6s;
  text-decoration: underline;
  text-decoration-style: dotted;
}
p {
  padding-top: 15px;
}
p:last-of-type, p:last-child {
  margin-bottom: 30px;
}
i {
  margin-right: 6px;
}

.justify {
  text-align: justify;
}
.spacer {
  height: 30px;
  width: 100%;
}
.top-push {
  margin-top: 60px;
}

/* N A V I G A T I O N */
nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 0px 30px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  transition: 0.6s;
  z-index: 1;
}
nav.sticky {
  background: #270000;
}
nav.sticky .logo {
  display: flex;
}
.naveaux {
  background: #270000;
}
.naveaux .logo {
  display: flex;
}
.logo {
  color: #EDF2F4;
  text-decoration: none;
  display: none;
  position: relative;
  z-index: 2;
}
.logo img {
  max-height: 55px;
  width: auto;
  padding: 2px 0px; /* Blurry in Chrome on Windows */
}
.logo img:hover {
  opacity: 0.3;
  transition: 0.6s;
}
.nav-links {
  display: flex;
  justify-content: space-between;
  width: 33%;
}
.nav-links li {
  list-style: none;
  display: block;
}
.nav-links li a {
  color: #c7bfb4;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 8px 6px;
  transition: 0.6s;
  outline: 0;
}
.nav-links a:hover {
  opacity: 0.3;
}

.menuburger {
  display: none;
  cursor: pointer;
}
.menuburger div {
  width: 25px;
  height: 3px;
  background-color: #c7bfb4; /*#EDF2F4;*/
  margin: 5px;
  transition: all 0.3s ease;
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px,-6px);
}

/* B A N N E R */
.banner {
  position: relative;
  top: 0;
  width: 100%;
  height: 100vh;
  background: url('kryptan-bg_full.webp');
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.banner img {
  display: block;
  max-width: 650px;
  /*width: 80%;*/
  height: auto;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 2px 2px 4px #000000;
}
.banner2 {
  width: 100%;
  padding-top: 50%;
  margin-top: 60px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: fixed;
  background-position: 0px 60px;
  display: block;
}

.fade-in {
  animation: fadeIn ease 5s;
  -webkit-animation: fadeIn ease 5s;
  -moz-animation: fadeIn ease 5s;
  -o-animation: fadeIn ease 5s;
  -ms-animation: fadeIn ease 5s;
}
@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

/* C O N T E N T */
.content {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 15px 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.content-text {
  display: inline-block;
  width: 70%;
  max-width: 760px;
  padding: 15px;
}
.content-left {
  display: inline-block;
  width: 25%;
  padding: 15px;
  text-align: center;
}
.content-video {
  display: inline-block;
  width: 35%;
  padding: 15px;
  text-align: center;
}
.content img {
  max-width: 100%;
  padding: 15px;
}
.music-cover {
  display: inline-block;
  width: 50%;
  padding: 15px;
  text-align: center;
}
.music-content {
  display: inline-block;
  width: 50%;
  padding: 15px;
  text-align: center;
}
.music-credits {
  color: #a69a88;
  text-transform: uppercase;
}
.highlight {
  align-items: center;
  font-family: 'Caslon Antique', serif;
  text-transform: uppercase;
  color: #c7bfb4;
  text-shadow: 2px 2px 4px #000000;
}
.portrait {
  display: block;
  position: relative;
  max-width: 250px;
  margin: 0px auto 20px;
  font-size: 14px;
  text-transform: uppercase;
}
.portrait img {
  padding: 0px;
}
.portrait-text {
  position: absolute;
  bottom: 6px;
  left: 0px;
  background: #000000ba;
  padding: 5px 10px 2px;
  width: 100%;
  line-height: 2.5;
}
.portrait-text h3 {
  margin: 0px;
}
blockquote {
  display: block;
  font-style: italic;
  padding: 15px 20px 15px 50px;
  margin: 20px 0 15px;
  position: relative;
}
blockquote::before{
  content: '\201c';
  font-family: 'Times New Roman', serif;
  font-size: 80px;
  font-style: normal;
  color: #606060;
  position: absolute;
  left: 5px;
  top: -25px;
}
.live {
  text-align: center;
  padding: 15px 15px 0px;
}
.contact-box {
  width: 60%;
  padding: 20px 40px 40px;
  margin: 50px auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.contact-box div {
  padding: 0px 30px;
}
.contact-out i {
  font-size: 22px;
  vertical-align: middle;
}
.contact-out {
  display: inline-block;
  vertical-align: top;
  width: 49%;
}
.vid-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}
.vid-container img {
  padding: 0px;
}
.vid-container iframe,
.vid-container object,
.vid-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* F O O T E R */
footer {
  position: relative;
  width: 100%;
  bottom: 0px;
  padding: 10px 30px;
  background-color: #000000;
  color: #848484;
}
footer a {
  color: #a69a88;
}
.wrapper {
    max-width: 1280px;
    margin: auto;
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    align-items: center;
}
.credits {
  font-size: 14px;
}
.photo-credit {
  margin: auto 0 auto auto;
  text-transform: uppercase;
  padding: 3px 0 3px 0;
}
.social {
  font-size: 32px;
  opacity: 0.8;
}

/* M E D I A  Q U E R I E S */

@media screen and (max-width:1024px){
  .nav-links {
    width: 50%;
  }
}

@media screen and (max-width:768px){
  body {
    overflow-x: hidden;
  }
  nav {
    padding: 0px 30px;
  }
  .nav-links {
    position: absolute;
    right: 0px;
    height: 100vh;
    top: 0;
    padding-top: 100px;
    background-color: #270000;
    display: block;
    width: 80%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }
  .nav-links li {
    opacity: 0;
    text-align: center;
  }
  .nav-links li a {
    display: block;
    padding: 15px 0px;
  }
  .nav-links a:hover {
    color: #101319;
    border-bottom: 0px;
    background-color: #5E6B7D;
  }
  .nav-active {
    transform: translateX(0%);
  }
  .menuburger {
    display: block;
    z-index: 2;
  }
  .banner {
    background: url('kryptan-bg_mobile.webp') no-repeat center top;
    background-size: cover;
  }
  .banner2 {
    padding-top: 56.25%;
    margin-top: 60px;
    background-position: 0px 0px; /*on desktop 0px 60px, no push*/
    background-attachment: scroll;
  }
  .banner-contact {
    min-height: 150vh;
  }
  .highlight h1 {
    font size: 34px;
  }
  .highlight h2 {
    font-size: 22px;
  }
  .live {
    text-align: left;
  }
  .wrapper {
    text-align: center;
  }
  .credits {
    width: 100%;
    padding-bottom: 10px;
  }
  .social {
    width: 100%;
    padding: 6px 0 10px;
    font-size: 38px;
  }
  .content-left, .content-text, .content-video, .music-cover, .music-content {
    width: 100%;
    text-align: left;
  }
  .justify {
    text-align: justify!important;
  }
  .music-credits {
    display: block;
  }
  .highlight {
    margin-top: 60px;
  }
  .highlight .music-content {
    text-align: center;
  }
  .portrait {
    max-width: 300px;
  }
  .portrait-text {
    text-align: center;
  }
  .contact-box {
    width: 90%;
    margin: 110px auto 50px;
    padding: 20px 20px 40px;
  }
  .contact-box div {
    padding: 0px 15px;
  }
  .contact-out {
    width: 100%;
  }
}
