@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --navy: #3d6aaa;
  --deep-blue: #4f82c8;
  --ocean: #1e6fa0;
  --teal: #2dbfb8;
  --gold: #e8a020;
  --light-gold: #f5c660;
  --white: #ffffff;
  --off-white: #f4f7fa;
  --light-gray: #e8ecf2;
  --text: #1a2535;
  --text-light: #4a5568;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

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

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

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}

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

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(232,160,32,0.1);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; font-size: 0.9rem; }
}

/* ─── HERO ─── */
.hero {
  background: url('files/hero.jpg') center center / cover no-repeat;
  height: 480px;
}

/* ─── HERO CONTENT ─── */
.hero-content {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 2rem;
  text-align: center;
}

.hero-inner { max-width: 800px; margin: 0 auto; }

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s ease both;
}

.hero-content h2 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 2rem;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 2rem;
  animation: fadeUp 0.7s 0.05s ease both;
  filter: drop-shadow(0 8px 24px rgba(45,191,184,0.4));
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--light-gold); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,160,32,0.4); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  margin-left: 0.75rem;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* ─── PAGE HEADER ─── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
  color: var(--white);
  padding: 3.5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}
.page-header p {
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
}

/* ─── MAIN CONTENT ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-section {
  padding: 4rem 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--light-gray);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 2rem;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--ocean));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.card:hover { box-shadow: 0 8px 30px rgba(10,22,40,0.1); transform: translateY(-3px); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--deep-blue);
}
.card p { font-size: 0.95rem; color: var(--text-light); }

/* ─── SIDEBAR LAYOUT ─── */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  padding: 4rem 0;
}

@media (max-width: 900px) {
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
}

.main-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.main-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--deep-blue);
  margin: 2rem 0 0.75rem;
}

.main-content p { margin-bottom: 1rem; color: var(--text-light); }

.main-content ul {
  list-style: none;
  margin: 1rem 0;
}
.main-content ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  border-bottom: 1px solid var(--light-gray);
}
.main-content ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
}
.main-content ul li a {
  color: var(--ocean);
  text-decoration: none;
  font-weight: 400;
}
.main-content ul li a:hover { color: var(--teal); text-decoration: underline; }

/* ─── SIDEBAR ─── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-box {
  background: var(--off-white);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 3px solid var(--teal);
}

.sidebar-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--deep-blue);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-box ul { list-style: none; }
.sidebar-box ul li { padding: 0.35rem 0; border-bottom: 1px solid var(--light-gray); }
.sidebar-box ul li:last-child { border-bottom: none; }
.sidebar-box ul li a { color: var(--ocean); text-decoration: none; font-size: 0.9rem; font-weight: 400; }
.sidebar-box ul li a:hover { color: var(--teal); }

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}
.contact-info strong { color: var(--deep-blue); }
.contact-info a { color: var(--ocean); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

/* ─── DIVIDER ─── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  margin: 1rem 0 1.5rem;
}

/* ─── MEETINGS ─── */
.meeting-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.meeting-date {
  flex-shrink: 0;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  min-width: 70px;
}
.meeting-date .month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 600;
}
.meeting-date .day {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.meeting-date .year { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.meeting-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--deep-blue);
  margin-bottom: 0.25rem;
}
.meeting-info .location {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ─── CONTACT FORM ─── */
.contact-form {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--light-gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--deep-blue);
  margin-bottom: 0.4rem;
}

input, textarea, select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45,191,184,0.1);
}
textarea { resize: vertical; min-height: 140px; }

.btn-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.85rem 2.5rem;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-submit:hover { background: var(--ocean); transform: translateY(-2px); }

.form-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand img { width: 56px; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-brand .org-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

footer h5 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.4rem; }
footer ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--teal); }

.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

.animate-in {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ─── BANNER IMAGE ─── */
.page-image {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  background: linear-gradient(135deg, var(--deep-blue), var(--navy));
  color: var(--white);
  border-radius: 10px;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
}
.highlight-box h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.highlight-box p { color: rgba(255,255,255,0.85); margin: 0; }
