

  .fade-in-text {
    text-align:center;
    font-family:'Playfair Display SC', serif;
    font-weight:400;
    font-size:36px;
    margin:20px 0;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
  }
  @keyframes fadeIn { to { opacity: 1; } }

  /* Masonry */
  .masonry-gallery {
    column-count: 5;
    column-gap: 8px;
    max-width: 1400px;
    margin: 30px auto;
  }
  @media (max-width: 1200px){ .masonry-gallery { column-count:4; } }
  @media (max-width: 992px){ .masonry-gallery { column-count:3; } }
  @media (max-width: 768px){ .masonry-gallery { column-count:2; } }
  @media (max-width: 480px){ .masonry-gallery { column-count:1; } }

  .masonry-gallery img {
    width: 100%;
    margin-bottom: 8px;
    border-radius: 6px;
    break-inside: avoid;
    cursor: zoom-in;
    transition: all 0.3s ease;
  }
  .masonry-gallery img:hover { transform: scale(1.01); }

  /* Lightbox */
  .lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
  }
  .lightbox-overlay.active { display: flex; }
  .lightbox-header {
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  .lightbox-close {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
  }
  .lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    user-select: none;
  }
  .lightbox-arrow.left { left: 20px; }
  .lightbox-arrow.right { right: 20px; }
  .lightbox-overlay img {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
    touch-action: pan-y;
  }
