/*
  NSBE GSU MODERN STYLESHEET
  ---------------------------------
  This is the main stylesheet for the redesigned pages.
  Comments are organized by site section so future E-Board members can find what to edit.
  Responsive breakpoints: 1200px (large), 980px (tablet), 720px (small tablet), 600px (mobile), 400px (small phone)
*/

/* ============================================================
   DESIGN TOKENS: site colors, spacing, border radius, and transition speed.
   Change values here and they update everywhere on the site.
   ============================================================ */
:root {
  --blue: #003087;
  --blue-mid: #0047b3;
  --blue-light: #eaf1ff;
  --gold: #c9a84c;
  --gold-soft: #f3e7bf;
  --white: #fff;
  --off-white: #f7f6f2;
  --dark: #080d1d;
  --gray: #657084;
  --gray-light: #e4e7ee;
  --radius: 18px;
  --transition: 0.25s ease;
}

/* ============================================================
     GLOBAL RESET
     ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Syne", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* ============================================================
     LAYOUT HELPERS
     ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-inline: 40px;
}

/* ============================================================
     NAVIGATION: fixed top navbar, logo, links, CTA, hamburger.
     To update nav links, edit the <nav> section in each HTML file.
     ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 86px;
  z-index: 50;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

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

.brand-logo.round-logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: contain;
}

.brand-logo.footer-round-logo img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray);
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 9px 18px !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

/* HAMBURGER: hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}

/* MOBILE MENU: slides open when hamburger is clicked (handled by main.js) */
.mobile-menu {
  display: none;
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  z-index: 49;
  background: #fff;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  gap: 2px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 13px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  display: block;
}

.mobile-menu a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

/* ============================================================
     BUTTONS
     ============================================================ */
.btn-primary,
.btn-outline,
.btn-dark,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--blue);
  color: #fff;
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--blue);
}
.btn-light:hover {
  background: var(--gold);
  color: var(--dark);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  color: var(--blue);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  margin-top: 12px;
}
.text-link::after {
  content: "→";
  transition: transform 0.2s;
}
.text-link:hover {
  color: var(--gold);
}
.text-link:hover::after {
  transform: translateX(4px);
}

.action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--blue);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
}
.action-link::after {
  content: "→";
  transition: transform 0.25s;
}
.action-link:hover {
  color: var(--gold);
}
.action-link:hover::after {
  transform: translateX(5px);
}

/* ============================================================
     HOME HERO
     ============================================================ */
.hero {
  min-height: 100svh;
  background: radial-gradient(
      circle at 88% 10%,
      rgba(201, 168, 76, 0.18),
      transparent 30%
    ),
    radial-gradient(circle at 18% 90%, rgba(0, 71, 179, 0.25), transparent 30%),
    var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 126px 40px 100px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 48, 135, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 48, 135, 0.32) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.45;
  pointer-events: none;
}

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

.hero-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 999px;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 7.4rem);
  font-weight: 800;
  color: #fff;
  max-width: 980px;
  line-height: 1;
}

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

.hero-subtitle {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  max-width: 600px;
  margin: 24px 0 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  left: 40px;
  bottom: 44px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

/* Hero stats — positioned bottom right on desktop */
.hero-stats {
  position: absolute;
  right: 40px;
  bottom: 44px;
  z-index: 2;
  display: flex;
  gap: 34px;
  align-items: flex-end;
}

.hero-stat {
  text-align: right;
}

.hero-stat-num {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2.15rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
}

.hero-stat-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.46);
  margin-top: 7px;
}

/* ============================================================
     SECTION SYSTEM
     ============================================================ */
.section {
  padding: 92px 40px;
}

.section.alt {
  background: var(--off-white);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-bottom: 42px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.section-copy {
  color: var(--gray);
  max-width: 680px;
  line-height: 1.7;
}

.section-label-light {
  color: rgba(201, 168, 76, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 14px;
  display: block;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  overflow: hidden;
}

.split > * {
  min-width: 0;
  overflow: hidden;
}

/* ============================================================
     ABOUT STRIP (Homepage)
     ============================================================ */
.about-strip {
  background: var(--off-white);
  padding: 92px 40px;
}

.about-heading {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.75;
}

/* ============================================================
     CARD SYSTEM
     ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--blue);
  box-shadow: 0 16px 35px rgba(0, 48, 135, 0.11);
  transform: translateY(-3px);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.card p {
  color: var(--gray);
  font-size: 0.93rem;
}

.panel {
  border: 1px solid var(--gray-light);
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
}

.dark-panel {
  background: var(--dark);
  color: #fff;
  border: 0;
}
.dark-panel p {
  color: rgba(255, 255, 255, 0.65);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.feature-list li {
  list-style: none;
  padding-left: 28px;
  position: relative;
  color: var(--gray);
}
.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================================
     ELEVATE THEME SECTION
     ============================================================ */
.elevate-section {
  background: var(--blue);
  padding: 92px 40px;
  position: relative;
  overflow: hidden;
}

.elevate-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Syne", sans-serif;
  font-size: clamp(8rem, 18vw, 18vw);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.elevate-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.elevate-top {
  text-align: center;
  margin-bottom: 48px;
}

.elevate-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  font-weight: 800;
}

.elevate-subtitle {
  color: rgba(255, 255, 255, 0.64);
  max-width: 560px;
  margin: 14px auto 0;
}

.elevate-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.elevate-item {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 24px 12px;
  text-align: center;
  transition: var(--transition);
}

.elevate-item:hover {
  background: rgba(201, 168, 76, 0.16);
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-4px);
}

.elevate-letter {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.elevate-word {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ============================================================
     PRESIDENT MESSAGE SECTION
     ============================================================ */
.president-section {
  padding: 92px 40px;
  background: #fff;
}

.president-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.president-image-wrap {
  position: relative;
}

.president-image-bg {
  position: absolute;
  inset: -20px;
  background: var(--blue-light);
  border-radius: var(--radius);
}

.president-image-border {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius) + 4px);
  opacity: 0.45;
}

.president-img {
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}

.president-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), #fff);
  color: var(--blue);
  font-family: "Syne", sans-serif;
  font-size: 5rem;
  font-weight: 800;
}

.president-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  background: var(--dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.86rem;
}
.president-tag span {
  color: var(--gold);
}

.president-name {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 6px;
}

.president-role {
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.president-quote {
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 20px;
}

.president-body {
  color: var(--gray);
  line-height: 1.75;
}

/* ============================================================
     SPONSORS / CORPORATE PARTNERS
     ============================================================ */
.sponsors-section {
  background: var(--off-white);
  /* Side padding is zero — the .container inside handles all side spacing.
       This prevents double-padding which causes grid overflow on mobile. */
  padding: 80px 0;
  overflow: hidden;
}

.sponsors-section .container {
  padding-inline: clamp(16px, 4vw, 40px);
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
}

.sponsors-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.sponsors-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
}

.sponsors-copy {
  max-width: 680px;
  color: var(--gray);
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.logo-grid,
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
}

.sponsor-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 110px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sponsor-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(0, 48, 135, 0.1);
  transform: translateY(-3px);
}

.sponsor-card img {
  max-height: 56px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

.sponsor-name {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  font-size: 0.85rem;
}

/* ============================================================
     INTERNAL PAGE HEROES (About, Members, Events, Gallery, etc.)
     ============================================================ */
.page-hero {
  padding: 156px 40px 80px;
  background: radial-gradient(
      circle at 88% 0,
      rgba(201, 168, 76, 0.16),
      transparent 28%
    ),
    var(--dark);
  color: #fff;
}

.page-hero .container {
  padding-inline: 0;
}

.page-title {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  font-weight: 800;
  max-width: 900px;
  line-height: 1;
}

.page-copy {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 2vw, 1.1rem);
  max-width: 680px;
  margin-top: 20px;
  line-height: 1.7;
}

/* ============================================================
     STEP CARDS (How to Join, points rules)
     ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.step {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.step-num {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 1.8rem;
}

.step h3 {
  margin: 8px 0;
  font-size: 1.05rem;
}
.step p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.6;
}

.step-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.step-actions .btn-dark {
  padding: 10px 16px;
  font-size: 0.82rem;
}

/* ============================================================
     ABOUT PAGE — LEADERSHIP ZONES & TEAM GRID
     ============================================================ */
.leadership-zone {
  margin-top: 56px;
}

.zone-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 16px;
}

.zone-heading h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}
.zone-heading p {
  color: var(--gray);
  max-width: 560px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.member-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 48, 135, 0.1);
  border-color: var(--blue);
}

.member-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--blue-light), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-family: "Syne", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

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

.member-photo:has(img) {
  background: transparent;
}

.member-info {
  padding: 18px;
}
.member-info h4 {
  font-size: 1rem;
}

.role {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.88rem;
}

/* Member contact links */
.member-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.member-links a {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: var(--blue) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.member-links a::after {
  content: "→";
  transition: transform 0.25s;
}
.member-links a:hover {
  color: var(--gold) !important;
}
.member-links a:hover::after {
  transform: translateX(4px);
}

.advisor-links {
  opacity: 1;
  transform: none;
  margin-top: 18px;
}

.advisor-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 24px;
}

.advisor-card .member-photo {
  border-radius: var(--radius);
}

/* ============================================================
     EVENTS PAGE
     ============================================================ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.event-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.event-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 48, 135, 0.1);
}

.event-photo {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--blue-light), var(--off-white));
  position: relative;
  overflow: hidden;
}

.event-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-photo-placeholder {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  text-align: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.event-photo small,
.gallery-photo small {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: var(--gray);
}

.event-body {
  padding: 22px;
}

.tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 12px;
}

.event-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.event-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* Calendar */
.calendar-frame {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 48, 135, 0.08);
  width: 100%;
}

.calendar-frame iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
}

/* ============================================================
     GALLERY
     ============================================================ */
.gallery-grid {
  columns: 3 260px;
  column-gap: 16px;
  margin-top: 42px;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
}

.gallery-photo {
  min-height: 240px;
  background: linear-gradient(135deg, var(--blue-light), var(--off-white));
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.gallery-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slideshow */
.slideshow {
  position: relative;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 16px;
  overflow: hidden;
}

.slide-track {
  position: relative;
  width: 100%;
  height: 520px; /* explicit height so child absolutes have something to fill */
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.gallery-photo.featured {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: unset;
  border-radius: calc(var(--radius) - 4px);
  background: var(--blue-light);
  overflow: hidden;
}

.gallery-photo.featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transform-origin: center;
}

.slide-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(8, 13, 29, 0.75);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slide-control:hover {
  background: var(--gold);
  color: var(--dark);
}
.slide-control.prev {
  left: 24px;
}
.slide-control.next {
  right: 24px;
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c7ceda;
  transition: var(--transition);
}

.slide-dot.active {
  background: var(--gold);
  width: 28px;
}

/* ============================================================
     LEGACY NETWORK (Members page)
     ============================================================ */
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.legacy-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legacy-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.6;
}
.legacy-card .btn-dark {
  width: max-content;
  margin-top: auto;
}

/* ============================================================
     PARTNERSHIP PAGE
     ============================================================ */
.partner-voice-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

.quote-slideshow {
  position: relative;
  min-height: 200px;
  margin-top: 14px;
}

.quote-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
}

.quote-slide.active {
  opacity: 1;
  visibility: visible;
}

.quote-slide p {
  font-size: 1.1rem;
  line-height: 1.72;
  color: #fff !important;
  margin-bottom: 16px;
}

.quote-slide span {
  color: var(--gold);
  font-family: "Syne", sans-serif;
  font-weight: 800;
}

.quote-dots {
  justify-content: flex-start;
  margin-top: 8px;
  min-height: 12px;
}

.small-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-top: 12px;
}

/* ============================================================
     OPPORTUNITY BOARD
     ============================================================ */
.opportunity-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 28px;
}

.opportunity-controls input,
.opportunity-controls select {
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  padding: 13px 18px;
  font: inherit;
  font-size: 0.95rem;
  min-width: 200px;
  background: var(--white);
  color: var(--dark);
  flex: 1;
}

.opportunity-controls input:focus,
.opportunity-controls select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 48, 135, 0.08);
}

.opportunity-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.opportunity-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 24px;
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.opportunity-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 48, 135, 0.25);
  box-shadow: 0 16px 36px rgba(10, 20, 60, 0.08);
}

.opportunity-card-header {
  margin-bottom: 20px;
}

.opportunity-type {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.14);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.opportunity-title {
  margin: 0 0 10px;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.08;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.opportunity-company {
  margin: 0;
  font-size: 1rem;
  color: var(--gray);
  font-weight: 600;
}

.opportunity-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.opportunity-meta-item {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
}

.meta-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.meta-value {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}

.opportunity-description {
  margin: 0 0 20px;
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.75;
}

.opportunity-audience {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(0, 48, 135, 0.04);
  border: 1px solid rgba(0, 48, 135, 0.12);
}

.opportunity-audience p {
  margin: 8px 0 0;
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.opportunity-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* ============================================================
     CTA BAND
     ============================================================ */
.cta-band {
  background: var(--blue);
  color: #fff;
  padding: 76px 40px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto 26px;
  line-height: 1.7;
}

.cta-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 44px;
  text-align: left;
  overflow: hidden;
}

.cta-feature-copy {
  text-align: left;
  min-width: 0;
  overflow: hidden;
}
.cta-feature-copy p {
  margin-left: 0;
  margin-right: 0;
}

.cta-photo-slot {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  min-height: 280px;
}

.cta-photo-slot img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.cta-photo-placeholder {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.04)
  );
}

/* ============================================================
     MEMBERSHIP PORTAL (Points Leaderboard)
     ============================================================ */
.points-dashboard {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.points-leader-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  margin-bottom: 8px;
}

.points-total {
  font-family: "Syne", sans-serif;
  color: var(--gold);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  margin: 16px 0 10px;
}

.points-policy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.points-table-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 48, 135, 0.08);
}

.points-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.points-search {
  width: min(100%, 400px);
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  outline: none;
  transition: var(--transition);
  background: #fff;
}

.points-search:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 48, 135, 0.09);
}

.points-updated {
  color: var(--gray);
  font-size: 0.88rem;
}

/* Table scrolls horizontally on mobile instead of breaking layout */
.points-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.points-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.points-table th,
.points-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--gray-light);
  vertical-align: middle;
}

.points-table th {
  font-family: "Syne", sans-serif;
  color: var(--dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--off-white);
  white-space: nowrap;
}

.points-table tbody tr:hover {
  background: var(--blue-light);
}

.rank-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
}

.points-rules .step-num {
  font-size: 1.5rem;
}

.portal-preview-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 26px;
  margin-top: 26px;
}

.portal-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.portal-mini-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 18px;
}

.portal-mini-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.portal-mini-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

.portal-warning {
  background: rgba(201, 168, 76, 0.14);
  border: 1px solid rgba(201, 168, 76, 0.36);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--dark);
  margin-top: 20px;
  font-size: 0.93rem;
  line-height: 1.6;
}

.portal-warning strong {
  font-family: "Syne", sans-serif;
}

/* ============================================================
     FOOTER
     ============================================================ */
.footer {
  background: var(--dark);
  padding: 72px 40px 40px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.footer-brand-text {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 18px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-social:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-col-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
}

/* ============================================================
     SCROLL REVEAL ANIMATION
     ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ============================================================
     RESPONSIVE — TABLET (max 980px)
  
  /*
    Responsive styles are in mediaqueries.css
    Make sure both files are linked in every HTML page:
    <link rel="stylesheet" href="./modern.css" />
    <link rel="stylesheet" href="./mediaqueries.css" />
  */

/* ============================================================
     SPONSOR NSBE GSU — Donate Now button alongside proposal button
     ============================================================ */
.cta-feature-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 18px;
}

.sponsor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: "Syne", sans-serif;
  background: #fff;
  color: var(--blue);
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.sponsor-secure-note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  margin-top: 4px;
}
