header {
  background-image: url(../img/parade.png);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 80% 100%, 20% 100%, 0 85%);
  background-color: black;
  background-position: 100% 20%;
  color: #6d1c94;
  width: 100vw;
  h1 {
    margin-top: 0px;
  }
}
.contact-us {
  width: 100%;
}
main {
  display: flex;
  justify-content: center;
  width: 60vw;
  font-size: large;
}
.purple-sponsors {
  padding: 10px 20px;
  margin: 0 auto 20px auto;
  a {
    padding: 10px;
  }
  img {
    width: 150px;
  }
}
.main-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  max-width: 860px;
  gap: 40px;
  padding: 20px 10px;
  img {
    width: 100%;
    border-radius: 0 0 25px 25px;
  }
  .sponsor-levels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    .sponsor-purple {
      background-color: #e6ccf5;
      border: 2px solid #6d1c94;
      border-radius: 10px;
      padding: 15px;
      h2 {
        color: #6d1c94;
        span {
          color: #333;
        }
      }
      ul {
        list-style-type: disc;
        margin-left: 20px;
      }
    }
    .sponsor-gold {
      background-color: #fff0b3;
      border: 2px solid #d4af37;
      border-radius: 10px;
      padding: 15px;
      h2 {
        color: #d4af37;
        span {
          color: #333;
        }
      }
      ul {
        list-style-type: disc;
        margin-left: 20px;
      }
    }
    .sponsor-silver {
      background-color: #e6e6e6;
      border: 2px solid #c0c0c0;
      border-radius: 10px;
      padding: 15px;
      h2 {
        color: #6a6a6a;
        span {
          color: #333;
        }
      }
      ul {
        list-style-type: disc;
        margin-left: 20px;
      }
    }
    .sponsor-bronze {
      background-color: #f2d9b3;
      border: 2px solid #cd7f32;
      border-radius: 10px;
      padding: 15px;
      h2 {
        color: #cd7f32;
        span {
          color: #333;
        }
      }
      ul {
        list-style-type: disc;
        margin-left: 20px;
      }
    }
    .sponsor-mahogany {
      background-color: #d2b48c;
      border: 2px solid #8b4513;
      border-radius: 10px;
      padding: 15px;
      h2 {
        color: #8b4513;
        span {
          color: #333;
        }
      }
      ul {
        list-style-type: disc;
        margin-left: 20px;
      }
    }
  }
  .sponsor-invitation {
    text-align: center;
    button {
      background-color: #6d1c94;
      color: white;
      border: none;
      border-radius: 5px;
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      &:hover {
        background-color: #5a176f;
      }
    }
  }
}
.sponsor-tier {
  display: grid;
  place-items: center;
  column-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  max-width: calc((150px + 40px) * 4); /* cap the grid at 4 columns */
  margin: 0 auto; /* optional: center the grid */
  a {
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 10px;
    width: 80%;
    &:hover {
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transform: translateY(-5px);
      transition: all 0.3s ease;
    }
    img {
      max-width: 100%;
      max-height: 100%;
      margin: 15px 0px;
    }
  }
}
#gold-sponsors a {
  border: 5px solid transparent;
  border-bottom: 20px solid transparent;
  height: 150px;
  border-image: linear-gradient(
      45deg,
      rgba(203, 162, 0, 0.905),
      rgba(255, 230, 0, 0.667),
      rgba(255, 204, 0, 0.432)
    )
    1;
}
#silver-sponsors a {
  border: 5px solid transparent;
  border-bottom: 20px solid transparent;
  height: 100px;
  border-image: linear-gradient(
      45deg,
      rgba(192, 192, 192, 0.905),
      rgba(211, 211, 211, 0.667),
      rgba(220, 220, 220, 0.332)
    )
    1;
}
#bronze-sponsors a {
  border: 5px solid transparent;
  border-bottom: 20px solid transparent;
  height: 80px;
  border-image: linear-gradient(
      45deg,
      rgba(205, 127, 50, 0.905),
      rgba(210, 105, 30, 0.667),
      rgba(222, 184, 135, 0.332)
    )
    1;
}
#mahogany-sponsors a {
  border: 5px solid transparent;
  border-bottom: 20px solid transparent;
  height: 50px;
  border-image: linear-gradient(
      45deg,
      rgba(139, 69, 19, 0.905),
      rgba(160, 82, 45, 0.667),
      rgba(210, 180, 140, 0.332)
    )
    1;
}
.vid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin: 40px 0;
  iframe {
    width: 100%;
    height: 316px;
  }
}
.main-description {
  margin: 20px 0px;
}
.main-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  img {
    width: 30vw;
  }
}
