/* ========================================
   DGC WEBSITE - COMPREHENSIVE STYLESHEET
   Design System: National Heritage + DGC Accent
   ======================================== */

/* ===== COLOR PALETTE ===== */
:root {
  /* National Site Heritage */
  --dark-wrapper: #292929;
  --content-bg: #F9F9F9;
  --primary-text: #222222;
  --deep-navy: #020270;
  --slider-dark: #323436;
  --grey-subtitle: #666666;
  --grey-footer: #999999;
  --grey-caption: #AAAAAA;
  --white: #FFFFFF;
  
  /* DGC Accent */
  --navy: #1B2A4A;
  --gold: #C8A951;
  --gold-light: #D4BA6A;
  
  /* Borders & Shadows */
  --border-light: #E5E5E5;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ===== TYPOGRAPHY IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--primary-text);
  background-color: var(--content-bg);
  line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h5, h6 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Nav/Labels font */
nav, .label, .nav-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Card titles - uppercase, letter-spacing convention */
.card-title, .card h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

/* Italic serif for mottos/quotes */
.motto, .italic-serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

a {
  color: var(--deep-navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ===== CONTAINERS & LAYOUT ===== */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--dark-wrapper);
}

.page-content {
  flex: 1;
  background-color: var(--content-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3rem 0;
}

.section.dark {
  background-color: var(--dark-wrapper);
  color: var(--white);
}

.section.dark h2, .section.dark h3 {
  color: var(--white);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background-color: var(--content-bg);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--primary-text);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-left {
  font-weight: 600;
}

.announcement-right {
  text-align: right;
}

.announcement-right a {
  color: var(--deep-navy);
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .announcement-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .announcement-right {
    text-align: center;
  }
}

/* ===== HEADER BAR ===== */
.header-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.logo-image {
  height: 72px;
  width: auto;
}

.header-text h3 {
  margin: 0;
  font-size: 1.125rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary-text);
}

.header-text p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--grey-subtitle);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.header-motto {
  flex: 1;
  text-align: right;
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--primary-text);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .header-motto {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .header-left {
    flex-direction: column;
    text-align: center;
  }
  
  .header-motto {
    text-align: center;
  }
}

/* ===== NAVIGATION ===== */
nav.main-nav {
  background-color: var(--dark-wrapper);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

nav.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  height: 70px;
}

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

.nav-links a {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.donate-btn {
  background-color: var(--gold);
  color: var(--primary-text);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.donate-btn:hover {
  background-color: var(--gold-light);
  color: var(--primary-text);
}

.donate-btn::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  nav.main-nav .container {
    height: auto;
    padding: 1rem 1.5rem;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--navy);
    gap: 0;
    padding: 1rem 0;
    list-style: none;
    width: 100%;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .nav-links a.active {
    background-color: rgba(200, 169, 81, 0.2);
    border-left: 4px solid var(--gold);
    padding-left: calc(1.5rem - 4px);
  }
  
  .donate-btn {
    width: 90%;
    text-align: center;
    margin: 1rem auto;
  }
}

/* ===== BUTTONS & LINKS ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--primary-text);
}

.btn-primary:hover {
  background-color: var(--gold-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background-color: var(--gold);
  color: var(--primary-text);
}

.btn-dark {
  background-color: var(--primary-text);
  color: var(--white);
}

.btn-dark:hover {
  background-color: var(--dark-wrapper);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-text);
}

.btn-white:hover {
  background-color: var(--content-bg);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--primary-text);
}

.btn-gold:hover {
  background-color: var(--gold-light);
}

/* ===== CARDS ===== */
.card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.card-title {
  color: var(--primary-text);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.card-subtitle {
  color: var(--grey-caption);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.card-description {
  color: var(--grey-subtitle);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-link {
  color: var(--gold);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.card-link:hover {
  color: var(--gold-light);
}

/* ===== HERO SECTIONS ===== */
.hero {
  background: linear-gradient(135deg, var(--dark-wrapper) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.95;
}

.hero .btn {
  margin: 0.5rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

/* ===== DIVIDERS ===== */
.gold-divider {
  width: 60px;
  height: 3px;
  background-color: var(--gold);
  margin: 1.5rem auto 2rem;
}

.divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 2rem 0;
}

.divider.gold {
  border-top-color: var(--gold);
}

/* ===== GRID LAYOUTS ===== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-6 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6 {
    grid-template-columns: 1fr;
  }
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--primary-text);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* ===== TABLES ===== */
.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

th {
  background-color: var(--dark-wrapper);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

tr:hover {
  background-color: var(--content-bg);
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  background-color: var(--content-bg);
  padding: 3rem 0;
  text-align: center;
}

.quote-text {
  font-size: 1.75rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--primary-text);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.quote-attribution {
  font-size: 1rem;
  color: var(--grey-subtitle);
  font-family: 'Montserrat', sans-serif;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--primary-text);
  color: var(--grey-footer);
  padding: 3rem 0 1rem;
  margin-top: auto;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

footer h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

footer p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

footer a {
  color: var(--grey-footer);
  transition: color 0.3s ease;
}

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

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 0.9rem;
  color: var(--grey-footer);
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--grey-footer);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--gold);
  color: var(--primary-text);
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list a {
  color: var(--grey-footer);
  font-size: 0.95rem;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.footer-copyright {
  color: var(--grey-footer);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--grey-footer);
}

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

@media (max-width: 1024px) {
  footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  footer .container {
    grid-template-columns: 1fr;
  }
  
  .footer-divider {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-links {
    gap: 1rem;
  }
}

/* ===== UNDER CONSTRUCTION PAGE ===== */
.construction-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 400px);
  padding: 3rem 1.5rem;
  text-align: center;
}

.construction-logo {
  height: 120px;
  width: auto;
  opacity: 0.3;
  margin-bottom: 2rem;
}

.construction-container h1 {
  color: var(--primary-text);
  margin-bottom: 1rem;
}

.construction-message {
  color: var(--grey-subtitle);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.construction-subtitle {
  color: var(--grey-caption);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.construction-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--grey-subtitle);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ===== FOUNDER CIRCLE AVATAR ===== */
.founder-circle {
  width: 80px;
  height: 80px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-wrapper);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

/* ===== ANIMATION & SCROLL EFFECTS ===== */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .section fade-in is handled by JS adding .fade-in class via IntersectionObserver */

/* ===== TWO COLUMN LAYOUT ===== */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

/* ===== PROGRAM CARD GRID ===== */
.program-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.program-card:hover {
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-md);
  padding-left: calc(2rem - 5px);
}

.program-card h3 {
  color: var(--primary-text);
  margin-bottom: 1rem;
}

.program-card p {
  color: var(--grey-subtitle);
  margin-bottom: 1.5rem;
}

/* ===== PROPERTY CARD (Groove Community Campus) ===== */
.property-card {
  background-color: var(--white);
  border-left: 5px solid var(--gold);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 2px;
}

.property-card h3 {
  color: var(--primary-text);
  margin-bottom: 0.5rem;
}

.property-card p {
  color: var(--grey-subtitle);
  font-size: 0.95rem;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
  background-color: var(--border-light);
  height: 30px;
  border-radius: 4px;
  overflow: hidden;
  margin: 2rem 0;
}

.progress-fill {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  height: 100%;
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-text);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
}

/* ===== OFFICER CARD ===== */
.officer-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.officer-card:hover {
  box-shadow: var(--shadow-md);
}

.officer-initials {
  width: 100px;
  height: 100px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--content-bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.officer-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-text);
  margin-bottom: 0.5rem;
}

.officer-title {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.officer-bio {
  color: var(--grey-subtitle);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== EVENT CARD ===== */
.event-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.event-date {
  color: var(--gold);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5rem;
}

.event-title {
  font-size: 1.25rem;
  color: var(--primary-text);
  margin-bottom: 0.5rem;
}

.event-time {
  color: var(--grey-subtitle);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.event-description {
  color: var(--grey-subtitle);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== COMMITTEE CARD ===== */
.committee-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.committee-title {
  color: var(--primary-text);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.committee-members {
  color: var(--grey-subtitle);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CTAS & BANNERS ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-wrapper) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3rem;
  border-radius: 4px;
  text-align: center;
  margin: 3rem 0;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-banner p {
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.donation-btn {
  padding: 1rem;
  border: 2px solid var(--white);
  background-color: transparent;
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.donation-btn:hover {
  background-color: var(--gold);
  color: var(--primary-text);
  border-color: var(--gold);
}

/* ===== NEWSLETTER SIGNUP ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark-wrapper) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3rem;
  border-radius: 4px;
  text-align: center;
}

.newsletter-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter-section p {
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background-color: var(--gold);
  color: var(--primary-text);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--gold-light);
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ===== WAVEFORM VISUALIZATION ===== */
.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 60px;
  margin: 2rem 0;
}

.waveform-bar {
  width: 4px;
  background-color: var(--gold);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}

.waveform-bar:nth-child(1) { height: 20%; animation-delay: 0s; }
.waveform-bar:nth-child(2) { height: 40%; animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { height: 100%; animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.waveform-bar:nth-child(7) { height: 60%; animation-delay: 0.6s; }
.waveform-bar:nth-child(8) { height: 40%; animation-delay: 0.7s; }

@keyframes wave {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  background-color: var(--content-bg);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-caption);
  font-style: italic;
  margin: 2rem 0;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 640px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: var(--white);
}

.text-muted {
  color: var(--grey-subtitle);
}

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-50 {
  opacity: 0.5;
}

/* ===== DONATE PAGE ===== */
.donate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.donate-widget {
  display: flex;
  justify-content: center;
}

.donate-widget iframe {
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.donate-info h2 {
  margin-bottom: 0.5rem;
}

.campaign-progress {
  background-color: var(--content-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.campaign-numbers {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.campaign-raised {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.campaign-goal {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: var(--grey-subtitle);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tax-notice {
  background-color: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
}

.tax-notice p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.donate-properties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.donate-properties .card {
  border-top: 3px solid var(--gold);
}

.property-address {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .donate-layout {
    grid-template-columns: 1fr;
  }

  .donate-widget {
    order: -1;
  }
}

@media (max-width: 768px) {
  .donate-properties {
    grid-template-columns: 1fr;
  }

  .campaign-numbers {
    flex-direction: column;
    gap: 0.25rem;
  }

  .campaign-raised {
    font-size: 1.75rem;
  }
}

/* ===== CAMPUS PAGE ===== */

/* --- Campus Hero (tall, immersive) --- */
.campus-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-wrapper) 0%, var(--navy) 50%, #0a1428 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.campus-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(200, 169, 81, 0.03) 40px,
      rgba(200, 169, 81, 0.03) 80px
    );
  pointer-events: none;
}

.campus-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 4rem 1.5rem;
}

.campus-hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.campus-hero-sub {
  font-size: 1.1875rem;
  color: var(--white);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.campus-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-outline-white {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-text);
}

.campus-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey-footer);
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--gold);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .campus-hero {
    min-height: 70vh;
  }

  .campus-hero h1 {
    font-size: 2.25rem;
  }

  .campus-hero-sub {
    font-size: 1rem;
  }

  .campus-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }
}

/* --- Vision Section --- */
.vision-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.vision-text h2 {
  margin-bottom: 0.5rem;
}

.vision-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--grey-subtitle);
  margin-bottom: 1.25rem;
}

.vision-quote blockquote {
  background-color: var(--navy);
  color: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 2rem;
  margin: 0;
}

.vision-quote blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .vision-layout {
    grid-template-columns: 1fr;
  }
}

/* --- Strategic Goals --- */
.strategic-goals {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.goal-item {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.goal-item:hover {
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.goal-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--primary-text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.goal-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-text);
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .strategic-goals {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .strategic-goals {
    grid-template-columns: 1fr;
  }
}

/* --- Corridor Section (dark) --- */
.corridor-section {
  background-color: var(--dark-wrapper);
  padding: 4rem 0;
}

.property-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.property-card {
  background-color: var(--slider-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.property-card:hover {
  border-top: 4px solid var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.property-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background-color: rgba(200, 169, 81, 0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.property-card h3 {
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.property-address-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.property-card > p {
  color: var(--grey-footer);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.property-details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.property-details h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.property-details ul {
  list-style: none;
  padding: 0;
}

.property-details li {
  color: var(--grey-footer);
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 0.375rem 0;
  padding-left: 1rem;
  position: relative;
}

.property-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  background-color: var(--gold);
  border-radius: 50%;
}

@media (max-width: 992px) {
  .property-cards {
    grid-template-columns: 1fr;
  }
}

/* --- Campus Programs Grid --- */
.campus-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.campus-program-card {
  background-color: var(--content-bg);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.campus-program-card:hover {
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.campus-program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-color: var(--navy);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.campus-program-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-text);
  margin-bottom: 0.75rem;
}

.campus-program-card p {
  color: var(--grey-subtitle);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .campus-programs-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Partnerships Section --- */
.partnerships-section {
  background-color: var(--navy);
  padding: 4rem 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.partner-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 169, 81, 0.2);
  border-radius: 4px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.partner-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

.partner-card h4 {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.partner-card p {
  color: var(--grey-footer);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -3rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--border-light);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border-light);
  z-index: 1;
}

.timeline-current .timeline-marker {
  background-color: var(--gold);
  border-color: var(--white);
  box-shadow: 0 0 0 2px var(--gold), 0 0 12px rgba(200, 169, 81, 0.4);
  width: 18px;
  height: 18px;
  left: calc(-3rem - 2px);
}

.timeline-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  background-color: var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

.timeline-content {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 1.5rem;
}

.timeline-current .timeline-content {
  border-color: var(--gold);
  border-width: 2px;
}

.timeline-phase {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.timeline-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  color: var(--grey-caption);
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--grey-subtitle);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 480px) {
  .timeline {
    padding-left: 2rem;
  }

  .timeline-marker {
    left: -2rem;
  }

  .timeline-current .timeline-marker {
    left: calc(-2rem - 2px);
  }
}

/* --- Campus CTA --- */
.campus-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #a88b3a 50%, var(--navy) 100%);
  padding: 5rem 0;
}

.campus-cta-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}

.campus-cta-contact p {
  color: var(--white);
  opacity: 0.85;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

/* ===== TEASER / COMING SOON CARDS ===== */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.teaser-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.teaser-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.teaser-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.teaser-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  background-color: var(--navy);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.teaser-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-wrapper) 100%);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.teaser-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.teaser-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.teaser-card p {
  color: var(--grey-subtitle);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.teaser-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.teaser-features span {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  background-color: rgba(27, 42, 74, 0.08);
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
}

.teaser-compact {
  padding: 2rem;
}

.teaser-compact .teaser-icon {
  width: 48px;
  height: 48px;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .teaser-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FEATURED VIDEO ===== */
.video-feature-section {
  background-color: var(--dark-wrapper);
  padding: 4rem 0;
}

.video-feature {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.video-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.video-info h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.video-info p {
  color: var(--grey-footer);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.video-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold) !important;
}

@media (max-width: 992px) {
  .video-feature {
    grid-template-columns: 1fr;
  }

  .video-info {
    text-align: center;
  }

  .video-info .gold-divider {
    margin: 0 auto 1.5rem !important;
  }
}
