:root{
  --brand-navy:#0b2a4a;
  --brand-red:#c1121f;
  --brand-blue:#0a4aa6;
  --ink:#0f172a;
  --muted:#475569;
  --social-zoom-scale: 2;
}

body{ color: var(--ink); }
.section-pad{ padding: 3rem 0; }
.bg-navy{ background: var(--brand-navy); color:#fff; }
.bg-red{ background: var(--brand-red); color:#fff; }

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

/* Beliefs */
.beliefs h2{
  letter-spacing: .02em;
  font-weight: 800;
}
.belief-item .k{
  font-weight: 800;
  font-style: italic;
}
.belief-item .v{
  color: rgba(255,255,255,.9);
}

/* Cards / panels */
.panel{
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 1rem;
  background:#fff;
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
}

/* Small helper for icon circles (replace with SVGs later if you want) */
.icon-pill{
  width: 40px; height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(193,18,31,.08);
  color: var(--brand-red);
  font-weight: 800;
  flex: 0 0 auto;
}

/* Optional: keep section headings consistent */
.section-title{
  font-weight: 900;
  letter-spacing:.01em;
}

.mra-banner{
  background: var(--brand-red); /* your Republican red */
}

.mra-banner-inner{
  color: #fff;
  text-align: center;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0.75rem 0.5rem;
  font-size: clamp(1rem, 3vw, 1.5rem); /* responsive sizing */
}

.mra-logo{
  max-height: 170px;
  width: auto;
}

.mra-logo-panel{
  background: #fff;
}

.mra-tagline-panel{
  background: var(--brand-navy);
  color:#fff;
  min-height: 220px; /* controls top row height */
}

.mra-cta{
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.mra-tagline{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 1.5rem; /* keeps it visually below buttons */
}

.mra-tagline-text{
  font-style: italic;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: clamp(1.2rem, 2.4vw, 2.2rem);
  line-height: 1.15;
}

/* Red banner */
.mra-banner{
  background: var(--brand-red);
}
.mra-banner-inner{
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;

  /* Make it fill the bar better */
  padding: 1.15rem .75rem;
  font-size: clamp(1.6rem, 3.2vw, 3.0rem);
  line-height: 1.05;
}

/* Hero split */
.mra-hero-photo{
  background:#000; /* helps while image loads */
  height: 885px;   /* controls hero height (make 300-450 as desired) */
}
.mra-hero-photo img{
  width:100%;
  height:100%;
  object-fit: cover; /* prevents “too tall” + keeps nice crop */
  display:block;
}

.mra-hero-copy{
  background: var(--brand-navy);
  color:#fff;
  height: 885px; /* match photo height */
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 1.25rem;
}

.mra-hero-copy-inner{
  font-style: italic;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.55;
  font-size: clamp(1.1rem, 2.5vw, 3.5rem);
}

/* Mobile tweaks */
@media (max-width: 991.98px){
  .mra-tagline-panel{
      min-height: 240px;
      padding-bottom: 12px;
  }
  .mra-hero-photo, .mra-hero-copy{ height: auto; }
  .mra-hero-photo img{ height: 885px; }
  .mra-cta{ position: static; justify-content: center; margin-bottom: .75rem; }
  .mra-tagline{
      height: auto;
      padding-top: .25rem;
      padding-bottom: .75rem;
  }
  .mra-tagline-text{
      margin: 0;
      line-height: 1.1;
  }
}

.whatwedo-icon{
  width: 64px;        /* controls visible size */
  height: 64px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatwedo-icon img{
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.event-media{
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
  background: #fff;
}

/* Keeps it “poster-like” and avoids weird stretching */
.event-media img{
  width: 100%;
  height: 360px;        /* adjust 300–420 based on your image */
  object-fit: cover;    /* crop instead of squish */
  object-position: 50% 20%;
  display: block;
}

/* On small screens, let it be a little shorter */
@media (max-width: 575.98px){
  .event-media img{ height: 260px; }
}

/* Left logo card */
.event-logo-card{
  border-radius: 1rem;
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
  background: #fff;
  padding: 1.25rem;
}

/* Image container fills available height */
.event-logo-media{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;   /* safety for small screens */
}

/* The logo itself */
.event-logo-media img{
  width: 100%;
  height: 100%;
  max-height: 420px;   /* prevents it from getting ridiculous on big screens */
  object-fit: contain; /* IMPORTANT: no cropping */
  display: block;
}

.tooltip-container {
    position: relative;
    cursor: pointer;
}
.tooltip-container::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
    font-size: 0.875rem;
}
.tooltip-container:hover::after {
    opacity: 1;
    visibility: visible;
}

.footer-logo{
  max-height: 48px;   /* try 40–64px */
  width: auto;
  display: block;
  filter: brightness(1.05) contrast(1.05);
}

.footer-inner{
  align-items: center;
}

.footer-left{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    vertical-align: middle;
}
.footer-social a:hover svg {
    transform: scale(var(--social-zoom-scale));
    transition: transform 0.2s;
}
