@import url("/topnav-footer.css");
@import url("/controls/announcements/announcements.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");

/* ================================
   THEME VARIABLES
   Change colors/fonts here
=================================== */
:root {
  /* Fonts */
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  /* Core colors */
  --color-body-bg: #000000;
  --color-body-text: #ffffff;
  --color-panel-bg: #111111;
  --color-panel-border: #1f2937;

  /* Accent colors */
  --color-blue-main: #1d4ed8; /* nav hover, submenu active */
  --color-blue-light: #2563eb; /* footer headings */
  --color-announcement-label: #3b82f6;
  --color-highlight: #facc15; /* your name in footer */

  /* Grays */
  --color-gray-light: #d1d5db;
  --color-gray-mid: #d4d4d4;
  --color-gray-soft: #e5e7eb;
  --color-gray-muted: #9ca3af;

  /* Footer links */
  --color-footer-link: #f9fafb;

  /* Sections */
  --color-section-light: #ffffff;

  /* Shadows */
  --shadow-sponsor: 0 4px 12px rgba(0, 0, 0, 0.08);

  /* Misc */
  --arrow-color-hero: #ffffff;
  --arrow-color-team: #000000;
}

/* === GLOBAL / BODY === */

body {
  margin: 0;
  background: var(--color-body-bg);
  color: var(--color-body-text);
  font-family: var(--font-base);
}

/* DROPDOWN MENUS */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-panel-bg);
  min-width: 220px;
  padding: 12px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 50;
}

.dropdown li a {
  display: block;
  padding: 8px 16px;
  color: var(--color-body-text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dropdown li a:hover {
  background: var(--color-panel-border);
}

/* show dropdown on hover */
.nav-item.has-dropdown:hover .dropdown {
  display: block;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%
}

/* === GENERIC INNER PAGES === */

.page-content {
  background: var(--color-section-light);
  color: var(--color-body-bg);
  padding: 60px 16px;
}

.page-title {
  max-width: 1100px;
  margin: 0 auto 24px;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb {
  max-width: 1100px;
  margin: 0 auto 40px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-body-bg);
}

.breadcrumb a {
  color: var(--color-blue-main);
  text-decoration: none;
  font-weight: 700;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-article {
  max-width: 1100px;
  margin: 0 auto;
}

/* === INNER PAGE ARTICLE CONTENT (Be The Change, etc.) === */

.article-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 40px auto 18px;
  max-width: 900px;
  color: var(--color-body-bg);
}

.article-hero {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto 24px;
  height: auto;
}

.article-text {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1rem;
  color: var(--color-body-bg);
}

blockquote {
  background: white;
  color: black;
  font-size: 24px;
  font-weight: bold;
  margin: auto;
  padding: 0.5em 10px;
  width: 80%;
  display: table;
  text-align: center;
}

/* === SOCIAL MEDIA LINKS === */
.social-group {
  display: flex;
  gap: 15px;
  justify-content: left;
}

.social-link {
    width: 50px;
    height: 50px;
    line-height: 50px; /* Vertically centers icon */
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 20px;
    background-color: #333;
    transition: background-color 0.3s;
    margin-right: 10px;
}

.social-link:hover {
  color: #555; /* Change color on hover */
}
