@charset "utf-8";
                                            /* colours */
:root {
  --dark: #0a0a4c;
  --light: rgba(234,234,238,0.80);
  --hover-light: #99a0ff;
  --hover-dark: #111dba;
}
body {
    background: var(--dark);
    color: var(--dark);
    background-image: url("images/main-back.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

                                            /* general layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

                                        	/* typography */
html {
    font: 16px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
    margin: 0;
    padding: 0;
    font-size:16px;
}
h1 {
    font-size: 2.5rem;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    text-align: center;
    font-weight: bold;
    color: var(--dark)
}
h2 {
    font-size: 1.5rem;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: var(--dark)    
}

                                        	/* nav */

.menu-container {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--dark);
    color: var(--light);
    padding: 10px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    box-sizing: border-box;
}

.menu-logo {
    line-height: 0;
    margin: 0 20px;
}

.menu-logo img {
    max-width: 100%;
    width: 250px;
    height: auto;
    flex-shrink: 0;
}

.menu-container a {
    text-decoration: none;
    color: var(--light);
    transition: color 0.3s ease;
    padding: 0 5px;
}

.menu-container a:hover {
    color: var(--hover-light);
    background: black;
}

.menu-container a.active {
    background-color: black;
}

.menu-container input {
    display: block;
    width: 35px;
    height: 25px;
    margin: 0;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

                                        	/* Burger menu */
.menu-container span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: var(--light);
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}

.menu-container span:first-child {
    transform-origin: 0% 0%;
}

.menu-container span:nth-child(3) {
    transform-origin: 0% 100%;
}

.menu-container input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(3px,-1px);
    background: var(--dark);
}

.menu-container input:checked ~ span:nth-child(4) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

.menu-container input:checked ~ span:nth-child(3) {
    transform: rotate(-45deg) translate(-5px,11px);
}

.menu ul {
    list-style: none;
}

.menu li {
    padding: 10px 0;
    font-size: 22px;
}
.menu-icons {
    width: 30px;
    height: auto;
}


                                        	/* main */
main a {
    text-decoration: none;
}
main a:visited {
    color: blueviolet;
}
main a:hover {
    text-decoration: underline;
    color: var(--dark);
}
main p {
    padding: 0 0.2rem;
}

#page_main {
    flex-grow: 1;
    max-width: 100vw;
    width: 1200px;
    margin: 0 auto;
    background-color:  var(--light);
}
.tabs ul {
	padding: 0;
	list-style-type: none;
	display: flex;
}
.tabs li {
    font-size: 1.4rem;
    display: inline;
    text-align: center;
    flex: 1;
    padding: auto;
}
.tabs ul a {
    height: 2.2rem;
	color: white;
	display: block;
    border-style: ridge;
    border-width: thin;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    cursor: pointer;
    background-color: var(--dark);
}
.tabs ul a:hover {
    color: var(--hover-light);
    background-color: var(--hover-dark);
    text-decoration: none;
}
.expand {
  display: none;
}
#mixes, #remixes, #radio {
    padding: 0 5px;
    overflow-y: auto;
    background-color: var(--light);
}
#remixes, #radio {
	display: none;
}
.video {
    text-align: center;
}
.gallery_video {
    width: 50%;
    max-width: 504px;
    height: auto;
}
#steil-drawing {
    float: right;
    width: 240px;
    height: auto;
    border-radius: 10px;
}
#main_intro {
    display: flex;
    flex-direction: row;
}

#vlightbox0 {
    text-align: center;
}

.slides {
    float: left;
}
.slides img{
    width: 50vw;
    max-width: 600px;
    height: auto;
    border-radius: 0px 0px 0px 15px;
}

/* Slideshow container */
.slideshow {
    position: relative;
    width: 50vw;
    max-width: 600px;
    height: auto;
    overflow: hidden;
}
/* Stack images */
.slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    animation: fade 16s infinite;
    border-radius: 0px 0px 0px 15px;
}
/* Delay each image */
.slideshow img:nth-child(1) { animation-delay: 0s; }
.slideshow img:nth-child(2) { animation-delay: 4s; }
.slideshow img:nth-child(3) { animation-delay: 8s; }
.slideshow img:nth-child(4) { animation-delay: 12s; }

/* Fade animation */
@keyframes fade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    25% { opacity: 1; }
    35% { opacity: 0; }
    100% { opacity: 0; }
}

.intro-text {
    width: 50vw;
    max-width: 600px;
    height: 50vw;
    max-height: 600px;
    background-color: var(--light);
    overflow-y: auto;
    border-radius: 0px 0px 15px 0px;
}
.intro-text p {
    padding: 5px;
}

.testimonial {
	font-size: 1rem;
	float: left;
	padding: 3px;
	background-color: var(--light);
	border-radius: 6px;
	width: 47%;
	margin: 1%;
	-webkit-box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);
	box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);
}

input, textarea {
	width: 350px;
	max-width: 70%;
	background-color: var(--light);
}
input:focus, textarea:focus {
	background-color: white;
}
.btn {
	width: auto;
}

                                        	/* footer */
#page_footer {
    background: var(--dark);
    color: var(--light);
    width: 100%;
    bottom: 0px; 
    left: 0px;
    text-align: center;
    
}
footer {
    padding: 0;
    margin: 0;

}
footer a {
    color: var(--light);
    padding: 0 4px;
}
footer a:hover {
    color: var(--hover-light);    
}
footer a:active {
    background-color: var(--hover-dark);
}

                                        	/* mobile styles */
@media only screen and (max-width: 767px) { 
  .menu-container {
    flex-direction: column;
    align-items: flex-end;
  }
  
  .menu-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-logo img {
    max-width: 60%;
  }
  .menu-container a.active {
    background-color: var(--dark);
  }    
  .gallery_video {
    width: 100vw;
    max-width: none;
    height: auto;
  }
  #page_main {
    flex-grow: 1;
    width: 100vw;
    max-width: none;
    min-width: 100vw;
    margin: 0 auto;
  }
  .tabs ul {
    display: block;
    width: 100%;
  }
  .tabs li {
    width: 100%;
    display: block;
    align-items: center;
    justify-content: center;
  }
  .tabs ul a {
    font-size: 1.5rem;
    height: 2.5rem;
  }
  #steil-drawing {
    float: right;
    width: 40vw;
    height: auto;
    border-radius: 5px;
  }
  #main_intro {
    animation: fadeIn 5s;
    width: 100vw;
    max-width: none;
    display: flex;
    flex-direction: column;
  }
  .slides img {
    width: 100%;
    height: auto;
  }

  .slideshow {
    width: 100%;
    max-width: none;
    position: relative;
  }
  .slideshow img {
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  .slideshow img:first-child {
    position: relative;
    opacity: 1;
  }
    
  .intro-text {
    width: 100%;
    height: auto;
    font-size: 1.1rem;
    scroll-behavior: auto;
    overflow-y: auto;
    border-radius: 0px 0px 5px 5px;
  }

  .testimonial {
    font-size: 1.1rem;
    display: block;
    float: none;
    padding: inherit;
    background-color: var(--light);
    border-radius: 6px;
    width: 100vw;
    margin: 0;
    -webkit-box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);
    box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);}
    
#page_footer {
    display: none;        
}
    
  .menu {
    position: absolute;
    box-sizing: border-box;
    width: 300px;
    right: -300px;
    top: 0;
    margin: -20px;
    padding: 75px 50px 50px;
    background: var(--hover-light);
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translateX(0%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }

  .menu-container input:checked ~ .menu {
    transform: translateX(-100%);
  }
}



                                        	/* desktop styles */
@media only screen and (min-width: 768px) { 
  .menu-container {
    width: 100%;
  }

  .menu-container a {
    color: var(--light);
  }

  .menu-container input {
    display: none;
  }
                                          	/* Burger menu */
  .menu-container span {
    display: none;
  }

  .menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .menu ul {
    display: flex;
    padding: 0;
  }

  .menu li {
    padding: 0 20px;
  }
}

