/* ============================================================
   AussieVenues — Pages Stylesheet (legal / info pages)
   ============================================================ */

.page-body {
  padding-top: 76px;
}

/* Keep header readable on legal/info pages */
.page-body #site-header {
  background: rgba(15, 27, 45, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.page-body .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

.page-body .nav-links a:hover {
  color: #fff;
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, #0F1B2D 0%, #162235 100%);
  padding: 64px 0 56px;
  border-bottom: 3px solid #C9A84C;
}

.page-hero .section-tag {
  color: #E8D08A;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-top: .5rem;
}

.page-hero-sub {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  margin-top: .6rem;
}

/* ── Page Content ── */
.page-content {
  padding: 72px 0 96px;
}

.page-prose {
  max-width: 780px;
}

.page-lead {
  font-size: 1.05rem;
  color: #2C2C2C;
  line-height: 1.85;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #DDD4C0;
}

.page-prose h2 {
  font-size: 1.5rem;
  color: #0F1B2D;
  margin: 2.25rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid #EDE6D9;
}

.page-prose h3 {
  font-size: 1.2rem;
  color: #0F1B2D;
  margin: 1.5rem 0 .5rem;
}

.page-prose p {
  font-size: .925rem;
  color: #4A4A4A;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.page-prose ul,
.page-prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.page-prose ul { list-style: disc; }
.page-prose ol { list-style: decimal; }

.page-prose li {
  font-size: .925rem;
  color: #4A4A4A;
  line-height: 1.8;
  margin-bottom: .35rem;
}

.page-prose a {
  color: #9A7B2F;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.page-prose a:hover { color: #C9A84C; }

.page-prose strong { color: #1C1C1C; }

/* ── Info Box ── */
.info-box {
  background: #F8F4EE;
  border-left: 4px solid #C9A84C;
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.info-box p {
  margin-bottom: 0;
  font-size: .9rem;
  color: #4A4A4A;
}

.warning-box {
  background: #FFF8E6;
  border-left: 4px solid #C9A84C;
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.warning-box p { margin-bottom: 0; font-size: .9rem; }

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: #fff;
  border: 1px solid #DDD4C0;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0F1B2D;
  margin-bottom: .45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid #DDD4C0;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  color: #1C1C1C;
  background: #FDFBF8;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C9A84C;
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
  background: #fff;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  padding: .9rem;
  background: linear-gradient(135deg, #C9A84C, #9A7B2F);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease;
  margin-top: .5rem;
}

.form-submit:hover {
  background: linear-gradient(135deg, #E8D08A, #C9A84C);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #2D7A4F;
  background: #EBF9F1;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: .9rem;
}

.contact-info-block {
  padding-top: .5rem;
}

.contact-info-block h2 { margin-bottom: 1.25rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: #F8F4EE;
  border: 1.5px solid #DDD4C0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail-text h4 {
  font-size: .95rem;
  color: #0F1B2D;
  margin-bottom: .2rem;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: .875rem;
  color: #4A4A4A;
  text-decoration: none;
  line-height: 1.6;
}

.contact-detail-text a:hover { color: #C9A84C; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
