/* ============================================================
   NaschSalon - catering.css
   Styles for catering.html only.
   ============================================================ */

/* ── INTRO SPLIT ── */
.cat-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.cat-intro-img { overflow: hidden; position: relative; }
.cat-intro-img img { height: 100%; object-position: center; }
.cat-intro-body {
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 5rem;
}
.cat-intro-body h2 { margin-bottom: 1.5rem; }
.cat-intro-body p { margin-bottom: 1.2rem; }

/* ── EVENT TYPES ── */
.cat-types { background: var(--bg); padding: 7rem 5rem; }
.cat-types-header { max-width: 580px; margin-bottom: 4rem; }
.cat-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cat-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.cat-type-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(26,12,4,0.08); }
.cat-type-accent { height: 3px; background: var(--caramel); }
.cat-type-body { padding: 2rem 2rem 2.5rem; }
.cat-type-title {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--choc);
  margin-bottom: 0.9rem;
}
.cat-type-text {
  font-size: 0.85rem;
  color: var(--choc3);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.cat-type-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
}

/* ── HOW IT WORKS ── */
.cat-steps { background: var(--bg2); padding: 7rem 5rem; }
.cat-steps-header { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.cat-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.cat-step {
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--border);
  transition: border-color .2s;
}
.cat-step:hover { border-color: var(--caramel); }
.cat-step-num {
  font-family: var(--fd);
  font-size: 3rem;
  font-weight: 300;
  color: var(--caramel);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.cat-step-title {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--choc);
  margin-bottom: 0.6rem;
}
.cat-step-text { font-size: 0.85rem; color: var(--choc3); line-height: 1.75; }

/* ── INQUIRY FORM ── */
.cat-form-section { background: var(--bg2); }
.cat-form-inner { max-width: 760px; }
.cat-form-inner h2 { margin-bottom: 1rem; }
.cat-form-inner .body-text { margin-bottom: 2.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cat-intro { grid-template-columns: 1fr; }
  .cat-intro-img { height: 60vw; }
  .cat-intro-body { padding: 4rem 1.5rem; }
  .cat-types { padding: 4rem 1.5rem; }
  .cat-types-grid { grid-template-columns: 1fr; }
  .cat-steps { padding: 4rem 1.5rem; }
  .cat-steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .cat-intro { grid-template-columns: 1fr; }
  .cat-intro-img { height: 65vw; min-height: 260px; }
  .cat-types-grid { grid-template-columns: 1fr; }
  .cat-steps-grid { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .cat-types-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
