/* Main Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 48px 120px;
  }
  
  /* Page Header */
  .page-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
  }
  
  .breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .breadcrumb a:hover {
    color: var(--accent-primary);
  }
  
  .breadcrumb-separator {
    color: var(--line-subtle);
  }
  
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--text-main);
  }
  
  .section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .gallery-stats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-soft);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 24px;
  }
  
  /* Gallery Grid */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
  }
  
  .gallery-item {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-soft);
    cursor: pointer;
    box-shadow: 0 4px 20px var(--shadow-soft);
    transition: var(--transition);
    opacity: 0;
    animation: galleryItemFadeIn 0.6s ease-out forwards;
  }
  
  @keyframes galleryItemFadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-hover);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.05) 50%,
      rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gallery-item:hover .gallery-item-overlay {
    opacity: 1;
  }
  
  .gallery-zoom-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transform: scale(0.8);
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  
  .gallery-item:hover .gallery-zoom-icon {
    transform: scale(1);
  }
  
  /* Load More Button */
  .load-more-container {
    text-align: center;
    padding: 40px 0;
    display: none;
  }
  
  .load-more-container.loading {
    display: block;
  }
  
  .loader {
    display: inline-flex;
    gap: 12px;
    align-items: center;
  }
  
  .loader-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: loaderBounce 1.4s infinite ease-in-out;
  }
  
  .loader-dot:nth-child(1) {
    animation-delay: -0.32s;
  }
  
  .loader-dot:nth-child(2) {
    animation-delay: -0.16s;
  }
  
  @keyframes loaderBounce {
    0%, 80%, 100% {
      transform: scale(0);
    }
    40% {
      transform: scale(1);
    }
  }
  
  /* Lightbox */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: zoom-out;
    padding: 40px;
    animation: lightboxFadeIn 0.3s ease-out;
  }
  
  @keyframes lightboxFadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .lightbox.active {
    display: flex;
  }
  
  .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: lightboxZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  @keyframes lightboxZoomIn {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.8);
  }
  
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-main);
    transition: var(--transition);
    z-index: 10;
  }
  
  .lightbox-close:hover {
    background: white;
    transform: rotate(90deg);
  }
  
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-main);
    transition: var(--transition);
    z-index: 10;
  }
  
  .lightbox-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
  }
  
  .lightbox-prev {
    left: 20px;
  }
  
  .lightbox-next {
    right: 20px;
  }
  
  /* Loading State */
  .gallery-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    gap: 12px;
  }
  
  .loading-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: loadingBounce 1.4s infinite ease-in-out;
  }
  
  .loading-dot:nth-child(1) {
    animation-delay: -0.32s;
  }
  
  .loading-dot:nth-child(2) {
    animation-delay: -0.16s;
  }
  
  @keyframes loadingBounce {
    0%, 80%, 100% {
      transform: scale(0);
    }
    40% {
      transform: scale(1);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .container {
      padding: 60px 24px 80px;
    }
  
    .page-header {
      margin-bottom: 60px;
    }
  
    .section-title {
      font-size: 40px;
    }
  
    .section-subtitle {
      font-size: 16px;
    }
  
    .gallery {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .lightbox {
      padding: 20px;
    }
  
    .lightbox-nav {
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
  
    .lightbox-close {
      top: 10px;
      right: 10px;
      width: 40px;
      height: 40px;
    }
  }