/* ── Information page styles ── */

/* Page hero */
.info-hero {
  border-radius: 32px;
  min-height: 32vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(5,18,35,.2) 0%, rgba(5,18,35,.80) 100%),
    linear-gradient(135deg, #003166 0%, #0b2a18 100%);
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(246,196,69,.12);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.info-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(246,196,69,.08) 0%, transparent 60%);
  pointer-events: none;
}
.info-hero-inner {
  padding: clamp(2rem, 6vw, 4rem);
  color: white;
  position: relative;
  z-index: 2;
}
.info-hero-inner h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: .96;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.info-hero-inner p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.85);
  max-width: 640px;
}

/* Section headers with icon */
.info-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.info-section-header h2 { margin-bottom: 0; }
.info-section-header.dark h2 { color: white; }
.info-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Den grid */
.den-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
  margin-top: 1.25rem;
}
.den-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: 1.1rem .5rem .9rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #003166, #07213e);
  border: 1px solid rgba(246,196,69,.2);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  text-align: center;
}
.den-badge {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
  flex-shrink: 0;
}
.den-grade {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.den-name {
  font-size: .85rem;
  font-weight: 800;
  color: var(--scout-gold);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Resource grid */
.resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.resource-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(246,196,69,.15);
  text-decoration: none;
  transition: background .2s, transform .2s;
  color: white;
}
.resource-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
  color: white;
}
.resource-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.resource-card strong {
  display: block;
  color: var(--scout-gold);
  font-weight: 700;
  margin-bottom: .2rem;
}
.resource-card span {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .5rem;
  font-family: monospace;
}
.resource-card p {
  margin: 0;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}

/* Welcome FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1rem;
}
.faq-item {
  padding: 0 1.1rem;
  border: 1px solid rgba(0,63,127,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.75rem 1rem 0;
  color: var(--scout-blue);
  font-weight: 750;
  line-height: 1.35;
}
.faq-item summary::marker {
  color: var(--scout-gold);
}
.faq-item p {
  margin: 0 0 1rem;
  color: #334;
  line-height: 1.6;
}
.faq-item p + p {
  margin-top: -.4rem;
}

/* Event list */
.event-list {
  margin: 1.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,63,127,.1);
}
.event-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1.1rem;
  border-bottom: 1px solid rgba(0,63,127,.07);
  background: rgba(255,255,255,.6);
  transition: background .18s;
}
.event-row:last-child { border-bottom: none; }
.event-row:nth-child(even) { background: rgba(0,63,127,.04); }
.event-row:hover { background: rgba(246,196,69,.1); }
.event-date {
  font-weight: 700;
  color: var(--scout-blue);
  font-size: .85rem;
  min-width: 170px;
  flex-shrink: 0;
}
.event-name {
  font-size: .95rem;
  color: var(--dark);
}

/* Info note */
.info-note {
  margin-top: 1.2rem;
  padding: .9rem 1.1rem;
  border-radius: 14px;
  background: rgba(246,196,69,.1);
  border-left: 4px solid var(--scout-gold);
  font-size: .9rem;
  color: #334;
}
.info-note.light {
  background: rgba(255,255,255,.1);
  border-left-color: var(--scout-gold);
  color: rgba(255,255,255,.8);
}
.info-note.light a { color: var(--scout-gold); }

/* Two-column layout */
.info-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3.5rem 0;
}
.info-two-col > section { margin: 0; }

/* Info list */
.info-list {
  margin: .75rem 0 0;
  padding-left: 1.2rem;
}
.info-list li {
  margin-bottom: .4rem;
  color: var(--dark);
}
.info-list a { color: var(--scout-blue); }

/* Leadership grid */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.leader-group h3 {
  color: var(--scout-gold);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(246,196,69,.25);
}
.leader-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.leader-list li {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
}
.leader-list strong { color: white; }
.leader-list a { color: rgba(246,196,69,.75); font-size: .8rem; }
.leader-list a:hover { color: var(--scout-gold); }
.volunteer-opp { color: rgba(255,255,255,.45) !important; font-style: italic; }

/* Cost grid */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
.cost-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .3rem;
  padding: 1.5rem 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #003166, #07213e);
  border: 1px solid rgba(246,196,69,.18);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.cost-amount {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--scout-gold);
  letter-spacing: -.03em;
  text-shadow: 0 0 20px rgba(246,196,69,.4);
}
.cost-label {
  font-weight: 700;
  color: white;
  font-size: .9rem;
}
.cost-note {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* Registration steps */
.reg-steps {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.reg-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 1.1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(246,196,69,.1);
  font-size: .93rem;
  color: rgba(255,255,255,.85);
}
.reg-steps a { color: var(--scout-gold); }
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--scout-gold);
  color: #172033;
  font-weight: 900;
  font-size: .9rem;
  flex-shrink: 0;
}

/* Scout oath & law */
.scout-quote {
  margin: 0;
  padding: 1.2rem 1.5rem;
  border-left: 5px solid var(--scout-gold);
  border-radius: 0 14px 14px 0;
  background: rgba(246,196,69,.06);
  font-size: 1.05rem;
  font-style: italic;
  color: #334;
  line-height: 1.7;
}
.scout-law-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334;
}
.scout-law-text strong { color: var(--scout-blue); }

/* Nav active state */
nav a[aria-current="page"] {
  color: var(--scout-gold) !important;
}

/* Responsive */
@media (max-width: 1000px) {
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .leadership-grid .leader-group:nth-child(2) { grid-column: span 2; order: -1; }
}
@media (max-width: 860px) {
  .den-grid { grid-template-columns: repeat(3, 1fr); }
  .resource-grid { grid-template-columns: 1fr; }
  .cost-grid { grid-template-columns: repeat(2, 1fr); }
  .info-two-col { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leadership-grid .leader-group:nth-child(2) { grid-column: span 1; }
}
@media (max-width: 560px) {
  .den-grid { grid-template-columns: repeat(2, 1fr); }
  .event-date { min-width: 110px; }
  .cost-grid { grid-template-columns: 1fr 1fr; }
}
