@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap");
.navbar {
  position: fixed;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: visible;
}
.navbar .icons {
  display: flex;
  gap: 2vw;
}
.navbar .icons i {
  font-size: 32px;
  color: rgb(250, 250, 250);
  transition: transform 100ms ease-in, color 100ms ease-in;
}
.navbar .icons i:hover {
  transform: translateY(-2px) scale(1.05);
  color: rgb(250, 200, 0);
}
.navbar .icons a img {
  height: 88px;
  width: auto;
  margin: 3px 2vw 0 0;
}
.navbar .icons a .home:hover {
  border: 1px solid rgb(250, 250, 250);
}
.navbar .icons a .invert {
  filter: invert(1);
}
.navbar .icons a .invert:hover {
  border: 1px solid black;
}
.navbar .nav-menu {
  display: flex;
  gap: 2vw;
  align-items: center;
  text-align: center;
}
.navbar .nav-menu .nav-item {
  text-decoration: none;
  position: relative;
  color: rgb(250, 250, 250);
  font-size: 24px;
  font-weight: 300;
}
.navbar .nav-menu .nav-item::after {
  content: "";
  width: 0%;
  height: 1px;
  transition: width 200ms ease-in;
  background-color: rgb(250, 250, 250);
  position: absolute;
  top: 31px;
  left: 1px;
}
.navbar .nav-menu .nav-item:not(.dropdown):hover::after {
  width: 100%;
}
.navbar .nav-menu #donate {
  background-color: rgb(250, 200, 0);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
}
.navbar .nav-menu #donate::after {
  display: none;
}
.navbar .nav-menu #donate:hover {
  box-shadow: 0px 2px 10px 1px rgb(250, 200, 0);
}
.navbar .nav-menu .dropdown {
  position: relative;
  cursor: pointer;
  display: inline-block; /* <-- parent width follows the title */
}
.navbar .nav-menu .dropdown .dropdown-title {
  display: inline-block; /* size follows the text */
  padding: 0.5rem 1rem;
  position: relative;
}
.navbar .nav-menu .dropdown .dropdown-title::after {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-left: 0.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  transition: transform 300ms ease;
}
.navbar .nav-menu .dropdown:hover .dropdown-title::after {
  transform: rotate(180deg);
}
.navbar .nav-menu .dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 25px); /* just below the title */
  left: 0; /* align with the title's left edge */
  transform: translateY(-10px); /* initial animation offset */
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%; /* <-- same width as the .dropdown (title) */
  min-width: 0; /* remove the hard min width */
  text-align: center;
  flex-direction: column;
  z-index: 999; /* ensure it sits above other elements */
  transition: opacity 300ms ease, transform 300ms ease, visibility 300ms ease;
  margin-top: 0;
  box-sizing: border-box; /* include padding in width measurement */
}
.navbar .nav-menu .dropdown .dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: rgb(250, 250, 250);
  text-decoration: none;
  transition: background 200ms ease-in;
  white-space: normal; /* allows wrapping if a menu item is wider */
  overflow-wrap: anywhere; /* break long URLs if needed */
}
.navbar .nav-menu .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar .nav-menu .dropdown:hover .dropdown-title {
  position: relative;
}
.navbar .nav-menu .dropdown:hover .dropdown-title::before {
  content: "";
  position: absolute;
  top: -31px;
  left: 0;
  right: 0;
  bottom: -31px;
  z-index: -1;
}

.hamburger {
  display: none;
}
.hamburger .bar {
  display: block;
  width: 50px;
  height: 6px;
  margin: 10px auto;
  transition: all 0.3s ease-in-out;
  background-color: rgb(250, 250, 250);
}

@media (max-width: 1300px) {
  .navbar {
    justify-content: space-between;
    padding: 0 8vw;
  }
  .navbar .nav-menu {
    position: fixed;
    right: -100%;
    top: 95px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }
  .navbar .nav-menu .nav-item {
    padding: 1rem 8vw;
  }
  .navbar .nav-menu .nav-item::after {
    display: none;
  }
  .navbar .nav-menu .nav-item:hover {
    font-weight: 600;
  }
  .navbar .nav-menu #donate {
    padding: 1rem 0;
    width: 100%;
    border-radius: 0;
    background-color: rgba(250, 200, 0, 0.8);
  }
  .navbar .nav-menu #donate:hover {
    box-shadow: 0px 2px 10px 1px rgba(250, 200, 0, 0.8);
  }
  .navbar .nav-menu .dropdown {
    max-width: 50vw;
    text-align: center;
  }
  .navbar .nav-menu .dropdown:hover .dropdown-menu {
    max-height: none;
  }
  .navbar .nav-menu .dropdown .dropdown-menu {
    transition: max-height 0.3s ease;
    font-weight: 300;
    position: relative;
    z-index: 0;
    max-width: 50vw;
    background-color: transparent;
    text-align: center;
    flex-direction: column;
    max-height: 0;
  }
  .navbar .nav-menu .dropdown .dropdown-menu a:hover {
    font-weight: 600;
    background-color: transparent;
  }
  .navbar .nav-menu.active {
    right: 0;
  }
  .navbar .hamburger {
    display: block;
    cursor: pointer;
  }
  .navbar .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .navbar .hamburger.active .bar:nth-child(1) {
    transform: translateY(16px) rotate(45deg);
  }
  .navbar .hamburger.active .bar:nth-child(3) {
    transform: translateY(-16px) rotate(-45deg);
  }
}
@media (max-width: 500px) {
  .navbar .nav-menu .dropdown {
    max-width: 100%;
  }
  .navbar .nav-menu .dropdown .dropdown-menu {
    max-width: 100%;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem 1rem;
  background-color: rgb(60, 72, 88);
  color: rgb(250, 250, 250);
  font-size: 18px;
  margin-top: 2vw;
}
.footer .title {
  text-transform: uppercase;
  font-weight: 700;
}
.footer .content {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.footer .content a {
  color: rgb(250, 250, 250);
  font-size: 48px;
}
.footer .content a i {
  transition: transform 100ms ease-in, color 100ms ease-in;
}
.footer .content a i:hover {
  transform: translateY(-2px) scale(1.15);
  color: rgb(250, 200, 0);
}
.footer .copywrite {
  margin-top: 1rem;
  font-size: 16px;
}
.footer .copywrite .name {
  box-shadow: inset 0 -0.125rem 0 rgb(250, 200, 0);
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  color: rgb(250, 200, 0);
  text-decoration: none;
  display: inline-block;
}
.footer .copywrite .name:hover {
  background-color: rgb(250, 200, 0);
  color: rgb(250, 250, 250);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.landing {
  background-image: url("/sponsor-us/main-background.webp");
  background-position: bottom;
  background-attachment: fixed;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: soft-light;
}
.landing .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
}
.landing .hero .title {
  color: rgb(250, 250, 250);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  padding: clamp(4rem, 10vw, 6rem) 0;
}
.landing .hero .donateHeader {
  display: block;
  font-weight: 400;
  font-size: 24px;
  color: rgb(250, 250, 250);
  text-decoration: none;
  background-color: rgb(250, 200, 0);
  padding: 12px 2px;
  border-radius: 6px;
  margin-top: -2rem;
  text-align: center;
  width: 200px;
  transition: box-shadow 0.3s ease;
}
.landing .hero .donateHeader::after {
  display: none;
}
.landing .hero .donateHeader:hover {
  box-shadow: 0px 2px 10px 1px rgb(250, 200, 0);
}

.main {
  width: clamp(20rem, 85vw, 50rem);
  margin: 4rem auto;
  font-size: clamp(16px, 3vw, 18px);
  color: rgb(60, 72, 88);
  font-weight: 300;
  line-height: 2rem;
}
.main .section {
  margin: 2rem;
}
.main .section li {
  margin-left: 2rem;
}

.button-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}
.button-container .button-section {
  flex: 1;
  min-width: 250px;
  text-align: center;
  /* make .btn work for anchors and buttons */
}
.button-container .button-section h3 {
  color: rgb(60, 72, 88);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.button-container .button-section .btn {
  display: inline-block;
  padding: 12px 0;
  width: 150px;
  background-color: rgb(250, 200, 0);
  color: rgb(250, 250, 250);
  border: none;
  border-radius: 6px;
  font-size: 24px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.button-container .button-section .btn:hover {
  box-shadow: 0px 2px 10px 1px rgb(250, 200, 0);
  transform: translateY(-2px);
}
.button-container .button-section .btn:focus {
  outline: 3px solid rgba(0, 0, 0, 0.08);
  outline-offset: 2px;
}
.button-container .button-section p {
  margin-top: 1rem;
  color: rgb(60, 72, 88);
  line-height: 1.6;
  font-weight: 300;
}
.button-container .button-section strong {
  font-weight: 700;
}

/* Consolidated media queries */
@media (max-width: 720px) {
  .button-container {
    flex-direction: column;
    align-items: center;
  }
  .button-section {
    width: 100%;
  }
  .main {
    width: 100%;
    max-width: 40rem;
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .landing {
    background-attachment: scroll;
  }
  .landing .hero .content {
    flex-direction: column;
    margin: -4rem 0 0 0;
  }
  .landing .hero .content i {
    margin-top: 2rem;
  }
  .main {
    width: 100%;
    max-width: 22rem;
    padding: 0 1rem;
  }
}/*# sourceMappingURL=sponsor-us.css.map */