
/*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);
}

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

/* Text Container */
.text-container {
    max-width: 600px;
}

/* Title Styling */
.title-ryuchi {
    font-size: 95px; /* Adjust size for ABOUT */
    font-weight: 100;
    margin: 0;
    text-align: center;
    color: #C3B26D;
    padding: 50px;
}

/* Subtitle Styling */
.subtitle {
    font-size: 80px; /* Bigger for the name */
    font-weight: 100;
    margin: 30px;
    padding: 20px;
    text-align: left;

}

  /*paragraph*/

  .special-text {
    font-family: "Yeseva One", serif;
    font-size: 48px;
    color: #C3B26D;
    font-weight: 300;
    padding-right: 10px;
}

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

p {
    font-family: "Yeseva One", serif;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.5;
    color: #ffffff;
}

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

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
}

.title {
  font-size: 3.5rem;
  font-weight: 100;
  margin-bottom: 60px;
  color: #FFF;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 默认两列布局 */
  gap: 50px 30px; /* 设置行间距和列间距 */
  width: 100%;
  max-width: 1200px;
}

.work-item {
  text-align: center;
  position: relative;
}

.work-item img {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

.work-item img:hover {
  filter: brightness(1.5);
}

.work-item .caption {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #bfbf70;
}

.work-item .arrow {
  color: #bfbf70;
  margin-top: 10px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.work-item:hover .arrow {
  transform: translateX(10px);
}

/*timeline*/

  .timeline {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    color: #fff;
}

.timeline h1 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    font-weight: bold;
    position: relative;
}

  .event {
    margin: 30px 0;
    position: relative;
}

.event h2 {
    font-size: 2.5rem;
    color: #C3B26D;
}

.event p {
    font-size: 17px;
    margin-top: 10px;
    line-height: 1.8;
}

/*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 */
  .hero-section {
    justify-content: center; 
    text-align: center;
    width: 100%;
    height:100vh;

  }

  .title-ryuchi {
      font-size: 80px;
      padding: 20px;
      margin: 10px auto;
  }

  .subtitle {
      font-size :60px;
      text-align: center;
  }

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

  /* About Section */
  .about-section-text {
      padding: 40px 20px;
      width: 90%;
  }

  .container {
    padding: 30px 15px; /* 缩小容器内边距 */
}

.title {
    font-size: 2.5rem; /* 缩小标题字体 */
    margin-bottom: 40px;
}

.work-grid {
    grid-template-columns: 1fr; /* 改为单列布局 */
    gap: 30px 20px; /* 调整行间距和列间距 */
}

.work-item img {
    max-width: 200px; /* 图片缩小 */
}

.work-item .caption {
    font-size: 1rem; /* 缩小文字大小 */
}

.work-item .arrow {
    font-size: 1.2rem; /* 缩小箭头大小 */
}

  .timeline h1 {
      font-size: 3rem;
  }

  .event h2 {
      font-size: 2rem;
  }

  /* Pianist Section */
  .pianist-container {
      flex-direction: column;
      align-items: center;
      gap: 30px;
  }

  .pianist {
      width: 80%;
      height: auto;
  }

  .pianist img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

}
