/* ==========================================================================
   OCCASION PAGES — shared styles for svadby.html, firemne-eventy.html,
   rodinne-oslavy.html, garden-party.html, vip-vecere.html, degustacie.html
   ========================================================================== */

body { background: var(--cream); }

/* ---- HERO ---- */
.ohero {
  position: relative;
  height: 56svh;
  min-height: 380px;
  overflow: hidden;
  background: #a79685;
}
.ohero-img {
  display: none;
}
.ohero-scrim {
  display: none;
}
.ohero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 64px);
  color: var(--cream);
}
.ohero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}
.ohero-sub {
  font-size: 1rem;
  color: rgba(244,240,233,0.85);
  margin: 0;
}

/* ---- CONTENT ---- */
.opage {
  padding: 80px clamp(20px, 5vw, 64px) 100px;
}
.opage-inner {
  max-width: 760px;
  margin: 0 auto;
}
.opage-body {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}
.opage-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 40px 0 14px;
}
.opage-body h2:first-child { margin-top: 0; }
.opage-body p {
  margin: 0 0 20px;
}

.opage-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 48px 0 64px;
}

.opage-related {
  padding-top: 36px;
  border-top: 1px solid var(--line-on-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.opage-related-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.opage-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.opage-related-links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.opage-related-links a:hover {
  color: var(--ink);
  border-color: var(--gold);
}

@media (max-width: 600px) {
  .opage { padding-top: 56px; }
  .opage-cta { flex-direction: column; align-items: stretch; }
  .opage-cta .btn { justify-content: center; }
}
