
 /* Horizontal Menü */
    .gallery-menu {
      display: flex;
      gap: 32px;
      list-style: none;
      padding: 20px 0;
      margin: 0;
      justify-content: center;
      font-weight: 400;
    }

    .gallery-menu a {
      text-decoration: none;
      color: var(--text);
      white-space: nowrap;
    }

    .gallery-menu a:hover {
      color: var(--primary);
    }

    /* Dropdown */
    .gallery-menu li {
      position: relative;
    }
    .gallery-menu li ul {
      display: none;
      position: absolute;
      top: 28px;
      left: 0;
      background: var(--bg-soft);
      padding: 8px 0;
      list-style: none;
      border-radius: 3px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      min-width: 150px;
    }
    .gallery-menu li:hover > ul {
      display: block;
    }
    .gallery-menu li ul li {
      padding: 8px 16px;
    }
    .gallery-menu li ul li a {
      display: block;
      color: var(--text);
    }
    .gallery-menu li ul li a:hover {
      color: var(--primary);
    }
.gallery-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.gallery-item {
  width: calc(33.333% - 1rem);
  text-align: center;
}

.gallery-item img {
  width: 100%;
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 4px;
}

.caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #444;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
}

.lightbox-caption {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.1rem;
}

.hidden {
  display: none;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}
