@font-face {
  font-family: 'Bebas Neue';
  src: url('assets/fonts/BEBASNEUE.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-navy: #284460;
  --color-gold: #e4ddc6;
  --color-orange: #c97020;
  --color-dark-bg: #111111;
  --color-gray-bg: #cbcac7;
  --color-white: #ffffff;

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-heading: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body,
html {
  font-family: var(--font-body);
  background: var(--color-dark-bg);
  font-size: 22px;
}

/* ─── Hero ───────────────────────────────────────────────────────── */

.hero {
  background: url('assets/images/mckinney_bg_texture.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero__visuals {
  width: 100%;
  height: 80vh;
  min-height: 515px;
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.hero__mckinney_mic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-46%, -28%);
  height: 130%;
  width: auto;
  z-index: 3;
}

/* Fan group: sizes to the image so labels can be % of the fan, not the container */
.hero__fan-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  height: 110%;
}

.hero__money-fan {
  display: block;
  height: 100%;
  width: auto;
}

.hero__mckinney {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 100%;
  width: auto;
  max-height: 100vh;
  z-index: 3;
  transform: translateX(-50%);
}

.hero__labels {
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__label {
  position: absolute;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.55rem, 1.10rem, 2rem);
  line-height: 1;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero__label--big-oil {
  top: 17%;
  left: 7%;
  transform: rotate(-9deg);
}

.hero__label--tech {
  top: 5.5%;
  left: 27%;
  transform: rotate(9deg);
}

.hero__label--banks {
  top: 4.5%;
  left: 42%;
  transform: rotate(19deg);
}

.hero__label--drug {
  top: 10%;
  left: 55%;
  transform: rotate(28deg);
}

.hero__label--maga {
  top: 31%;
  left: 76%;
  transform: rotate(41deg);
}

.desktop_only__maga {
  display: block;
}

.mobile_only__maga {
  display: none;
  top: 30%;
  left: 81%;
  transform: rotate(41deg);
}

/* MOBILE screens */
@media (max-width: 576px) {

  .hero__visuals {
    min-height: 70vw !important;
  }

  .hero__fan-group {
    top: 20% !important;
  }

  .hero__mckinney_mic {
    transform: translate(-46%, -18%) !important;
    height: 175%;
  }

  .hero__label--big-oil {
    top: 7.5%;
    left: 7%;
    transform: rotate(-9deg);
  }

  .hero__label--tech {
    top: -8%;
    left: 23%;
    transform: rotate(7deg);
  }

  .hero__label--banks {
    top: -12%;
    left: 42%;
    transform: rotate(16deg);
  }

  .hero__label--drug {
    top: -1%;
    left: 55%;
    transform: rotate(28deg);
  }

  .hero__label--maga {
    top: 22%;
    left: 80%;
    transform: rotate(41deg);
  }

}

/* MEDIUM screens */
@media (max-width: 768px) {

  .on_mobile__citations {
    min-height: 40vh !important;
    transform: scale(1);
  }

  .desktop_only__maga {
    display: none;
  }

  .mobile_only__maga {
    display: block;
  }

  .hero__visuals {
    min-height: 59vw;
  }

  .hero__fan-group {
    top: 5%;
    transform: translateX(-50%);
    height: auto;
    width: 100%;
  }

  .hero__money-fan {
    width: 100%;
    height: auto;
  }

  .hero__label {
    font-size: clamp(0.80rem, 2.2vw, 1.35rem);
  }

  .hero__mckinney_mic {
    transform: translate(-48%, -28%);
  }
}

/* LARGE screen */
@media (max-width: 1200px) {
  .desktop_only__maga {
    display: none;
  }

  .mobile_only__maga {
    display: block;
  }

  .hero__visuals {
    height: 57vw;
    min-height: 400px;
  }

  .hero__fan-group {
    top: 12%;
    transform: translateX(-48%);
    height: auto;
    width: 110%;
  }

  .hero__money-fan {
    width: 100%;
    height: auto;
  }

  .hero__label {
    font-size: clamp(0.80rem, 2.2vw, 1.35rem);
  }

  .hero__mckinney_mic {
    transform: translate(-48%, -23%);
  }
}

.hero__bar {
  background: var(--color-navy);
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--color-white);
  letter-spacing: 0.06em;
  line-height: 1.10;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px black;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--color-gold);
  line-height: 0.93;
  letter-spacing: 0.01em;
  text-shadow: 0 0 22px black;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ─── Content ────────────────────────────────────────────────────── */

.content {
  background: var(--color-gray-bg);
  padding: 2.25rem 0;
  position: relative;
  overflow: hidden;

  @media(max-width: 992px) {
    padding-bottom: 0;
  }
}

.content__badge {
  display: block;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem 0 1.1rem;
  border-radius: 0;
  width: fit-content;
  margin: 0 auto 3rem auto;
}

.content__inner {
  max-width: 960px;
  position: relative;
  z-index: 100;
}

.content__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--color-navy);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.content__body {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.55;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
}

.content__vote-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.content__vote-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.content__vote-list li {
  position: relative;
  padding-left: 2rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 0.65rem;
}

.content__vote-list li::before {
  content: '➜';
  position: absolute;
  left: 0;
  color: var(--color-orange);
}

.content__citations-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-orange);
  margin-bottom: 0.4rem;
}

.content__citations {
  font-size: 0.7rem;
  line-height: 1.45;
  color: #333;
  padding-bottom: 2rem;
  z-index: 400;

  @media (min-width: 992px) {
    max-width: 80%;
  }
}

.on_desktop__citations {
  display: block;
}

.on_mobile__citations {
  display: none;
  margin: 1rem 0;
  padding: 0 1rem;
}

@media (max-width: 1200px) {
  .on_desktop__citations {
    display: none;
  }

  .on_mobile__citations {
    display: block;
  }

  .content__mobile-photo-row {
    display: flex;
    position: relative;
  }

  .content__mobile-photo-row .on_mobile__citations {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 0;
    position: relative;
    z-index: 1;
    min-height: 55vh;
  }

  .content__mobile-photo-row .content__photo {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    transform: none;
  }
}

.content__photo {
  position: absolute;
  bottom: 0;
  right: -10%;
  height: 100%;
  width: auto;
  max-height: 140vh;
  z-index: 1;

  @media(max-width: 1200px) {
    right: 0 !important;
    height: auto !important;
    width: 100% !important;
    margin: 0 !important;
    transform: translateY(-18%) !important;
  }

  @media(max-width: 576px) {
    transform: scale(1.5) translateY(-10%) !important;
  }
}

/* ─── Footer ─────────────────────────────────────────────────────── */

.footer {
  background: var(--color-navy);
  text-align: center;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer__taglines {
  padding: 4rem 1rem;
}

.footer__line1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 3rem, 6rem);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.footer__line2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.25rem, 4rem);
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* ─── Disclaimer ─────────────────────────────────────────────────── */

.disclaimer-wrap {
  width: 100%;
  height: auto;
  padding: 2rem 0;
  margin: 0;
  background: url('assets/images/mckinney_bg_texture.jpg') center center / cover no-repeat;
}

.disclaimer {
  text-align: center;
  padding: 8px 2rem;
  width: fit-content;
  font-size: 0.55rem;
  text-transform: uppercase;
  height: auto;
  margin: 1rem auto;
  border: 1px solid #888;
  color: #888;
}

.disclaimer p {
  font-size: 0.75rem;
  color: #888;
}