body {
    background-color: #001724;
}

.image-animenz {
    flex: 2;
    overflow: hidden;
}

.image-animenz img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/animenz2.jpg') no-repeat center center;
    background-size: cover;
}

.hero-text h1 {
    margin-top: -90px;
    font-family: "Yeseva One", serif;
    font-weight: 300;
    font-style: normal;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-size: 100px;
    color: #BAE7FF;
}

.hero-text h2 {
    margin-top: -90px;
    font-family: "Yeseva One", serif;
    font-weight: 300;
    font-style: normal;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-size: 50px;
    color: #BAE7FF;
}

.bgtext {
    display: flex;
    flex-direction: column;
}

.hero-text {
    width: 80%;
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-text h1 {
    margin-top: 0;
}

.special-text {
    font-family: "Yeseva One", serif;
    font-size: 50px;
    color: #BAE7FF;
    font-weight: 300;
    padding-right: 10px;
    letter-spacing: 0px;
}

.about-section-text {
    margin: 0 auto;
    padding: 100px;
    width: 65%;
}


.container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 100px;
}

.text-section {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    padding-top: 0;
    padding-bottom: 0;
}

.image-section img {
    max-width: 400px;
    display: block;
    margin: 0;
    margin-top: 35px;
}

.image-section {
    flex: 1;
}

.text-section h1 {
    font-family: "Yeseva One", serif;
    font-weight: 300;
    font-style: normal;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-size: 50px;
}

.text-section p::before {
    content: "•";
    position: absolute;
    left: 0;
    line-height: 1;
    padding-top: 5px;
}

.text-section p {
    position: relative;
    padding-left: 20px;
    margin-top: 0;
}

.photo-container img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    margin-top: 20px;
}

.related-pianists {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.pianist-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pianist-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.pianist-card:hover img {
    filter: grayscale(0%);
}

.pianist-card img {
    width: 300px;
    height: 350px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.pianist-card h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.related-section-title {
    display: flex;
    justify-content: center;
    font-size: 30px;
    padding-bottom: 50px;
    padding-top: 50px;
}

/*mobile*/
@media (max-width: 820px) {
    .hero-section {
        height: 100%;
    }

    .hero-text h1 {
        font-size: 60px;
        margin-top: 0;
    }

    .hero-text h2 {
        font-size: 40px;
        margin-top: 10px;
    }

    .container {
        flex-direction: column;
        padding: 20px 10px;
    }

    .text-section {
        max-width: 100%;
        padding: 20px;
    }

    .image-section img {
        max-width: 100%;
        height: auto;
        margin-top: 15px;
    }

    .container {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 50px;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 100px;
    }

    .hero-text {
        position: absolute;
        top: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: left;
    }

    .about-text {
        padding: 0;
        margin: 0;
    }

    .photo-container img {
        height: auto;
    }
}

@media (max-width: 600px) {
    .hero-section {
        height: 100%;
    }

    .hero-text h1 {
        font-size: 50px;
    }

    .hero-text h2 {
        font-size: 40px;
    }

    .container {
        padding: 10px;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }

    .container {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 50px;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 100px;
    }

    .hero-text {
        position: absolute;
        top: 85%;
        transform: translate(-50%, -50%);
        text-align: left;
    }

    .about-text {
        padding: 0;
        margin: 0;
    }

    .photo-container img {
        height: auto;
    }
}