/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Inter", sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* ---------- HEADER ---------- */
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    font-size: 0.95rem;
  }
  
  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    text-align: center;
    margin-bottom: 6rem;
  }
  
  .hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 1;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-top: -2rem;
  }
  
  .hero-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .hero-images img {
    width: 300px;
    height: 400px;
    object-fit: cover;
  }
  
  /* ---------- ABOUT ---------- */
  .about {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
  }
  
  .about h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    flex: 1 1 150px;
  }
  
  .about p {
    flex: 2 1 400px;
    font-size: 0.95rem;
    color: #444;
  }
  
  /* ---------- PROJECTS (IMAGE GRID) ---------- */
  .projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
  }
  
  .project {
    display: block;
    text-decoration: none;
  }
  
  .project img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: #eee;
    border-radius: 3px;
    transition: opacity 0.2s ease;
  }
  
  .project:hover img {
    opacity: 0.9;
  }
  
  .project-caption {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #444;
    text-align: left;
  }
  
  /* ---------- FOOTER ---------- */
  .site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 2rem 5%;
    border-top: 1px solid #eee;
    color: #444;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .site-footer nav a {
    margin-left: 1.5rem;
  }
  
  /* ---------- BUTTON (optional for résumé download) ---------- */
  .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #222;
    color: #fff;
    border-radius: 3px;
    font-size: 0.9rem;
    transition: background 0.2s ease;
  }
  
  .button:hover {
    background: #444;
  }
  
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 700px) {
    .hero-images img {
      width: 200px;
      height: 280px;
    }
  
    .hero-title {
      font-size: clamp(2.5rem, 8vw, 4rem);
    }
  
    .site-header {
      flex-direction: column;
      gap: 1rem;
    }
  
    .site-footer {
      flex-direction: column;
      text-align: center;
    }
  }

  /* ---------- RESUME PAGE ---------- */
.resume-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    text-align: center;
  }
  
  .resume-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    display: inline-block;
    padding-bottom: 0.5rem;
  }
  
  .resume-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .resume-image-wrapper img {
    max-width: 100%;
    width: 800px;
    height: auto;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  