/* style/bnc.css */

/* Variables from custom color scheme */
:root {
  --bnc-primary-color: #11A84E;
  --bnc-secondary-color: #22C768;
  --bnc-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --bnc-card-bg: #11271B;
  --bnc-background: #08160F;
  --bnc-text-main: #F2FFF6;
  --bnc-text-secondary: #A7D9B8;
  --bnc-border-color: #2E7A4E;
  --bnc-glow-color: #57E38D;
  --bnc-gold-color: #F2C14E;
  --bnc-divider-color: #1E3A2A;
  --bnc-deep-green: #0A4B2C;
}

.page-bnc {
  background-color: var(--bnc-background);
  color: var(--bnc-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-bnc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-bnc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* body already has padding-top for header offset */
  background-color: var(--bnc-deep-green);
  overflow: hidden;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-bnc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-bnc__hero-content {
  text-align: center;
  margin-top: 40px;
  max-width: 900px;
  z-index: 1;
}

.page-bnc__main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size for H1 */
  color: var(--bnc-gold-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.page-bnc__description {
  font-size: 1.25rem;
  color: var(--bnc-text-secondary);
  margin-bottom: 30px;
}