/*ryuchi*/
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Yeseva One", serif;
    color: #C3B26D; 
    background: black; 
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-section {
  width: 100%;
  height: 100vh; 
  background: url(../images/ryuchi_work.jpg) no-repeat center center/cover; 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Title Styling */
.title-ryuchi {
  font-size: 95px; 
  font-weight: 100;
  margin: 30px;
  line-height: 1;
  padding: 20px;
  color: #C3B26D;
  
}

/* Subtitle Styling */
.subtitle {
  font-size: 32px; 
  font-weight: 100;
  margin: 30px ;
  line-height: 1.2;
  padding: 20px;

}
.work-section {
    max-width: 1200px;
    margin: 0 auto;
    padding:50px 20px;
  }
  
  .work-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    justify-content: space-between;
    width: 100%;
  }
  
  .work-item.left {
    flex-direction: row;
  }
  
  .work-right {
    
     display: flex;
    align-items: center;
    margin-bottom: 40px;
    justify-content: space-between;
    width: 100%;
  }
  
  .work-image img {
    width: 300px;
    height: auto;
    border-radius: 8px;
  }
  
  .work-last {
    max-width: 750px;
    padding: 20px;
  }
  
  .work-last h3{
    font-size: 1.2rem;
    color: #C3B26D;
  }

  .work-last h2{
    font-size: 1.8rem;
    color: #C3B26D;
  }

  .work-last p{
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
  }

  .work-content {
    max-width: 750px;
    padding: 20px;
  }
  
  .work-content h3 {
    font-size: 1.2rem;
    color: #C3B26D;
  }
  
  .work-content h2 {
    font-size: 1.8rem;
    margin: 10px 0;
  }
  
  .work-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
  }

/*related pianist*/
.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;
}


@media (max-width: 768px) {

  .hero-section {
      height: 60vh; 
      justify-content: center; 
      text-align: center;
      width: 100%;
      background-position: 70% 70%;
      height:100vh ;
  }

  .title-ryuchi {
      font-size: 60px; 
      margin: 10px;
      padding: 10px;
      text-align: left;
  }

  .subtitle {
      font-size: 30px; 
      margin: 10px auto;
      padding: 10px;
      text-align: center;
  }

  /* Work Section */
  .work-section {
      padding: 10px; 
  }

  .work-right {
    
    flex-direction: column-reverse;
  
  }

  .work-item {
    flex-direction: column !important; 

    text-align: center;
  }


  .work-image img {
    margin-bottom: 20px
}

.work-right{
  flex-direction: column;
   flex-direction: column-reverse;
   text-align: center;
}

 .work-last{
   padding: 10px;
  }

  .work-last h2{
    font-size: 40px;
  }

  .work-last p{
    font-size: 20px; 
  }

  .work-content {
    
      padding: 10px;
  }

  .work-content h2 {
      font-size: 40px; 
  }

  .work-content p {
      font-size: 20px; 
  }

  /* Pianist Section */
  .pianist-container {
      gap: 20px; 
      margin-bottom: 50px;
  }

  .pianist {
      width: 90%; 
      height: auto; 
      border-radius: 10px;
  }

  .pianist:nth-child(1) .name,
  .pianist:nth-child(2) .name {
      bottom: 30px; 
  }
}

 
