@charset "utf-8";
/* CSS Document */
.piano-accordion{
    display:flex;
    max-width:1100px;
    justify-content:flex-start;
    max-height:820px;
    overflow:hidden;
	background: transparent;
	filter:drop-shadow(0 8px 8px rgba(0,0,0,0.40));
	margin-right:4%;
}

.piano-background {display:flex;
    justify-content: flex-end;
    align-items: center;
    background-image: url('../images/yamaha-grand-horizontal.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    height: 850px;
    width:400px;
    overflow:hidden;
}

.piano-wrapper {
    display:flex;
    max-width:700px;
    background-color: black; /* fallback color */
    padding:0px 0px 0px 0px;
  
    align-items:center;
    border-radius: 0 15px 0px 0;
    border-top: 5px solid #11120d;
    border-right: 5px solid #11120d;
    overflow: hidden;
}	

.accordion {
    width:100%;
    margin-right:px;
    border-left:4px solid #c62a39;
}
.accordion-item {
    cursor: pointer;
    padding: 15px 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: background 0.3s border-bottom 0.3s;
    position:relative;
    min-height:80px;
    border-top: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    border-radius: 0 8px 8px 0;
    background-color: whitesmoke;
    box-shadow: 2px 0px 6px rgba(0, 0, 0, 0.6);
}

.accordion-item:hover {background:white;}


.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background:#1d1d1d;
    transition:padding 0.4s ease;
    border-radius:0 8px 8px 0;
    color:whitesmoke;
}

.accordion-content.open {
    max-height: 300px;
    padding: 20px 15px 15px 15px;

}

.accordion-black-key {
    position:absolute;
    bottom:-17px;left: 0;
    width:35%;
    height:34px;
    background: linear-gradient(to right, #424242, #000000); 
	background-image:url("../icons/black-key.webp");
	background-repeat: no-repeat;
	background-size:cover;
	background-position: right center;
    z-index:5;
    border-radius:0 8px 8px 0;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

h3.faq {
    padding-right: 10px;
    width: 90%;
    text-align: right;
    font-size: 1.1rem;
}

.open h3.faq {
    font-style: italic;
}
.arrow {transition: transform 0.4s;}

.open .arrow {
    transform: rotate(180deg);
    color: #D55140;
}

@media (min-width: 768px){
	.piano-accordion{max-height:680px;}
}

