/* ─── BASE (override for fashion show pages) ─── */
body { background: #f9f9f9; }

/* ─── FOOTER LAYOUT (fashion show: 3 columns) ─── */
.footer-grid { grid-template-columns: 2fr 1fr 1fr; }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 50px 40px 30px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.breadcrumb {
  font-size: 13px;
  color: #7c7b7b;
  margin-bottom: 14px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #7c7b7b;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: #487657; }

.breadcrumb span { margin: 0 8px; }

.page-title {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #487657;
}

/* ─── GALLERY ─── */
.gallery-section {
  padding: 40px 40px 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  background: #e8e8e8;
  aspect-ratio: 3/4;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.2s;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #f4f4f4;
  font-size: 36px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  line-height: 1;
  transition: color 0.2s;
  z-index: 1001;
}

.lightbox-close:hover { color: #487657; }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #f4f4f4;
  font-size: 42px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  line-height: 1;
  transition: color 0.2s;
  padding: 10px 20px;
  z-index: 1001;
  user-select: none;
}

.lightbox-nav:hover { color: #487657; }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #a0a0a0;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-section { padding: 30px 20px 50px; }
  .page-header { padding: 30px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .lightbox-nav { font-size: 28px; padding: 8px 12px; }
}
