* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

body {
    background-color: #FAC73D;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.content {
width: 80%;
    max-width: 1200px; margin: auto}

.flex {
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
}

h1, h2, h3 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
    text-transform: uppercase;
    padding-bottom: 20px;
}

h2 {
    font-size: 30px
}

h3 {
    font-size: 23px;
}

p {
    padding-bottom: 10px;
}

.lumanosimo-regular {
  font-family: "Lumanosimo", cursive;
  font-weight: 400;
  font-style: normal;
}

.btn {
    background-color: #fff;
    padding: 10px 30px; 
    display: inline-block; 
    color: black; 
    border-radius: 4px
}

.btn img {
    float: left;
position: relative; 
top: 1px}

.cta {
    text-align: center;
}

header ul a {
    color: black
}

header img {
    width: 100%;
}

[aria-current]:not([aria-current="false"]) {
    font-weight: bold; 
    border-bottom: dashed 2px black; 
    padding-bottom: 2px;
}

.top {
    text-align: center;
    padding: 100px 0
}

.top h1 {text-transform: uppercase;
    font-size: 45px;
}

.top h1 span {
    text-transform: lowercase;
}

.top p {
    padding-bottom: 20px
}

.one {
    padding-bottom: 100px;
}

.one ul {
    padding: 50px 0
}

.one ul li {
    width: 45%;
}

.one ul li img {
    width: 100%;
}

.quote {
    background-color: #fff;
    padding: 100px 0; 
    
}
.quote p {
    font-size: 25px;
    font-style: italic; 
    padding: 0 50px
}

.quote img {
    width: 20%;
}

.quote p {
    width: 80%;
    box-sizing: border-box; 
    display: flex; 
    flex-direction: column; 
    justify-content: center
    
}

.one ul li img {
    padding-bottom: 20px;
}

.two {
    padding: 100px 0; 
}

.two ul {
    padding-bottom: 50px;
}

.two ul li {
    width: 45%;
}

.two ul li img {
    width: 100%;
}

.two .cta {
    padding-top: 20px;
}


.benefit {
    background-color: #462510;
    padding: 100px 0; 
    text-align: center;
}

.benefit h2 {
    color: white
}

.benefit ul li {
    width: 20%;
    text-align: center;
}

.benefit ul li img {
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 100px; 
    padding: 20px; 
    box-sizing: border-box
}

.benefit ul li p {
    color: white
}



.radius {
    background-color: #fff;
    padding: 100px 0; 
}

.radius ul li {
    width: 45%;
}

.radius ul li img {
    width: 100%;
}

.radius ul li:last-child {
    width: 45%;
}

.prefooter {
    text-align: center;
    padding: 100px 0; 
    background-image: url(img/BG_klavierunterricht.jpeg); 
    background-position: top;
    background-repeat: repeat-x; 
    background-size: 300px; 
}




.playground {
    margin-top: -100px;
}

.piano {
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    width: max-content;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.key {
    position: relative;
    border: 1px solid black;
    cursor: pointer;
    display: inline-block;
    box-sizing: border-box;
}

.white {
    width: 60px;
    height: 200px;
    background-color: white;
    z-index: 1;
}

.black {
    width: 40px;
    height: 120px;
    background-color: black;
    position: absolute;
    z-index: 2;
    top: 0;
}

/* Korrekte Position der schwarzen Tasten */
.key.white:nth-child(1) ~ .key.black:nth-child(10) {
    left: 65px; /* C#4 zwischen C4 und D4 */
}

.key.white:nth-child(2) ~ .key.black:nth-child(11) {
    left: 125px; /* D#4 zwischen D4 und E4 */
}

.key.white:nth-child(4) ~ .key.black:nth-child(12) {
    left: 245px; /* F#4 zwischen F4 und G4 */
}

.key.white:nth-child(5) ~ .key.black:nth-child(13) {
    left: 305px; /* G#4 zwischen G4 und A4 */
}

.key.white:nth-child(6) ~ .key.black:nth-child(14) {
    left: 365px; /* A#4 zwischen A4 und B4 */
}

.key.white:nth-child(8) ~ .key.black:nth-child(15) {
    left: 485px; /* C#5 richtig zwischen C5 und D5 */
}

.key span {
    font-size: 12px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
}

.black span {
    color: white;
}

.key.active {
    background-color: yellow;
}

.black.active {
    background-color: orange;
}

















footer {
    font-size: 10px;
    text-align: center;
    background-color: #333;
    color: white; 
    padding: 50px 0; 
}

footer a {
    color: white
}





/* Styling für den Burger-Button */
.burger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 90px;
    right: 20px;
    background: none;
    border: none;
    font-size: 50px;
    z-index: 999999; 
}

/* Mobile Ansicht - Navigation verstecken */
@media (max-width: 768px) {
    .burger {
        display: block;
    }

    #nav-menu.hidden {
        display: none;
    }
    
    nav ul {
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.26); 
    }

    nav ul {
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
        z-index: 2; 
        box-sizing: border-box; 
    }

    nav ul li {
        margin-bottom: 10px;
        line-height: 50px;
    }

    nav ul li a {
        font-size: 18px;
        color: black;
    }
}





.page_faq, 
.page_probestunde,
.page_orte, 
.page_kontakt{
    padding: 100px 0; 
}

.page_faq h2, 
.page_probestunde h2,
.page_orte h2, 
.page_kontakt h2{
    font-size: 20px;
    padding-bottom: 10px;
}

.page_faq p,
.page_probestunde p,
.page_orte p,
.page_kontakt p{
    padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
    
    .content {
        width: 90%;
    }
    .top h1 {
        font-size: 30px;
    }
    
    .one ul li {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .quote .flex {
        display: block
    }
    
    .quote p {
        padding: 0; 
        width: 100%;
    }
    
    .playground {
        display: none; 
    }
    
    .two ul li {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .benefit ul li {
        width: 100%; 
        margin-bottom: 20px;
    }
    
    .radius ul li {
        width: 100%;
    }
    
    .radius ul li:last-child {
        width: 100%;
    }
}
