/* Gallery Section */
.gallery-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, transparent 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--accent) / 0.2));
  color: hsl(var(--accent));
  opacity: 0.7;
}

.gallery-placeholder svg {
  width: 60%;
  height: 60%;
}

.gallery-item p {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: hsl(var(--text-primary));
  background: var(--card-bg);
}

/* Instagram Button Container */
.gallery-social {
  margin-top: 2.5rem;
  text-align: center;
}

/* Button Base */
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: hsl(var(--accent));
  text-decoration: none;
  transition: all var(--transition-base);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Icon sizing */
.icon-btn svg {
  width: 55%;
  height: 55%;
}

/* Hover effects */
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

/* Click active */
.icon-btn:active {
  transform: scale(0.95);
}
