/* ===== Shared Inner Page Styles ===== */
/* Imports main style.css variables and adds page-specific layouts */

/* Page hero banner */
.page-hero {
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-mid) 50%, #1a1040 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-light);
  margin-bottom: 16px;
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.page-hero .breadcrumb {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  margin-bottom: 20px;
  position: relative;
}
.page-hero .breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* Page content area */
.page-content {
  padding: 80px 0;
  background: var(--bg);
  color: var(--text);
}
.page-content h2 {
  font-size: 1.6rem;
  color: #fff;
  margin: 48px 0 16px;
}
.page-content h2:first-of-type { margin-top: 0; }
.page-content h3 {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin: 32px 0 12px;
}
.page-content p,
.page-content li {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.page-content ul {
  padding-left: 24px;
  margin-bottom: 20px;
}
.page-content li { margin-bottom: 8px; }
.page-content a:not(.btn) {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content a.btn {
  text-decoration: none;
  color: var(--royal); /* Restores dark text on gold button */
}
.page-content strong { color: rgba(255,255,255,0.85); }
.page-content .last-updated {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  font-style: italic;
  margin-bottom: 32px;
  display: block;
}

/* ===== Collections Grid ===== */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}
.collection-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.collection-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.collection-info {
  padding: 32px;
}
.collection-info h2 {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
}
.collection-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.collection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.collection-tag {
  padding: 5px 14px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.collection-info .btn {
  display: inline-block;
}

/* ===== Services Grid ===== */
.services-section {
  padding: 80px 0;
  background: var(--surface-alt);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.service-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.25);
}
.service-card .service-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===== Single Collection Page ===== */
.collection-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}
.collection-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.collection-gallery-main img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}
.collection-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.collection-gallery-grid img {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}
.collection-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.collection-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.collection-features {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.collection-features h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
  .collections-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .collection-detail { grid-template-columns: 1fr; gap: 40px; }
}
