/* ================================================
   CHARCUTERIE VIEW CSS — Priya's Spize Works
   ================================================ */

/* Page hero background */
#view-charcuterie .page-hero-bg {
  background-image: url('https://images.unsplash.com/photo-1604503468506-a8da13571cc2?w=1920&q=80');
}

/* ---- SERVICE BLOCK ---- */
.service-block { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; min-height: 550px; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-image { height: 100%; min-height: 500px; overflow: hidden; position: relative; }
.service-block-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-block:hover .service-block-image img { transform: scale(1.04); }
.service-block-content { padding: 5rem 4rem; }
.section-dark .service-block-content { background: var(--black); }
.section-light .service-block-content { background: var(--cream); }
.service-block-content .section-title { color: inherit; }
.service-block-content p { font-size: 0.95rem; line-height: 1.9; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.section-light .service-block-content p { color: rgba(10,10,10,0.65); }
.pricing-hint {
  display: inline-block; background: rgba(200,169,81,0.12); border: 1px solid rgba(200,169,81,0.3);
  color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem; margin-bottom: 1.5rem;
}
.features-list { list-style: none; margin-bottom: 1.8rem; }
.features-list li { font-size: 0.87rem; color: rgba(255,255,255,0.65); padding: 0.4rem 0; display: flex; align-items: center; gap: 0.6rem; }
.section-light .features-list li { color: rgba(10,10,10,0.6); }
.features-list li::before { content: ''; display: block; width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }

/* Charcuterie-specific buttons */
.btn-outline-dark { background: transparent; color: var(--black); border: 2px solid var(--black); display: inline-flex; align-items: center; padding: 0.9rem 2.2rem; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; transition: all 0.3s; cursor: pointer; }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); display: inline-flex; align-items: center; padding: 0.9rem 2.2rem; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; transition: all 0.3s; cursor: pointer; border: none; }
.btn-dark:hover { background: #333; transform: translateY(-2px); }

/* ---- PORTFOLIO GRID ---- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.portfolio-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0); transition: background 0.3s; display: flex; align-items: flex-end; padding: 1.5rem; }
.portfolio-item:hover .portfolio-overlay { background: rgba(10,10,10,0.6); }
.portfolio-label { color: white; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0; transition: opacity 0.3s; }
.portfolio-item:hover .portfolio-label { opacity: 1; }

/* ---- CTA BAND ---- */
.cta-band { background: var(--gold); color: var(--black); padding: 5rem 2rem; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1rem; }
.cta-band p { font-size: 1rem; margin-bottom: 2rem; opacity: 0.8; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .service-block-image { min-height: 350px; }
  .service-block-content { padding: 3rem 2rem; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}
