* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #03002e;
    --secondary-blue: #010048;
    --accent-gold: #d4a574;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e4e8;
    --dark-gray: #333333;
    --text-color: #2c3e50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.mobile-menu-toggle:hover {
    color: var(--accent-gold);
}

nav ul.active {
    display: flex;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

nav a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  right: 5%;
  bottom: -5%;
  width: min(600px, 55vw);
  opacity: 0.22;   /* adjust 0.18–0.28 */
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.status-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
}

/* Main Content Sections */
section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

section h3 {
    font-size: 1.8rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Mission Section */
.mission {
    background-color: var(--light-gray);
}

.mission-statement {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-color);
    text-align: center;
    border-left: 5px solid var(--accent-gold);
}

/* Program Areas */
.programs {
    background: white;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.program-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--accent-gold);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.program-card h3 {
    color: var(--primary-blue);
    margin-top: 0;
    font-size: 1.6rem;
}

.program-card p {
    line-height: 1.8;
    color: #555;
}

.program-card ul {
    color: #555;
}

.program-card ul li {
    margin-bottom: 0.5rem;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, white 0%, var(--light-gray) 100%);
}

.about-content {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    line-height: 1.9;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Connection Section */
.connection {
    background: var(--light-gray);
    text-align: center;
}

.connection-card {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 2rem auto;
}

.connection-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Board of Directors Styles */
.board-section {
    background: white;
}

.section-image-left {
    float: left;
    width: 350px;
    max-width: 100%;
    margin: 0 2.5rem 1.5rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: auto;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.board-member {
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.board-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.board-member-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: 700;
}

.board-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-member-info {
    padding: 2rem;
}

.board-member-name {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.board-member-title {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.board-member-bio {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: white;
    padding: 3rem 2rem 1.5rem;
    text-align: center;
}

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

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--accent-gold);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-note {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 1rem 2rem;
    }

    .hero img {
        max-width: 280px !important;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .board-grid {
        grid-template-columns: 1fr;
    }

    .section-image-left {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1.5rem 0;
        display: block;
    }
}

/* ============================= */
/* NAV ENHANCEMENTS              */
/* ============================= */

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-cta .button {
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta .button:hover {
    background: white;
    color: var(--primary-blue);
}

/* ============================= */
/* FOOTER UPGRADE                */
/* ============================= */

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

/* ============================= */
/* MOBILE NAV CLEANUP            */
/* ============================= */

@media (max-width: 768px) {

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-cta .button {
        margin: 1rem 2rem;
        text-align: center;
    }
}

/* ============================= */
/* CONNECT FORM STYLES           */
/* ============================= */

.form-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 2.75rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  border-top: 4px solid var(--accent-gold);
}


.form-title {
  margin-bottom: 0.25rem;
  color: var(--primary-blue);
}

.form-subtitle {
  margin-top: 0;
  margin-bottom: 1.75rem;
  color: #666;
  line-height: 1.6;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid #cfd6df;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--dark-gray);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 160px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.9);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
  background: #fff;
}

.form-full {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.95rem 1.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.95;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Honeypot: visually hidden off-screen */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Direct contact block */
.contact-direct {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid #e5e8ed;
}

.contact-direct-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.contact-direct-body a {
  color: var(--primary-blue);
  text-decoration: none;
}

.contact-direct-body a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    justify-content: stretch;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}


/* ============================= */
/* FULL-WIDTH SECTIONS OVERRIDES */
/* ============================= */

.hero,
.in-development {
    max-width: none;
    margin: 0;
}

/* Hero logo (removes inline styles) */
.hero-logo {
    max-width: 600px;
    width: 100%;
    margin-bottom: 2rem;
}

/* Mission statement width (removes inline styles) */
.mission-statement {
    max-width: 760px;
    margin: 0 auto;
}

/* Status badge: make it feel intentional */
.status-badge {
    border: 1px solid rgba(255, 255, 255, 0.28);
}

/* Subtle section divider (use sparingly) */
.section-divider {
    width: 80px;
    height: 2px;
    background: var(--accent-gold);
    margin: 2.75rem auto;
    border-radius: 2px;
}

.in-development {
  background: var(--primary-blue);
  color: white;
  padding: 5rem 2rem;
}

.in-development .section-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.in-development h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.in-development .subtitle {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.text-narrow {
  max-width: 760px;
}

.dev-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.dev-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-align: left;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.dev-card h3 {
  margin: 0 0 0.75rem;
  color: var(--accent-gold);
  font-size: 1.15rem;
  font-weight: 700;
}

.dev-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .dev-grid {
    grid-template-columns: 1fr;
  }
  .dev-card {
    text-align: left;
  }
}

/* THANK YOU SPLIT LAYOUT */

.thankyou-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
  text-align: left;
}

.thankyou-left h1 {
  margin-bottom: 0.5rem;
}

.personal-note {
  margin-top: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.signature {
  margin-top: 2rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.thankyou-right {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.recognition-intro {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.recognition-question {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.recognition-decline {
  background: none;
  border: none;
  color: white;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 1rem;
  opacity: 0.8;
}

/* Mobile */
@media (max-width: 900px) {
  .thankyou-split {
    grid-template-columns: 1fr;
  }
}

.signature {
  margin-top: 2rem;
}

.signature-img {
  max-width: 220px;
  height: auto;
  margin-bottom: 0.75rem;
  display: block;
}

.signature-name {
  font-weight: 600;
  margin: 0;
}

.signature-title {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}

.signature-img {
  max-width: 220px;
  opacity: 0.95;
}

/* ============================= */
/* INTERIOR PAGE STYLES          */
/* ============================= */

.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    max-width: none;
    margin: 0;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-hero p {
    font-size: 1.1rem;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.92;
}

.content-narrow {
    max-width: 820px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: left;
}

.content-narrow h3 {
    font-size: 1.3rem;
    color: var(--secondary-blue);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-narrow p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

.content-narrow ul {
    margin: 0.5rem 0 1.25rem 1.5rem;
    line-height: 1.9;
    color: #555;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 1.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }
}