:root {
  --blue: #0553a1;
  --orange: #ff9e1b;
  --green: #00a651;
}

body {
  font-family: "Poppins", sans-serif;
  color: white;
  margin: 0;
  padding: 0;
  background-color: var(--blue);
  position: relative;
  overflow-x: hidden;
}

/* Header Styles */
.header-banner {
  background-color: var(--blue);
  padding: 20px;
  text-align: center;
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.header-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 120px 120px 0 0;
  border-color: var(--green) transparent transparent transparent;
  transform: rotate(0deg);
  z-index: 0;
}

.header-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 120px 120px 0;
  border-color: transparent var(--orange) transparent transparent;
  transform: rotate(0deg);
  z-index: 0;
}

.header-banner h1 {
  color: var(--orange);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  letter-spacing: 1px;
}

/* Main Content Styles */
.container-fluid {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.main-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.logo {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;
}

/* Title Styles */
.good-friends {
  font-size: 8rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.good,
.friends {
  color: white;
  -webkit-text-stroke: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.of-goodwill {
  color: white;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 8px;
  margin-bottom: 50px;
  position: relative;
  text-transform: uppercase;
}

.of-goodwill::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  border-bottom: 4px solid var(--orange);
}
/* Registration Form Styling */
.event-registration {
  margin: 0 auto;
  padding: 0.5rem 2rem 1rem;
  background-color: white;
  border-radius: 20px;
  max-width: 900px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Style the Blackbaud form container */
.event-registration [data-blackbaud-registration-form] {
  background-color: white !important;
  border-radius: 15px;
  overflow: hidden;
  min-height: 400px;
}

/* Try to style any iframes within the registration area */
.event-registration iframe {
  border-radius: 15px;
  border: none;
  width: 100% !important;
  background-color: white !important;
  min-height: 500px;
}
/* Event Details Styles */
.event-details {
  margin: 50px auto;
  max-width: 900px;
  text-align: center;
  padding-bottom: 50px;
  border-bottom: 3px solid var(--orange);
}

.event-date {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.event-time {
  color: white;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.venue {
  margin: 40px 0;
}

.venue h4 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.venue h5 {
  color: white;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
}

.event-description {
  color: white;
  font-size: 1.4rem;
  margin: 40px 0;
  font-weight: 500;
}

.address {
  margin: 40px 0 0;
}

.address p {
  color: white;
  margin: 8px 0;
  line-height: 1.6;
}

.address-line {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px !important;
  margin-top: 40px !important;
}

.parking-info,
.rideshare-info {
  font-size: 1.2rem;
}

.parking-info em,
.rideshare-info em {
  font-style: italic;
}

/* Orange Text Accent */
.orange-text {
  color: var(--orange);
  font-weight: 700;
}

/* Pre-Registration Info Section */
.pre-registration-info {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 3px solid var(--orange);
  text-align: center;
}

.mission-statement-box {
  max-width: 800px;
  margin: 30px auto 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
}

.mission-statement-box p {
  color: white;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

/* Registration Section */
.registration-section {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
}

.registration-heading {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-label {
  color: white;
  font-size: 1.3rem;
  margin: 5px 0 15px;
  line-height: 1.5;
  font-weight: 500;
}

.contact-email {
  margin-bottom: 30px;
}

.contact-email a {
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* Thank You Section */
.thank-you-section {
  max-width: 900px;
  margin: 80px auto 60px;
  padding: 40px 20px;
  text-align: center;
}

.thank-you-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
}

.thank-you-subtitle {
  color: white;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.3;
}

/* Sponsor Sections Styles */
.sponsors-section {
  margin-top: 3rem;
  border-top: 2px solid var(--orange);
  margin-bottom: 6rem;
  padding: 0 20px;
}

.sponsor-title {
  color: white;
  font-weight: 700;
  font-size: 2.8rem;
  text-transform: uppercase;
  background: var(--blue);
  padding: 0.625rem 0.938rem;
  max-width: 23.75rem;
  margin: -2.125rem auto 0.5rem;
}

.sponsor-price {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.sponsor-list {
  max-width: 1200px;
  margin: 0 auto;
}

.three-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.column {
  flex: 1;
}

.sponsor-list p {
  color: white;
  font-family: "Poppins";
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: left;
  line-height: 115%;
}

.single-column-centered {
  text-align: center;
  max-width: 400px;
}

.single-column-centered p {
  text-align: center;
}

/* Responsive Breakpoints */
@media (max-width: 1199.98px) {
  .good-friends {
    font-size: 7rem;
    letter-spacing: -1px;
  }

  .of-goodwill {
    font-size: 2rem;
    letter-spacing: 6px;
  }

  .main-content {
    padding: 30px 15px;
  }
}

@media (max-width: 991.98px) {
  .good-friends {
    font-size: 6rem;
    letter-spacing: -1px;
  }

  .header-banner h1 {
    font-size: 2rem;
  }

  .of-goodwill {
    font-size: 1.8rem;
    letter-spacing: 5px;
  }

  .event-date {
    font-size: 2.3rem;
  }

  .event-time {
    font-size: 2rem;
  }

  .venue h4 {
    font-size: 2.2rem;
  }

  .venue h5 {
    font-size: 1.8rem;
  }

  .event-description {
    font-size: 1.3rem;
  }

  .address-line {
    font-size: 1.3rem;
  }

  .contact-label {
    font-size: 1.2rem;
  }

  .registration-heading {
    font-size: 2.2rem;
  }

  .mission-statement-box {
    padding: 25px;
  }

  .mission-statement-box p {
    font-size: 1.1rem;
  }

  .thank-you-title {
    font-size: 3rem;
  }

  .thank-you-subtitle {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .header-banner {
    height: 100px;
  }

  .header-banner::before {
    border-width: 100px 100px 0 0;
  }

  .header-banner::after {
    border-width: 0 100px 100px 0;
  }

  .header-banner h1 {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .good-friends {
    font-size: 4.5rem;
    letter-spacing: 0;
  }

  .of-goodwill {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }

  .event-date {
    font-size: 2rem;
  }

  .event-time {
    font-size: 1.7rem;
  }

  .venue h4 {
    font-size: 2rem;
  }

  .venue h5 {
    font-size: 1.6rem;
  }

  .event-description {
    font-size: 1.2rem;
  }

  .address-line {
    font-size: 1.2rem;
  }

  .parking-info,
  .rideshare-info {
    font-size: 1.1rem;
  }

  .pre-registration-info {
    padding: 30px 20px;
  }

  .contact-label {
    font-size: 1.2rem;
  }

  .registration-heading {
    font-size: 2rem;
  }

  .mission-statement-box {
    padding: 20px;
  }

  .mission-statement-box p {
    font-size: 1.1rem;
  }

  .event-registration {
    padding: 25px;
    margin: 0 15px;
  }

  .thank-you-section {
    margin: 60px auto 40px;
    padding: 30px 20px;
  }

  .thank-you-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .thank-you-subtitle {
    font-size: 1.5rem;
  }

  .three-columns {
    flex-direction: column;
  }

  .column {
    width: 100%;
  }

  .sponsor-title {
    font-size: 2.2rem;
  }

  .sponsor-price {
    font-size: 1.3rem;
  }

  .sponsor-list p {
    text-align: center;
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .header-banner {
    height: 80px;
  }

  .header-banner::before {
    border-width: 80px 80px 0 0;
  }

  .header-banner::after {
    border-width: 0 80px 80px 0;
  }

  .header-banner h1 {
    font-size: 1.4rem;
  }

  .good-friends {
    font-size: 3.5rem;
    letter-spacing: 0;
  }

  .of-goodwill {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }

  .logo {
    width: 100px;
  }

  .event-date {
    font-size: 1.6rem;
  }

  .event-time {
    font-size: 1.4rem;
  }

  .venue h4 {
    font-size: 1.6rem;
  }

  .venue h5 {
    font-size: 1.3rem;
  }

  .event-description {
    font-size: 1.1rem;
  }

  .address-line {
    font-size: 1.1rem;
  }

  .parking-info,
  .rideshare-info {
    font-size: 1rem;
  }

  .contact-label {
    font-size: 1.1rem;
  }

  .contact-email a {
    font-size: 1.1rem;
  }

  .registration-heading {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .mission-statement-box {
    padding: 20px 15px;
  }

  .mission-statement-box p {
    font-size: 1rem;
  }

  .event-registration {
    padding: 20px;
    margin: 0 10px;
  }

  .thank-you-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .thank-you-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 399.98px) {
  .header-banner {
    height: 70px;
  }

  .header-banner::before {
    border-width: 70px 70px 0 0;
  }

  .header-banner::after {
    border-width: 0 70px 70px 0;
  }

  .header-banner h1 {
    font-size: 1.2rem;
  }

  .good-friends {
    font-size: 2.8rem;
    letter-spacing: 0;
  }

  .of-goodwill {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .logo {
    width: 80px;
  }

  .event-date {
    font-size: 1.4rem;
  }

  .event-time {
    font-size: 1.2rem;
  }

  .venue h4 {
    font-size: 1.4rem;
  }

  .venue h5 {
    font-size: 1.1rem;
  }

  .event-description {
    font-size: 1rem;
  }

  .address-line {
    font-size: 1rem;
  }

  .parking-info,
  .rideshare-info {
    font-size: 0.9rem;
  }

  .contact-label {
    font-size: 1rem;
  }

  .contact-email a {
    font-size: 1rem;
  }

  .registration-heading {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .mission-statement-box {
    padding: 15px;
  }

  .mission-statement-box p {
    font-size: 0.9rem;
  }

  .event-registration {
    padding: 15px;
    margin: 0 5px;
  }

  .thank-you-section {
    margin: 40px auto 30px;
    padding: 20px 10px;
  }

  .thank-you-title {
    font-size: 1.8rem;
    letter-spacing: 0;
  }

  .thank-you-subtitle {
    font-size: 1.1rem;
  }
}
