.gallery-wrapper {
  max-width: 1200px;
  margin: 20px auto;
  padding: 10px;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.gallery-btn {
  padding: 10px 25px;
  border: 2px solid #3498db;
  background: transparent;
  color: #3498db;
  cursor: pointer;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}

.gallery-btn.active {
  background: #3498db;
  color: white;
}

.gallery-content {
  display: none;
}

.gallery-content.active {
  display: block;
}

/* Responsive Grid */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.grid-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  background: #eee;
  aspect-ratio: 1 / 1; /* Makes photos square */
}

.grid-item img, .grid-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


