/* ========================================
   GOVERNANCE PAGE STYLES
   ======================================== */

/* Hero section - uses video background like landing page */
.governance-hero {
  position: relative;
  text-align: center;
  padding: 6rem 1.25rem;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.governance-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.governance-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.governance-hero h1,
.governance-hero p {
  position: relative;
  z-index: 2;
  color: #fff;
}

.governance-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.governance-intro {
  max-width: 700px;
  margin: 1.5rem auto;
  font-size: 1.05rem;
}

.governance-intro-secondary {
  max-width: 700px;
  margin: 1rem auto;
  font-size: 0.95rem;
  color: #ddd;
}

/* Main governance content */
.governance-content {
  padding: 4rem 1.25rem;
}

.governance-section {
  margin-bottom: 3rem;
}

.governance-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.governance-section p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.governance-section strong {
  font-weight: 600;
}

/* Governance lists - match main site style */
.governance-list {
  padding-left: 1.1rem;
}

.governance-list li {
  margin-bottom: 0.5rem;
}

/* Governance notes - subtle emphasis */
.governance-note {
  background: #f6f6f6;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--dark);
  margin: 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  font-style: italic;
}

/* Enquiry section - distinct styling */
.governance-enquiry {
  background: #f6f6f6;
  padding: 2rem;
  border-radius: 4px;
  margin-top: 3rem;
  text-align: center;
}

.governance-enquiry h2 {
  margin-bottom: 1rem;
}

.governance-enquiry p {
  margin-bottom: 0.75rem;
}

.governance-cta {
  margin-top: 1.5rem;
  display: inline-block;
}

/* Navigation active state for governance page */
.nav-menu a.active {
  font-weight: 600;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .governance-hero {
    padding: 4rem 1.25rem;
  }

  .governance-hero h1 {
    margin-bottom: 1rem;
  }

  .governance-content {
    padding: 2rem 1.25rem;
  }

  .governance-section {
    margin-bottom: 2rem;
  }

  .governance-section h2 {
    margin-bottom: 0.75rem;
  }
}
