/* style.css */

body {
    margin: 0;
    font-family: "Noto Serif SC", serif;
    background: #f7f3e8;
    color: #333;
  }
  
  .site-header {
    background-color: #3e2f1c;
    color: #fdf2d0;
    padding: 1rem;
    text-align: center;
  }
  
  .site-header h1 {
    margin: 0;
    font-size: 2rem;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.5rem;
  }
  
  nav a {
    text-decoration: none;
    color: #fdf2d0;
    font-weight: bold;
  }
  
  .intro {
    background: url('bg.png') no-repeat center/cover;
    padding: 6rem 2rem 4rem;
    text-align: center;
    color: #fff;
    background-blend-mode: multiply;
    background-color: rgba(0,0,0,0.4);
  }
  
  .intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px #000;
  }
  
  .intro p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 2px #000;
  }
  
  .profile-wrapper {
    background: #f7f3e8;
    padding: 4rem 2rem 2rem;
  }
  
  .profile-block {
    background: #fff;
    padding: 2.5rem;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }
  
  .profile-image img {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 50px;
    margin-right: 2rem;
  }
  
  .profile-text {
    max-width: 600px;
  }
  
  .profile-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #5a3c1b;
  }
  
  .profile-text ul {
    padding-left: 1.2rem;
    line-height: 1.6;
  }
  
  .life-stages-wrapper {
    background: #fff;
    padding: 3rem 2rem;
    max-width: 960px;
    margin: 3rem auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 16px;
  }
  
  .life-stages-wrapper h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #5a3c1b;
  }
  
  .stage-block {
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 2.5rem;
  }
  
  .stage-block h3 {
    font-size: 1.3rem;
    line-height: 5px;
    color: #4b331a;
    margin-bottom: 0.5rem;
    border-left: 4px solid #bfa063;
    padding-left: 0.6rem;
    position: relative;
    display: inline-block;
  }
  
  .stage-block h3::before {
    content: "";
    position: absolute;
    left: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-image: url('decor-icon.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .site-footer {
    background-color: #2b2116;
    color: #e9decf;
    padding: 2rem 2rem 1rem;
    font-size: 0.95rem;
  }
  
  .footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  
  .footer-column {
    width: 33.33%;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  
  .footer-column:nth-child(2) {
    padding-left: 4rem;
  }
  
  .footer-column h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #f4e8d5;
  }
  
  .footer-column p,
  .footer-column a {
    color: #e9decf;
    line-height: 1.6;
    text-decoration: none;
  }
  
  .footer-column a:hover {
    text-decoration: underline;
    color: #f4d9b5;
  }
  
  .footer-column ul {
    padding: 0;
    list-style: none;
  }
  
  .footer-column li {
    margin-bottom: 0.4rem;
  }
  
  .footer-column li a {
    color: #e9decf;
  }
  
  .footer-column li a:hover {
    color: #f4d9b5;
  }
  
  .copyright {
    text-align: center;
    color: #a89f93;
    font-size: 0.8rem;
    margin-top: 1.5rem;
  }
  
  #stage1, #stage2, #stage3, #stage4 {
    scroll-margin-top: 100px;
  }

  .page-hero {
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.45);
    display: inline-block;
    padding: 2rem;
    border-radius: 10px;
  }
  
  .page-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
  }
  
  .page-content h3 {
    margin-top: 2rem;
    font-size: 1.3rem;
    color: #5a3c1b;
  }
  
  .full-width-img {
    width: 100%;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .back-button {
    text-align: center;
    margin: 3rem 0;
  }
  
  .back-button a {
    background: #5a3c1b;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
  }
  
  .back-button a:hover {
    background: #7b5433;
  }
  
  