/* ─── SHARED STYLES ─── */
:root {
  --gold: #C8952A;
  --gold-light: #E8B84B;
  --deep-green: #1A3C2E;
  --mid-green: #2D6A4F;
  --light-green: #52B788;
  --cream: #FAF5EC;
  --warm-white: #FDF9F2;
  --dark: #111810;
  --text: #2C2C2C;
  --muted: #7A7A6E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 3rem;
  background: rgba(26, 60, 46, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,149,42,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: rgba(250,245,236,0.8);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold-light); }

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: 0.3s ease;
}

.nav-hamburger.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid rgba(250,245,236,0.4);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(200,149,42,0.1);
}

.btn-secondary {
  background: var(--deep-green);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--mid-green);
  transform: translateY(-2px);
}

/* ─── SECTION ─── */
section {
  padding: 6rem 3rem;
}

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--deep-green);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* ─── PAGE HEADER (subpages) ─── */
.page-header {
  background: var(--deep-green);
  padding: 10rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,183,136,0.08) 0%, transparent 70%);
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-header .section-tag {
  color: var(--gold-light);
}

.page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(250,245,236,0.6);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CONTENT SECTIONS ─── */
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.content-section.alt {
  background: var(--cream);
  max-width: 100%;
}

.content-section.alt .content-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.content-section.dark {
  background: var(--deep-green);
  max-width: 100%;
  color: var(--cream);
}

.content-section.dark .content-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.content-section.dark h2 { color: var(--cream); }
.content-section.dark .section-tag { color: var(--gold-light); }

/* ─── TEXT CONTENT ─── */
.text-content {
  max-width: 720px;
}

.text-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.text-content p strong {
  color: var(--text);
  font-weight: 500;
}

.text-content ul {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  padding-left: 1.5rem;
}

.text-content ul li {
  margin-bottom: 0.5rem;
}

/* ─── SPLIT LAYOUT ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* ─── CARDS GRID ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  border: 1px solid rgba(26,60,46,0.1);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  background: white;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,60,46,0.08);
  border-color: transparent;
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.card .card-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: block;
}

.card-icon {
  margin-bottom: 1.2rem;
  display: block;
  line-height: 1;
}

/* ─── PILLAR GRID (dark bg) ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  margin-top: 3rem;
  background: rgba(250,245,236,0.08);
}

.pillar {
  background: rgba(26,60,46,0.7);
  padding: 2.5rem;
  transition: background 0.3s;
  cursor: default;
}

.pillar:hover {
  background: rgba(45,106,79,0.6);
}

.pillar-icon {
  margin-bottom: 1.2rem;
  display: block;
  line-height: 1;
}

.pillar h3 {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.pillar p {
  font-size: 0.88rem;
  color: rgba(250,245,236,0.55);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── BOARD ─── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.board-card {
  border: 1px solid rgba(26,60,46,0.1);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  background: white;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.board-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.board-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,60,46,0.1);
  border-color: transparent;
}

.board-card:hover::before {
  transform: scaleX(1);
}

.board-role {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.board-name {
  font-size: 1.1rem;
  color: var(--deep-green);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.board-club {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ─── CONTACT INFO BLOCKS ─── */
.contact-info-block {
  background: white;
  border-radius: 4px;
  padding: 2.5rem;
  border: 1px solid rgba(26,60,46,0.08);
  margin-bottom: 1.5rem;
}

.contact-info-block h3 {
  font-size: 1rem;
  color: var(--deep-green);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(26,60,46,0.08);
  font-weight: 600;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.info-item {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.info-label {
  font-weight: 500;
  color: var(--text);
  min-width: 90px;
  font-size: 0.82rem;
}

.info-value {
  font-size: 0.85rem;
}

/* ─── DOCUMENTS LIST ─── */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 2rem;
  background: white;
  border: 1px solid rgba(26,60,46,0.08);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.doc-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(26,60,46,0.06);
  transform: translateX(4px);
}

.doc-item-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-item-info {
  flex: 1;
}

.doc-item-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 0.2rem;
}

.doc-item-info span {
  font-size: 0.8rem;
  color: var(--muted);
}

.doc-item-arrow {
  color: var(--muted);
  font-size: 1.1rem;
  transition: transform 0.3s, color 0.3s;
}

.doc-item:hover .doc-item-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* ─── ANBI BADGE ─── */
.anbi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--deep-green);
  color: var(--cream);
  padding: 0.6rem 1.2rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 1.5rem;
}

.anbi-badge::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--light-green);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
  flex-shrink: 0;
}

/* ─── QUOTE ─── */
.quote-block {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: rgba(250,245,236,0.85);
  font-weight: 300;
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
  margin: 2rem 0 3rem;
  line-height: 1.6;
  max-width: 700px;
}

/* ─── TRIP DETAILS ─── */
.trip-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.trip-includes li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.trip-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 16px;
  height: 16px;
  background: var(--light-green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}

/* ─── FACT ROW ─── */
.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.fact {
  text-align: center;
  padding: 2rem;
  background: rgba(26,60,46,0.04);
  border-radius: 4px;
}

.fact-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--deep-green);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.3rem;
}

.fact-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 4rem 3rem 2rem;
  color: rgba(250,245,236,0.5);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250,245,236,0.08);
  margin-bottom: 2rem;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer-brand span { color: var(--gold-light); }

.footer-sub {
  font-size: 0.82rem;
  max-width: 260px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(250,245,236,0.5);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(26, 60, 46, 0.98);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(200,149,42,0.3);
  }

  .nav-links.active a {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }

  section { padding: 4rem 1.5rem; }
  .page-header { padding: 8rem 1.5rem 3rem; }
  .content-section { padding: 3.5rem 1.5rem; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .fact-row { grid-template-columns: 1fr; }
}
