.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 80px auto 40px; /* top margin 100px, left/right auto, bottom 40px */
    padding: 0 15px;
  }
  
  body {
    background-color: #0B1315; 
  }
  
  
  .gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* ensures square shape */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  
  .gallery-item img,
  .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .page-title {
    text-align: center;
    margin: 150px 0 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .page-title h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    font-weight: bold;
    color: #d4af37;
  }
  
  
  /* Responsive for smaller screens */
  @media (max-width: 768px) {
    .gallery {
      grid-template-columns: repeat(2, 1fr);
      max-width: 600px;
    }
  }
  
  @media (max-width: 480px) {
    .gallery {
      grid-template-columns: 1fr;
      max-width: 300px;
    }

  }
  