/* ==========================================================================
   Fix Our Roads CC - Static Rebuild
   Original: Avada WordPress Theme (2016)
   Rebuilt: 2026 - Pixel-perfect static HTML/CSS
   ========================================================================== */

/* --- Site Notice Bar --- */
.site-notice-bar {
  background: #1a1a2e;
  color: #d4d4e0;
  text-align: center;
  padding: 6px 16px;
  font-size: 12px;
  line-height: 1.4;
  min-height: 29px;
  font-style: italic;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #747474;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Skip Link (WCAG 2.4.1) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: #1a3a5c;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

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

a {
  color: #3f7ccd;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #2d69b6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }

p {
  margin-bottom: 15px;
}

ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

ul li {
  margin-bottom: 8px;
}

strong, b {
  font-weight: 700;
}

sup {
  font-size: 0.7em;
  vertical-align: super;
}

/* --- Layout --- */
.wrapper {
  width: 100%;
  overflow: hidden;
}

.fusion-row {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Header --- */
.fusion-header-wrapper {
  width: 100%;
  background: #fff;
  z-index: 1000;
  position: relative;
}

.fusion-header {
  text-align: center;
  padding: 5px 0 10px;
}

.fusion-logo {
  display: inline-block;
  padding: 31px 0;
}

.fusion-logo a {
  display: inline-block;
}

.fusion-logo img {
  max-width: 492px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* --- Navigation --- */
.fusion-secondary-main-menu {
  background: #fff;
  border-bottom: 3px solid #3f7ccd;
}

.fusion-main-menu {
  text-align: center;
}

.fusion-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}

.fusion-menu > li {
  position: relative;
  margin: 0;
}

.fusion-menu > li > a {
  display: block;
  padding: 15px 22px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s, background 0.2s;
}

.fusion-menu > li > a:hover,
.fusion-menu > li.current-menu-item > a {
  color: #2d69b6;
}

.fusion-menu > li > a .menu-text {
  display: inline;
}

/* Dropdown */
.fusion-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 100;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fusion-menu > li:hover > .sub-menu {
  display: block;
}

.fusion-menu .sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.fusion-menu .sub-menu li a:hover {
  background: #f5f5f5;
  color: #2d69b6;
}

/* Mobile menu */
.fusion-mobile-nav-holder {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  text-align: center;
  padding: 12px;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  background: none;
  border: none;
  width: 100%;
}

.mobile-menu-toggle .hamburger {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #333;
  position: relative;
  vertical-align: middle;
  margin-right: 8px;
}

.mobile-menu-toggle .hamburger::before,
.mobile-menu-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #333;
  left: 0;
}

.mobile-menu-toggle .hamburger::before { top: -6px; }
.mobile-menu-toggle .hamburger::after { top: 6px; }

.mobile-nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav li a {
  display: block;
  padding: 12px 20px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #eee;
}

.mobile-nav li a:hover {
  color: #3f7ccd;
}

/* --- Slider / Hero --- */
.fusion-slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.fusion-slider-container .slide {
  position: relative;
  width: 100%;
  height: 500px;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.slide-content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.slide-content {
  text-align: center;
  padding: 20px;
}

.slide-content .heading {
  margin-bottom: 30px;
}

.slide-content .heading .fusion-title-wrapper {
  background-color: rgba(0,0,0,0.4);
  display: inline-block;
  padding: 15px 30px;
}

.slide-content .heading h2 {
  color: #fff;
  font-size: 65px;
  line-height: 78px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  margin: 0;
}

/* Page Title Bar (sub-page heroes) */
.fusion-page-title-bar {
  position: relative;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fusion-page-title-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
}

.fusion-page-title-bar h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Buttons --- */
.fusion-button {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
}

.fusion-button-default {
  background: #3e7ccc;
  color: #fff;
}

.fusion-button-default:hover {
  background: #2d69b6;
  color: #fff;
}

.fusion-button-blue {
  background: #3f7ccd;
  color: #fff;
}

.fusion-button-blue:hover {
  background: #2d69b6;
  color: #fff;
}

/* --- Full-Width Sections --- */
.fusion-fullwidth {
  width: 100%;
  position: relative;
}

.fusion-fullwidth-content {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding-large {
  padding: 90px 15%;
}

.section-bg-white {
  background-color: #fff;
}

.section-bg-blue {
  background-color: #3f7ccd;
  color: #fff;
}

.section-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* --- Title / Separator --- */
.fusion-title {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.fusion-title .title-sep {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

.fusion-title h1,
.fusion-title h2 {
  white-space: nowrap;
}

/* --- Columns --- */
.fusion-columns {
  display: flex;
  flex-wrap: wrap;
}

.fusion-one-fourth {
  width: 25%;
  padding: 0 15px;
}

.fusion-three-fourth {
  width: 75%;
  padding: 0 15px;
}

/* --- Color classes --- */
.color-white,
.color-white p,
.color-white li,
.color-white a {
  color: #fff;
}

.color-white a:hover {
  color: #ddd;
}

/* Yes on 5 colored text */
.yes-blue {
  font-size: 1.6em;
  color: #0070c0;
  font-weight: 700;
}

.on-white {
  font-size: 1.3em;
  color: #fff;
  font-weight: 700;
}

.five-red {
  font-size: 1.6em;
  color: #ff0000;
  font-weight: 700;
}

.fix-white {
  font-size: 1.3em;
  color: #fff;
  font-weight: 700;
}

/* --- Get The Facts alternating sections --- */
.facts-section {
  display: flex;
  min-height: 400px;
}

.facts-section .facts-image {
  width: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 400px;
}

.facts-section .facts-content {
  width: 50%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facts-section .facts-content h2 {
  margin-bottom: 20px;
}

.facts-section .facts-content p {
  margin-bottom: 15px;
}

.facts-content-gray {
  background-color: #ececec;
}

/* --- Endorsements --- */

/* Centered endorsement sections */
.endorsement-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 30px 15%;
  text-align: center;
}

.endorsement-heading {
  font-size: 28px;
  font-weight: 300;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  margin-bottom: 20px;
}

/* Featured endorsements (2-column text list) */
.featured-endorsements {
  display: inline-flex;
  gap: 60px;
  margin-bottom: 30px;
  text-align: left;
}

.featured-column {
  font-size: 14px;
  line-height: 2.2;
}

.featured-column a {
  color: #747474;
}

.featured-column a:hover {
  color: #3f7ccd;
}

.business-columns {
  display: inline-flex;
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.business-column {
  font-size: 13px;
  line-height: 2;
}

.organization-columns {
  display: inline-flex;
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.organization-column {
  flex: 1;
  font-size: 13px;
  line-height: 2;
}

.endorsement-callout {
  padding: 60px 15%;
  text-align: center;
}

.endorsement-callout p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.endorsement-callout-blue {
  background: #3f7ccd;
  color: #fff;
}

.endorsement-callout-blue p {
  color: #fff;
}

.endorsement-callout-white {
  background: #fff;
  color: #333;
}

/* --- Executive Committee --- */
.committee-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 15%;
}

.committee-member {
  text-align: center;
  width: 150px;
}

.committee-member .member-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #f0f0f0;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.committee-member .member-icon svg {
  width: 50px;
  height: 50px;
  fill: #999;
}

.committee-member .member-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

/* --- Forms --- */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 13px;
  color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 0;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3f7ccd;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-checkboxes {
  margin: 20px 0;
}

.form-checkboxes label {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.form-checkboxes input[type="checkbox"] {
  margin-right: 8px;
}

input[type="submit"],
button.submit-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #3e7ccc;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

input[type="submit"]:hover,
button.submit-btn:hover {
  background: #2d69b6;
}

/* --- Footer --- */
.fusion-footer-widget-area {
  background: #363839;
  color: #aaa;
  padding: 50px 0;
}

.footer-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.fusion-footer-widget-area h4 {
  color: #ddd;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fusion-footer-widget-area a {
  color: #6ba3e8;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.fusion-footer-widget-area a:hover {
  color: #8bbcf0;
  text-decoration-thickness: 2px;
}

.fusion-footer-columns {
  display: flex;
  gap: 30px;
}

.fusion-footer-col {
  flex: 1;
  padding: 0 15px;
}

.fusion-footer-col img {
  max-width: 250px;
}

/* Copyright footer */
.fusion-footer-copyright {
  background: #282a2b;
  color: #aaa;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

.fusion-social-links-footer {
  margin-top: 10px;
}

.fusion-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2f3032;
  color: #838d8f;
  margin: 0 3px;
  font-size: 16px;
  transition: background 0.2s;
  text-decoration: none;
}

.fusion-social-icon:hover {
  background: #3f7ccd;
  color: #fff;
}

.fusion-social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- Video Embeds --- */
.video-container {
  text-align: center;
  max-width: 1220px;
  margin: 0 auto;
}

.video-container video {
  border-radius: 4px;
  background: #000;
}

.video-caption {
  margin-top: 8px;
  font-size: 15px;
  color: #555;
  font-style: italic;
}

/* --- Focus Styles (ADA/Section 508) --- */
a:focus-visible,
button:focus-visible,
.fusion-button:focus-visible,
.fusion-social-icon:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #3f7ccd;
  outline-offset: 2px;
}

/* --- Link Distinguishability (non-color indicator) --- */
.fusion-fullwidth-content a:not(.fusion-button) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.fusion-fullwidth-content a:not(.fusion-button):hover {
  text-decoration-thickness: 2px;
}

/* --- iOS Safari Parallax Fallback --- */
@supports (-webkit-touch-callout: none) {
  .section-parallax {
    background-attachment: scroll;
  }
}

/* --- Responsive --- */
@media only screen and (max-width: 1024px) {
  .section-padding-large {
    padding: 60px 8%;
  }

  .fusion-one-fourth,
  .fusion-three-fourth {
    width: 100%;
    padding: 0;
  }

  .facts-section {
    flex-direction: column;
  }

  .facts-section .facts-image {
    width: 100%;
    min-height: 300px;
  }

  .facts-section .facts-content {
    width: 100%;
    padding: 40px 20px;
  }

  .facts-section.reverse {
    flex-direction: column;
  }

  .endorsement-section {
    padding: 30px 5%;
  }

  .featured-endorsements,
  .business-columns,
  .organization-columns {
    display: flex;
    flex-direction: column;
  }

  .fusion-footer-columns {
    flex-direction: column;
    text-align: center;
  }

  .fusion-footer-col img {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 800px) {
  .fusion-main-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .fusion-mobile-nav-holder {
    display: block;
  }

  .fusion-slider-container,
  .fusion-slider-container .slide {
    height: 350px;
  }

  .slide-content .heading h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .fusion-page-title-bar {
    height: 180px;
  }

  .fusion-page-title-bar h1 {
    font-size: 24px;
  }

  .section-padding-large {
    padding: 40px 5%;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .committee-grid {
    padding: 40px 5%;
  }

  .endorsement-callout {
    padding: 40px 5%;
  }
}

@media only screen and (max-width: 480px) {
  .fusion-slider-container,
  .fusion-slider-container .slide {
    height: 250px;
  }

  .slide-content .heading h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .fusion-logo img {
    max-width: 280px;
  }

}
