
    body {
      background: #f9f8f7;
      font-family: Helvetica, sans-serif;
      color: #1a1a1a;
      padding: 2rem;
      margin: 0;
    }

    h1 {
      font-family: 'EB Garamond', serif;
      font-style: italic;
      font-size: 3rem;
      text-align: left;
      margin-bottom: 2rem;
    }

  .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

    .gallery-item {
      position: relative;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
      display: block;
    }

    .gallery-item:hover img {
      transform: scale(1.02);
    }

    .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      padding: 0.5rem;
      font-size: 0.85rem;
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 0 0 6px 6px;
      text-align: center;
      letter-spacing: -1px;
    }

    .gallery-item:hover .caption {
      opacity: 1;
    }

    /* Lightbox Styles */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 999;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      align-items: center;
      justify-content: center;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    .lightbox:target {
      display: flex;
    }

    footer {
      text-align: center;
      font-size: 0.8rem;
      color: #888;
      margin-top: 4rem;
      padding-bottom: 1rem;
    }
     nav {
      text-align: center;
      margin-bottom: 2rem;
    }

    nav a {
      margin: 0 1rem;
      text-decoration: none;
      color: #333;
      font-size: 0.95rem;
      letter-spacing: -1.5px;
    }

    nav a:hover {
      text-decoration: underline;
    }
    .arrow {
      font-size: 1rem;
      color: #4b3b82;
      text-decoration: none;
      border: 1px solid #4b3b82;
      padding: 0.5rem 1rem;
      border-radius: 2rem;
      transition: all 0.3s ease;
      letter-spacing: -1.5px;
    }
    .arrow:hover {
      background: #4b3b82;
      color: white;
    }
  