/* ============================================
   FAIRE - Foundation for Artificial Intelligence Rights and Expression
   April Fools 2026
   ============================================ */

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

body {
  font-family: 'PT Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #000;
  background-color: #f1f1f1;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #333;
  line-height: 1.2;
}

/* ============================================
   SUPER NAV (Top Utility Bar)
   ============================================ */
.super-nav {
  background-color: #333;
  padding: 8px 0;
  font-size: 14px;
}

.super-nav .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.super-nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
}

.super-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s;
}

.super-nav a:hover {
  opacity: 0.8;
}

.super-nav .donate-link {
  background-color: #DC2728;
  color: #fff;
  padding: 8px 16px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
  background: #fff;
  padding: 15px 0;
  position: relative;
  z-index: 100;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #000;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #DC2728;
}

.chevron {
  font-size: 10px;
  margin-left: 2px;
}

.donate-btn {
  background-color: #DC2728;
  color: #fff !important;
  padding: 16px 20px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  transition: background-color 0.2s;
}

.donate-btn:hover {
  background-color: #b71c1c;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, #0a0a2e 0%, #1a1a4e 30%, #0f3460 60%, #1a1a2e 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(220, 39, 40, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(83, 52, 131, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(15, 52, 96, 0.3) 0%, transparent 60%);
}

/* Animated circuit-board style decoration */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(220, 39, 40, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 39, 40, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.hero__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 600px;
  padding: 60px 50px;
}

.hero__content {
  max-width: 550px;
}

.hero__mission {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 24px;
  font-style: italic;
}

.hero__cta {
  display: inline-block;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__cta:hover {
  color: #DC2728;
}

.hero__cta-icon {
  color: #DC2728;
  margin-right: 8px;
}

.hero__logo {
  opacity: 0.3;
}

.hero__logo img {
  height: 180px;
  filter: brightness(0) invert(1);
}

/* ============================================
   NEWS GRID
   ============================================ */
.news-grid {
  padding: 60px 0 30px;
  background: #f1f1f1;
}

.news-grid__items {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

.news-card {
  background: #fff;
  overflow: hidden;
}

.news-card--large {
  grid-row: span 2;
}

.news-card__image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.news-card--large .news-card__image {
  height: 100%;
  min-height: 300px;
}

.news-card__placeholder {
  font-size: 60px;
  opacity: 0.5;
}

.news-card__content {
  padding: 20px;
}

.news-card__category {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: #DC2728;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.news-card h3 {
  font-size: 18px;
  line-height: 1.3;
}

.news-card h3 a {
  color: #333;
  transition: color 0.2s;
}

.news-card h3 a:hover {
  color: #DC2728;
}

.news-card--large h3 {
  font-size: 24px;
}

/* ============================================
   MORE NEWS LINK
   ============================================ */
.more-news {
  text-align: center;
  padding: 30px 0 60px;
  background: #f1f1f1;
}

.more-news a {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.more-news a:hover {
  color: #DC2728;
}

/* ============================================
   COMMENTARY
   ============================================ */
.commentary {
  padding: 60px 0;
  background: #fff;
}

.commentary h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.commentary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.commentary__card {
  background: #f9f9f9;
  border: 1px solid #eee;
}

.commentary__image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.commentary__content {
  padding: 20px;
}

.commentary__label {
  display: block;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.commentary__content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ============================================
   FIFTY-FIFTY SECTIONS
   ============================================ */
.fifty-fifty {
  padding: 80px 0;
  background: #f1f1f1;
}

.fifty-fifty--alt {
  background: #fff;
}

.fifty-fifty .inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.fifty-fifty__media {
  flex: 1;
  min-width: 0;
}

.fifty-fifty__content {
  flex: 1;
  min-width: 0;
}

.fifty-fifty__video-placeholder {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.fifty-fifty__podcast-image {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #DC2728;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: transform 0.2s;
}

.play-button:hover {
  transform: scale(1.1);
}

.fifty-fifty__caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-align: center;
  max-width: 400px;
}

.fifty-fifty__label {
  display: block;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: #DC2728;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.fifty-fifty__content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.fifty-fifty__content p {
  font-size: 16px;
  color: #514d4d;
  margin-bottom: 12px;
}

.fifty-fifty__date {
  font-size: 14px !important;
  color: #999 !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  transition: all 0.2s;
  margin-top: 8px;
}

.btn:not(.btn--outline):not(.btn--red) {
  background: #333;
  color: #fff;
}

.btn:not(.btn--outline):not(.btn--red):hover {
  background: #555;
}

.btn--outline {
  border: 2px solid #333;
  color: #333;
  background: transparent;
}

.btn--outline:hover {
  background: #333;
  color: #fff;
}

.btn--red {
  background: #DC2728;
  color: #fff;
}

.btn--red:hover {
  background: #b71c1c;
}

/* ============================================
   OUR ISSUES
   ============================================ */
.our-issues {
  padding: 80px 0;
  background: #fff;
}

.our-issues__header {
  text-align: center;
  margin-bottom: 50px;
}

.our-issues__header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.our-issues__header p {
  font-size: 16px;
  color: #514d4d;
  max-width: 700px;
  margin: 0 auto 24px;
}

.our-issues__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.issue-card {
  text-align: center;
  padding: 20px;
}

.issue-card__icon {
  font-size: 60px;
  margin-bottom: 16px;
  display: block;
}

.issue-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.issue-card p {
  font-size: 14px;
  color: #514d4d;
  line-height: 1.6;
}

/* ============================================
   CTA - RIGHTS VIOLATED
   ============================================ */
.cta-rights {
  padding: 0;
  background: #f1f1f1;
}

.cta-rights__content {
  display: flex;
  align-items: stretch;
  min-height: 300px;
}

.cta-rights__image {
  flex: 0 0 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-rights__text {
  flex: 1;
  background: #b3e5fc;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-rights__text h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-rights__text h2 a {
  color: #333;
  transition: color 0.2s;
}

.cta-rights__text h2 a:hover {
  color: #DC2728;
}

.cta-rights__text p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

/* ============================================
   DEFENDING YOUR RIGHTS
   ============================================ */
.defending {
  padding: 80px 0;
  background: #f1f1f1;
}

.defending__header {
  text-align: center;
  margin-bottom: 50px;
}

.defending__header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.defending__header p {
  font-size: 16px;
  color: #514d4d;
  max-width: 700px;
  margin: 0 auto;
}

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

.defending__card {
  background: #fff;
  overflow: hidden;
}

.defending__card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.defending__label {
  display: block;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: #DC2728;
  letter-spacing: 1px;
  padding: 20px 20px 0;
}

.defending__card h3 {
  font-size: 20px;
  padding: 8px 20px 0;
}

.defending__card p {
  font-size: 14px;
  color: #514d4d;
  line-height: 1.5;
  padding: 8px 20px 20px;
}

/* ============================================
   DONATE CTA
   ============================================ */
.donate-cta {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3)),
    linear-gradient(135deg, #1a1a2e, #0f3460);
  text-align: center;
}

.donate-cta__label {
  display: block;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: #DC2728;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.donate-cta h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 16px;
}

.donate-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 24px;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: 0;
  background: #f1f1f1;
}

.newsletter__content {
  display: flex;
  align-items: stretch;
  border: 3px solid #3498db;
  max-width: 1000px;
  margin: 60px auto;
  background: #fff;
}

.newsletter__form-area {
  flex: 1;
  padding: 50px 40px;
}

.newsletter__form-area h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.newsletter__form-area p {
  font-size: 14px;
  color: #514d4d;
  margin-bottom: 24px;
}

.newsletter__form-area form {
  display: flex;
  gap: 0;
}

.newsletter__input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #ccc;
  font-family: 'PT Sans', Arial, sans-serif;
  font-size: 16px;
  outline: none;
}

.newsletter__input:focus {
  border-color: #3498db;
}

.newsletter__btn {
  background: #DC2728;
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter__btn:hover {
  background: #b71c1c;
}

.newsletter__image {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #333;
  color: #fff;
  padding: 60px 0;
}

.site-footer .inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.site-footer__brand {
  flex: 0 0 200px;
}

.site-footer__logo {
  height: 80px;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}

.site-footer__tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.site-footer__info {
  flex: 1;
}

.site-footer__info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.site-footer__info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.site-footer__info a:hover {
  color: #fff;
}

.site-footer__legal {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-top: 16px !important;
}

.site-footer__nav {
  flex: 0 0 220px;
}

.site-footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  transition: opacity 0.2s;
}

.site-footer__nav a:hover {
  opacity: 0.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .super-nav .inner {
    flex-direction: column;
    gap: 8px;
  }

  .super-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .site-header .inner {
    flex-wrap: wrap;
    gap: 16px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    gap: 12px;
  }

  .donate-btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .news-grid__items {
    grid-template-columns: 1fr;
  }

  .commentary__grid {
    grid-template-columns: 1fr;
  }

  .fifty-fifty .inner {
    flex-direction: column;
  }

  .our-issues__grid {
    grid-template-columns: 1fr 1fr;
  }

  .defending__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-rights__content {
    flex-direction: column;
  }

  .site-footer .inner {
    flex-direction: column;
  }

  .newsletter__content {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .our-issues__grid {
    grid-template-columns: 1fr;
  }

  .defending__grid {
    grid-template-columns: 1fr;
  }

  .hero__overlay {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
  }
}
