/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: var(--negru);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(232,180,184,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-content .section-label { color: var(--roz); }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--alb);
  line-height: 1.1;
  margin: 12px 0 18px;
}
.page-hero-content h1 em { font-style: italic; color: var(--roz); }
.page-hero-content p { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 480px; }

/* ===== FILTER BAR ===== */
.gallery-filter-bar {
  background: var(--negru-deep);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0;
  position: sticky;
  top: 70px;
  z-index: 90;
}

.filter-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }

.filter-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.filter-btn:hover { color: var(--roz); }
.filter-btn.active {
  color: var(--roz);
  border-bottom-color: var(--roz);
}

/* ===== GALLERY SECTION ===== */
.gallery-page-section {
  background: var(--negru-deep);
  padding: 60px 0 100px;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 70px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.large {
  grid-column: span 2;
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.gallery-item.large .gallery-img-wrap {
  aspect-ratio: 2 / 1;
}

/* Placeholder (înlocuiți cu <img> când aveți poze) */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }

.gallery-placeholder span {
  font-size: 2rem;
  opacity: 0.4;
}
.gallery-placeholder p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  opacity: 0.5;
  margin: 0;
}

/* Category colors */
.gallery-placeholder.hair   { background: #2a1f2e; color: var(--roz); }
.gallery-placeholder.nails  { background: #1e2230; color: #a8c0e8; }
.gallery-placeholder.makeup { background: #2a1e24; color: var(--roz-deschis); }
.gallery-placeholder.spa    { background: #1e2a26; color: #a8d8c0; }
.gallery-placeholder.lash   { background: #2a2820; color: var(--auriu); }

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,46,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--roz);
  color: var(--negru);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 8px;
  align-self: flex-start;
}

.gallery-overlay p {
  color: var(--alb);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  margin: 0;
  opacity: 1;
}

/* ===== CTA ===== */
.gallery-cta {
  text-align: center;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.gallery-cta p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  background: none;
  border: none;
  color: var(--alb);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .gallery-item.large .gallery-img-wrap { aspect-ratio: 1 / 1; }
  .filter-btn { padding: 16px 14px; font-size: 0.72rem; }
}