/* ============================================
   BOWDOIN SOCIALISTS — Static Site Styles
   No Readymag dependencies. Pure CSS.
   ============================================ */

/* Custom Font */
@font-face {
  font-family: 'ThatThatNewPixel';
  src: url('./assets/fonts/ThatThatNewPixel-Round.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background-color: #A2A2A2;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'ThatThatNewPixel', Arial, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, sans-serif;
  color: #282828;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

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

/* ============================================
   NAVIGATION — single top bar, no footer dupe
   ============================================ */
.site-nav {
  position: static;
  z-index: 100;
  background: transparent;
  padding: 28px 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.nav-logo img {
  height: 90px;
  width: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

.nav-link--contact {
  color: #E262D1;
}

.nav-link--join {
  color: #CC2936;
}

.nav-link--instagram {
  color: #4DA537;
}

.nav-link--press {
  color: #6CB1D2;
}

/* ============================================
   HERO / HEADER
   ============================================ */
.site-header {
  text-align: center;
  padding: 0 40px 32px;
}

.site-tagline {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.1;
  color: #282828;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CONTENT GRID — 3-column panels
   ============================================ */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 40px 60px;
  max-width: 2000px;
  margin: 0 auto;
  align-items: start;
}

.content-panel {
  border: 1.5px solid #282828;
  overflow: hidden;
  background: #FFFFFF;
}

.content-panel a {
  display: block;
  width: 100%;
  height: 100%;
}

.content-panel img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   PRESS PAGE
   ============================================ */
.page-title {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 36px;
  text-align: center;
  margin: 40px 0 48px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.press-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px 80px;
  text-align: center;
}

.press-item {
  margin-bottom: 36px;
}

.press-item__title {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  margin-bottom: 6px;
}

.press-item__title a {
  text-decoration: underline;
}

.press-item__source {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 20px;
  margin-bottom: 16px;
}

.press-item__quote {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  color: #282828;
}

.press-item__attribution {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 28px;
}

.press-item__attribution a {
  text-decoration: underline;
}

/* ============================================
   BRACE BELDEN EVENT PAGE
   ============================================ */
.event-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.event-hero {
  text-align: center;
  margin-bottom: 32px;
}

.event-hero img {
  max-width: 480px;
  margin: 0 auto;
}

.event-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.event-details {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
}

.event-details p {
  margin-bottom: 20px;
}

.event-details .reschedule {
  text-decoration: underline;
  font-weight: 700;
}

.event-details .zoom-link {
  word-break: break-all;
}

.event-details .zoom-link a {
  text-decoration: none;
}

.date-change-img {
  width: 90px;
  height: auto;
  margin: 12px auto;
}

.event-bio {
  font-family: 'ThatThatNewPixel', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
}

.event-bio p {
  margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .site-nav {
    padding: 14px 20px;
    gap: 12px;
  }

  .nav-logo {
    margin-bottom: 0;
  }

  .nav-logo img {
    height: 50px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .site-header {
    padding: 0 24px 20px;
  }

  .site-tagline {
    font-size: 16px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
    gap: 20px;
    max-width: 500px;
  }

  .page-title {
    font-size: 26px;
    margin: 24px 0 28px;
  }

  .press-section {
    padding: 0 24px 60px;
  }

  .press-item__title,
  .press-item__source,
  .press-item__quote,
  .press-item__attribution {
    font-size: 16px;
  }

  .event-page {
    padding: 0 24px 60px;
  }

  .event-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .event-details,
  .event-bio {
    font-size: 16px;
  }

  .event-hero img {
    max-width: 100%;
  }
}

