/* ===============================
   GALLERY PAGE
================================ */

.gallery-section {
  padding: 60px 8% 80px;
}

.gallery-container {
  max-width: 720px;
  margin: 0 auto;
}

.gallery-coming-soon {
  text-align: center;
  padding: 48px 32px;
  background: rgba(18, 20, 40, 0.85);
  border: 1px solid rgba(123, 92, 255, 0.3);
  border-radius: 20px;
}

.gallery-coming-soon-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  background: rgba(123, 92, 255, 0.2);
  padding: 6px 14px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.gallery-coming-soon h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #7b5cff, #5f8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-coming-soon p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}

.gallery-coming-soon p:last-child {
  margin-bottom: 0;
}

.gallery-coming-soon a {
  color: #7b5cff;
  text-decoration: none;
}

.gallery-coming-soon a:hover {
  text-decoration: underline;
}

/* Future grid (hidden until used) */
.gallery-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid[aria-hidden="false"] {
  display: grid;
}
