/* Remove default styling */
 
* {
    margin: 0px;
    padding: 0px;
    border: 0px;
    font-family: 'Raleway', sans-serif;
    color: #6f6f6f;
    font-size: 1em;
    text-decoration: none;
    scroll-behavior: smooth;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
    -o-tap-highlight-color: transparent;
}

*,*:focus,*:hover{
    outline:none;
}

body {
    visibility: hidden;
    transition: visibility 0.2s linear,opacity 0.2s linear;
}

/* CONTAINER */

.container {
    width: 90%;
    margin: auto;
}
/* NAV BAR */

.navigation {
    margin: 10px auto;
    width: 90%;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    list-style-type: none;
}

.nav-item a {
    padding: 1rem;
    display: block;
    position: relative;
    color: white;
       
}

.nav-item a::before, .text-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #c24646;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.hide-underline {
    background-color: #303030;
    z-index: 1;
}

.hide-underline::before {
    opacity: 0;
}

.nav-item a:hover:before, .text-link:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.hamburger, .cross {
    position: absolute;
    font-size: 3rem;
    color: white;
    margin: 1rem;
    cursor: pointer;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    height: 0px;
}

.vertical-menu {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 70px;
}

.fade-in-and-out {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

/* IMAGE AND HEADER */

.visible-section {
    display: block;
}

section {
    display: none;
}

.main-image {
    height: 100vh;
    width: 100%;
    background: fixed;
    background-size: cover;
    display: flex;
    z-index: -1;
    top: 0;
    left: 0;
}

.home-image {
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url("../images/joshua-hoehne-imI07TcnzpI-unsplash-min.jpg");
}

.about-image {
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url("../images/marius-masalar-rPOmLGwai2w-unsplash-min.jpg");
    background-position: 20%;
    height: 30rem;
}

.concerts-image {
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url("../images/piano-4089731-min.jpg");
    height: 30rem;
    background-position-x: center;
    background-position-y: 70%;
}

.recordings-image {
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url("../images/record-super-narrow.jpg");
    height: 30rem;
    background-position: center;
}
.gallery-header-item {
    background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url("../images/piano-4487573-min.jpg");
    height: 30rem;
    background-position-x: center;
    background-position-y: 66%;
}

.contact-image  {
    background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url("../images/piano-3957653_1920-min.jpg");
    height: 30rem;
    background-position: center;
}

.main-image h1 {
    text-transform: uppercase;
    font-size: 3rem;
    color: white;
    letter-spacing: 15px;
    font-weight: 200;
}

@media only screen and (max-width: 770px) {
    .main-image h1 {
        font-size: 1.5rem;
    }    
}
.home-image h1 {
    text-align: end;
}

.about-image h1, .concerts-image h1, .gallery-header-item h1, .contact-image h1, .recordings-image h1 {
    text-align: center;
    font-size: 2rem;
}

@media only screen and (max-width: 770px) {
    .about-image h1, .concerts-image h1, .gallery-header-item h1, .contact-image h1, .recordings-image h1 {
        font-size: 1.5rem;
    }
}

/* PAGE TEXT */

.page-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: center;
    margin: 50px auto;
}

.page-column-item {
    flex-basis: 50%;
    
}

@media only screen and (max-width: 770px) {
    .page-column-item {
        flex-basis: auto;
    }
}

.page-row h2, .table-header {
    margin: 2rem;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.page-row p, .page-row .news-title  {
    margin: 1rem;
    text-align: left;
    line-height: 2rem;
}

.news-title {
    font-weight: 700;
}

.page-row .news-date {
    text-align: left;
    margin: 2rem 0 0 1rem;
}

hr {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* ABOUT */

.profile-image {
    max-height: 75vh;
    max-width: 80%;
    padding-top: 10vh;
}

/* UPCOMING CONCERTS */

.table {
    display: flex;
}

@media only screen and (max-width: 770px) {
    .table {
        flex-direction: column;
    }
}

.table:nth-of-type(even), .recordings-row:nth-of-type(odd) {
    background-color: #f0f0f0;
}

.table-header, .table-item {
    flex-basis: 25%;
}

.table-item {
    text-align: center;
    padding: 2rem 0;

}

.text-link {
    color: #c24646;
    font-weight: 700;
}

.link-wrapper {
    position: relative;
    display: inline-block;
}

/* GALLERY */

.gallery-container {
    margin: 30px;
    display: flex;
    flex-wrap: wrap;
}

.gallery-image {
    width: 33%;
    height: 20vw;
    overflow: hidden;
    background-color: #000000;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .gallery-image {
        width: 100%;
        height: 40vw;
    }
}

.gallery-image img {
    opacity: 0.6;
    width: 100%;
    transform: scale(1.30);
    height: auto;
    transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.gallery-image img:hover {
    opacity: 1;
    height: auto;
    transform: scale(1.20);
}

.focus-image-background {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s linear,opacity 0.2s linear;
    cursor: pointer;
    z-index: 2;
}

.focus-image-background img {
    position: absolute;
    max-height: 100%;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* RECORDINGS */

.video-item {
    flex-basis: 33%;
}

@media only screen and (max-width: 1000px) {
    .video-item {
        flex-basis: auto;
    }
}

.youtube {
    background-color: #000;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
    margin: 2rem;
}
.youtube img {
    width: 100%;
    top: -16.84%;
    left: 0;
    opacity: 0.7;
}
.youtube .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
}
.youtube .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
}
.youtube img,
.youtube .play-button {
    cursor: pointer;
}
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
    position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0 );
}
.youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.recordings-row {
    padding-bottom: 3rem;
}

/* CONTACTS */

form {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 60%;
}

@media only screen and (max-width: 770px) {
    form {
        width: 90%;
    }
}

input, textarea, .g-recaptcha {
    border-radius: 5px;
    margin-bottom: 20px;
}

input, textarea {
    background-color: #f0f0f0;
    border: solid 1px #f0f0f0;
    padding: 10px;
}

.name-input:focus, .email-input:focus, textarea:focus {
    outline: 0;
    border: solid 1px #c24646;
}

.form-submit, .form-submit:after {
    width: 60%;
    margin: auto;
    color: #c24646;
    border: 2px solid #c24646;
    transition: all 0.3s linear;
}

.form-submit:hover {  
    background-color: #c24646;
    border: 2px solid #c24646;
    color: white;
}

.form-submit:active {
    transition: none;
    color: white;
    border: 2px solid #702929;
    background-color: #702929;
}

.feedback-section {
    position: relative;
    height: 2rem;
    transition: all 1s ease-in-out;
}

.alert {
    color: white;
    padding: 0.5rem;
    width: 90%;
    border-radius: 6px;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.alert-success {
    background-color: #4caf50;
}

.alert-fail {
    background-color: #f44336;
}

.alert-warn {
    background-color: #ffbf00;
}

.alert i {
    float: left;
    color: white;
}

.transparent {
    opacity: 0;
    transform: translateY(3rem);
}

/* FOOTER */

footer {
    background-color: #303030;
    padding: 3rem;
    text-align: center;
}

.social-media-links {
    margin-bottom: 1rem;
}

.social-media-links i {
    font-size: 1.3rem;
    color: white;
    transition: color 0.3s linear;
	padding: 0 1rem;
}

.fa-facebook:hover {
    color: #3b5998 ;
}

.fa-instagram:hover {
    color: #fcaf45;
}

.fa-twitter:hover {
    color: #1DA1F2;
}

.fa-youtube:hover {
    color: #FF0000;
}

.fa-linkedin:hover {
    color: #2867B2;
}

.footer-text {
	color: #e0e0e0;
}
