/* Main page styles */

.skip {
  z-index: -100;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/**
 * =======================================
 * Buttons
 * =======================================
 */

.icon {
  transition: all 0.3s ease-in-out;
}

.btn-container {
  position: relative;
}

.btn-container .shadow {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 6rem;
  box-shadow:
    0px 0px var(--dark-coffee),
    0px 1px var(--dark-coffee),
    0px 2px var(--dark-coffee),
    0px 3px var(--dark-coffee),
    0px 4px var(--dark-coffee),
    0px 5px var(--dark-coffee),
    0px 6px var(--dark-coffee);
}

.btn {
  z-index: 1;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  border: 2px solid var(--dark-coffee);
  border-radius: 6rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transform: translateY(3px);
  transition: all 0.1s ease-in-out;
}

.btn:hover {
  transform: translateY(0px);
}

.btn:active {
  transform: translateY(6px);
}

.btn > .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-sm {
  font-size: 1rem;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  gap: 0.75rem;
}

.btn-sm > .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-primary {
  background-color: var(--dark-teal);
  color: var(--white);
}

.btn-primary > .icon {
  stroke: var(--white);
}

.btn-secondary {
  background-color: var(--sandy-clay);
  color: var(--black);
}

.btn-secondary > .icon {
  stroke: var(--black);
}

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: none;
  border: none;
  cursor: pointer;
}

.icon-btn::before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.icon-btn-primary::before {
  background-color: var(--brandy);
}

.icon-btn-secondary::before {
  background-color: var(--dark-teal);
}

.icon-btn-tertiary::before {
  background-color: var(--faded-copper);
}

.icon-btn > .icon {
  stroke: var(--parchment);
  width: 1.5rem;
  height: 1.5rem;
}

/**
 * =======================================
 * Text and headings
 * =======================================
 */

h2 {
  color: var(--dark-teal);
  font-weight: 400;
  line-height: 1;
}

h3 {
  color: var(--brandy);
}

h2::after, h3::after {
  content: ".";
  color: var(--sandy-clay);
}

h4 {
  color: var(--dark-teal);
}

.sponsor-addon-group > h4::after {
  content: ":";
  color: var(--sandy-clay);
}

.question::after {
  content: "?";
  color: var(--sandy-clay);
}

.link {
  color: var(--brandy);
  text-decoration: underline;
}

.link:hover, .link:focus {
  color: var(--faded-copper);
}

/**
 * =======================================
 * Images
 * =======================================
 */

.img-zoom {
  transition: all 0.3s ease-in-out;
}

.img-zoom:hover {
  transform: scale(1.015);
}

/**
 * =======================================
 * Sections
 * =======================================
 */

.section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  text-wrap: balance;
}

.section-intro > .body1 {
  width: 100%;
}

/**
 * =======================================
 * Home section
 * =======================================
 */

#home {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 5rem 1rem 2rem 1rem;
}

.home-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-grow: 1;
}

.home-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  flex-grow: 1;
}

@keyframes cursor-blink {
  0%    { opacity: 0; }
  24.5% { opacity: 0; }
  25%   { opacity: 1; }
  75%   { opacity: 1; }
  75.5% { opacity: 0; }
  100%  { opacity: 0; }
}

.home-small {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.75rem;
  color: var(--brandy);
  width: 100%;
}

.home-main {
  display: flex;
  flex-direction: column;
}

#home-carousel::after {
  content: "_";
  color: var(--sandy-clay);
  animation-name: cursor-blink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

h1 {
  display: flex;
  flex-direction: column;
}

h1 > .home-small {
  padding-top: 0;
  margin-bottom: 1rem;
}

.home-logo {
  height: 3rem;
}

.home-logo-text::after {
  content: ".";
  margin-left: 0.2rem;
  color: var(--sandy-clay);
  font-weight: 300;
  font-size: 3rem;
}

.home-subheading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.25;
  padding-top: 1.25rem;
}

/* .home-countdown {
  font-weight: 700;
} */

.home-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 6px;
}

.home-btn-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-social-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.home-social-container > .icon-btn:hover,
.home-social-container > .icon-btn:focus {
  opacity: 1;
}

.home-social-container:has(> .icon-btn:hover) > .icon-btn:not(:hover),
.home-social-container:has(> .icon-btn:focus) > .icon-btn:not(:focus) {
  opacity: 0.3;
}

.home-right {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 100%;
  left: 0;
  width: 100%;
  padding-top: 2rem;
  height: 28rem;
  z-index: -1;
}

.home-ascii-background {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.4rem;
  line-height: 1.1;
  white-space: pre;
  user-select: none;
  color: var(--dark-coffee);
  opacity: 0.75;
}

.home-ascii-background .faded {
  opacity: 0.5;
}

/**
 * =======================================
 * About section
 * =======================================
 */

#about {
  margin-top: 28rem;
  width: 100vw;
  padding: 5rem 1rem 0rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-sound-btn {
  position: relative;
  display: contents; 
  white-space: normal;
  line-height: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.about-sound-btn-content {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  color: var(--brandy);
}

.about-sound-btn-content > svg {
  stroke: var(--dark-coffee);
}

.about-sound-btn-content::before {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0%;
  content: "";
  width: 100%;
  height: 35%;
  background-color: var(--sandy-clay);
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
}

.about-sound-btn-content:hover::before,
.about-sound-btn-content:focus::before {
  height: 100%;
}

.about-sound-btn-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.05rem;
}

.about-verse {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.about-verse-border {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}

.about-verse-border-diamond {
  width: 0.5rem;
  height: 0.5rem;
  transform: rotate(45deg);
}

.about-verse-border-diamond:nth-child(1) {
  background-color: var(--brandy);
}

.about-verse-border-diamond:nth-child(2) {
  background-color: var(--dark-teal);
}

.about-verse-border-diamond:nth-child(3) {
  background-color: var(--faded-copper);
}

.about-verse-arabic {
  font-size: 2rem;
  color: var(--black);
  margin-top: 0.75rem;
}

.about-verse-translation {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--black);
  opacity: 0.6;
  margin-top: 0.5rem;
  text-align: center;
}

.about-verse-source {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02rem;
  color: var(--brandy);
  text-align: center;
}

.about-mission {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin: 1rem 0rem;
}

.about-mission-left, .about-mission-right {
  flex-shrink: 1;
}

.about-mission-left {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-mission-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-img-container {
  position: relative;
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes img-underlay-oscillate {
  0%    { transform: rotate(4deg); }
  100%  { transform: rotate(-4deg); }
}

.about-img-underlay {
  z-index: 0;
  position: absolute;
  width: 100%;
  aspect-ratio: 1.5;
  background-color: var(--sandy-clay);
  border-radius: 1rem;
  opacity: 0.5;
  transform: rotate(4deg);
  animation-name: img-underlay-oscillate;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.about-img {
  z-index: 1;
  width: 96%;
  aspect-ratio: 1.5;
  border-radius: 1rem;
}

.about-tile-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  border-radius: 1rem;
  padding: 9rem 1.75rem 2rem 1.75rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.about-tile:hover {
  transform: scale(1.015);
  box-shadow: 0px 0px 4px var(--black-a80);
}

.about-tile-icon-container {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  width: 7.5rem;
  height: 1rem;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}

.about-tile-icon-container::before {
  content: "";
  position: absolute;
  bottom: 100%;
  width: 100%;
  height: 7rem;
  background-color: var(--white);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  z-index: -1;
}

.about-tile-icon-container > .bloom {
  margin-bottom: 1.65rem;
}

.about-tile-icon {
  width: auto;
}

.about-tile-icon.flower {
  height: 6rem;
}

.about-tile-icon.bloom {
  height: 4rem;
}

.about-tile-icon.steps, .about-tile-icon.bars {
  height: 5rem;
}

.about-tile > h4 {
  color: var(--dark-teal);
  font-size: 1.75rem;
  font-weight: 400;
  margin-top: 1rem;
}

.about-tile > span {
  color: var(--grey);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.25;
}

/**
 * =======================================
 * Sponsors section
 * =======================================
 */

#sponsors {
  width: 100vw;
  min-height: 100vh;
  padding: 5rem 1rem 0rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.sponsor-table-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}

.sponsor-table-container-inner {
  width: 100%;
  overflow-x: auto;
}

.sponsor-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

tr.tr-border {
  border-bottom: 3px solid var(--light-grey);
}

th {
  color: var(--black);
  padding: 1.25rem;
}

.first-col {
  text-align: left;
}

.sponsor-table th {
  font-family: var(--font-body);
  font-weight: 600;
}

.sponsor-table th.startup {
  background-color: var(--dark-coffee);
  color: var(--white);
}

.sponsor-table th.bronze {
  background-color: var(--brandy);
  color: var(--white);
}

.sponsor-table th.silver {
  background-color: var(--faded-copper);
  color: var(--white);
}

.sponsor-table th.gold {
  background-color: var(--dark-teal);
  color: var(--white);
}

.th1 {
  font-size: 1.25rem;
  padding: 1rem 1.25rem;
}

.th1 > .thin {
  font-weight: 300;
  font-size: 1rem;
}

.th2 {
  background-color: var(--light-grey);
  font-size: 1rem;
}

.sponsor-table td {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--black);
  padding: 1.5rem;
}

.td > .diamond {
  width: 0.7rem;
  height: 0.7rem;
  margin: auto;
  transform: rotate(45deg);
}

.td.startup, .td.bronze, .td.silver, .td.gold {
  text-align: center;
}

.td.startup {
  color: var(--dark-coffee);
}

.td.bronze {
  color: var(--brandy);
}

.td.silver {
  color: var(--faded-copper);
}

.td.gold {
  color: var(--dark-teal);
}

.td.startup > .diamond {
  background-color: var(--dark-coffee);
}

.td.bronze > .diamond {
  background-color: var(--brandy);
}

.td.silver > .diamond {
  background-color: var(--faded-copper);
}

.td.gold > .diamond {
  background-color: var(--dark-teal);
}

.sponsor-addons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sponsor-addon-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sponsor-addon-group > h4 {
  text-wrap: nowrap;
}

.sponsor-addon-badge-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sponsor-addon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--faded-copper);
  background-color: var(--white);
  border-radius: 2rem;
  padding: 0.5rem 0.75rem;
}

/**
 * =======================================
 * FAQ section
 * =======================================
 */

#faq {
  width: 100vw;
  padding: 5rem 1rem 0rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.faq-btns {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-top: -6px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.faq-col {
  display: flex;
  flex-direction: column;
}

.faq-item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.faq-question {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--black);
  box-shadow: 1px 1px 0px var(--black);
  background-color: var(--brandy);
  color: var(--parchment);
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}

.faq-icon.open {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  font-family: var(--font-body);
  font-size: 1.1rem;
  opacity: 0.8;
  padding: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.5rem;
  padding: 1rem 0 1rem 0;
}

/**
 * =======================================
 * Contact section
 * =======================================
 */

#contact {
  width: 100vw;
  padding: 5rem 1rem 0rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.contact-form-field {
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: var(--white);
  border-radius: 1.75rem;
  border: 1px solid var(--sandy-clay);
  outline: 2px solid transparent;
  transition: none;
}

.contact-form-field::placeholder {
  font-family: var(--font-body);
}

.contact-form-field:focus {
  outline: 2px solid var(--sandy-clay);
}

.contact-form-textarea {
  resize: none;
}

.contact-form-btn {
  position: relative;
  width: 100%;
}

.toast-container {
  transition: all 0.3s ease-in-out;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 500;
  transform: translateY(100%);
}

.toast-container.toast-open {
  transform: translateY(0%);
}

.toast {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  color: var(--white);
  box-shadow: var(--black-a80) 0px 0px 10px;
}

.toast-success {
  background-color: var(--dark-teal);
}

.toast-error {
  background-color: var(--brandy);
}

.toast-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.toast-text {
  font-family: var(--font-body);
  font-weight: 400;
  text-decoration: none;
  font-size: 1rem;
}

/**
 * =======================================
 * Call to action section
 * =======================================
 */

#cta {
  width: 100vw;
  padding: 8rem 4rem 0rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.cta-btns {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 90%;
}

.cta-btn {
  position: relative;
  width: 100%;
}

/**
 * =======================================
 * Footer section
 * =======================================
 */

footer {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 10rem 4rem 2rem 4rem;
}

.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-top > .icon-btn:hover,
.footer-top > .icon-btn:focus {
  opacity: 1;
}

.footer-top:has(> .icon-btn:hover) > .icon-btn:not(:hover),
.footer-top:has(> .icon-btn:focus) > .icon-btn:not(:focus) {
  opacity: 0.3;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/**
 * =======================================
 * Media queries
 * =======================================
 */

/* width >= 400px */
@media (min-width: 25rem) {
  .about-mission-left {
    width: 70%;
  }
}

/* width >= 640px */
@media (min-width: 40rem) {
  #contact-form {
    width: 90%;
  }

  .cta-btns {
    width: 60%;
  }
}

/* width >= 768px */
@media (min-width: 48rem) {
  #home {
    padding: 5rem 3rem 2rem 3rem;
  }

  #about {
    padding: 5rem 3rem 0rem 3rem;
    gap: 3rem;
  }

  .about-verse {
    margin: 0;
  }

  .about-verse-arabic {
    font-size: 2.25rem;
  }

  .about-mission {
    flex-direction: row;
  }

  .about-mission-left, .about-mission-right {
    width: 45%;
  }

  .about-tile-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  #sponsors {
    padding: 5rem 3rem 0rem 3rem;
    gap: 3rem;
  }

  .sponsor-addon-group {
    flex-direction: row;
  }

  .sponsor-addon-badge-container {
    margin-top: 0.25rem;
  }

  #faq {
    padding: 5rem 3rem 0rem 3rem;
    gap: 3rem;
  }

  .faq-question {
    font-size: 1.5rem;
  }

  .faq-icon-container {
    width: 2.25rem;
    height: 2.25rem;
  }

  .faq-icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .faq-answer-inner {
    font-size: 1.2rem;
  }

  #contact {
    padding: 5rem 3rem 0rem 3rem;
    gap: 3rem;
  }

  #contact-form {
    width: 70%;
  }

  .toast-container {
    left: auto;
    max-width: 600px;
  }

  .cta-btns {
    gap: 1rem;
    width: 70%;
  }
}

/* width >= 1024px */
@media (min-width: 64rem) {
  .section-intro > .body1 {
    width: 70%;
  }

  .home-top {
    flex-direction: row;
    align-items: normal;
    justify-content: space-between;
    flex-grow: 1;
  }

  .home-left {
    align-items: start;
    justify-content: end;
    flex-grow: 1;
  }

  .home-small {
    margin-bottom: auto;
    font-size: 3rem;
  }

  h1 > .home-small {
    padding-top: 1rem;
  }

  .home-logo {
    height: 6rem;
  }

  .home-logo-text::after {
    margin-left: 0.2rem;
    font-size: 6.5rem;
  }

  .home-cta {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
    padding-top: 1.5rem;
    padding-bottom: 6px;
    padding-right: 0.7rem;
  }

  .home-btn-container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .home-social-container {
    gap: 1.5rem;
  }

  .home-right {
    top: 0;
    bottom: 0;
    right: 0;
    padding-top: 0;
    height: auto;
    justify-content: end;
  }

  .home-ascii-background {
    position: relative;
    right: 0;
    top: -1.5rem;
    font-size: 0.6rem;
  }

  #about {
    margin-top: 0;
    gap: 4rem;
  }

  #sponsors {
    gap: 4rem;
  }

  .th1 {
    font-size: 1.5rem;
    padding: 1rem 1.25rem;
  }

  .th1 > .thin {
    font-weight: 300;
    font-size: 1.25rem;
  }

  .th2 {
    background-color: var(--light-grey);
    font-size: 1.25rem;
  }

  .sponsor-table td {
    font-size: 1.25rem;
  }

  .td > .diamond {
    width: 0.9rem;
    height: 0.9rem;
  }

  .sponsor-addon-badge-container {
    margin-top: 0.15rem;
  }

  .sponsor-addon-badge {
    font-size: 1.2rem;
  }

  #faq {
    gap: 4rem;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 2rem;
  }

  .faq-answer-inner {
    padding: 1rem 3rem 1rem 0rem;
  }

  #contact {
    gap: 4rem;
  }

  #contact-form {
    width: 60%;
  }

  .contact-form-field {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }

  .toast-container {
    max-width: 50rem;
  }
}

/* width >= 1280px */
@media (min-width: 80rem) {
  .btn {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem 0.75rem 2rem;
    gap: 1rem;
  }

  .btn > .icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .btn-sm {
    font-size: 1rem;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    gap: 0.75rem;
  }

  .btn-sm > .icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .icon-btn {
    width: 3.4rem;
    height: 3.4rem;
  }

  .icon-btn > .icon {
    width: 1.8rem;
    height: 1.8rem;
  }

  #home {
    padding: 6rem 4rem 3rem 4rem;
  }

  .home-small {
    font-size: 3.5rem;
  }

  h1 {
    gap: 1rem;
  }

  h1 > .home-small {
    padding-top: 2rem;
    margin-bottom: auto;
  }

  .home-logo {
    height: 8rem;
  }

  .home-logo-text::after {
    margin-left: 0.25rem;
    font-size: 9rem;
  }

  .home-subheading {
    font-size: 1.5rem;
  }

  #about {
    padding: 8rem 4rem 0rem 4rem;
  }

  .about-tile-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }

  #sponsors {
    padding: 8rem 4rem 0rem 4rem;
  }

  .sponsor-table-container {
    width: 70%;
    gap: 3rem;
    margin-top: 2rem;
  }

  .sponsor-addons {
    width: 70%;
  }

  .sponsor-addon-badge-container {
    margin-top: 0.25rem;
  }

  .sponsor-addon-badge {
    font-size: 1.5rem;
  }

  #faq {
    padding: 8rem 4rem 0rem 4rem;
  }

  #contact {
    padding: 8rem 4rem 0rem 4rem;
  }

  #contact-form {
    gap: 1.5rem;
    width: 50%;
  }

  .toast-container {
    max-width: 60rem;
  }

  .cta-btns {
    gap: 1.25rem;
    width: 40%;
  }
}

/* width >= 1536px */
@media (min-width: 96rem) {
  .sponsor-addon-badge-container {
    margin-top: 0.5rem;
  }
}

/* width >= 1920px */
@media (min-width: 120rem) {
  .home-logo {
    height: 10rem;
  }

  .home-logo-text::after {
    font-size: 10.5rem;
  }

  .home-ascii-background {
    font-size: 0.95rem;
  }

  .faq-grid {
    width: 70%;
  }

  .sponsor-table-container {
    width: 60%;
  }

  .sponsor-addons {
    width: 60%;
  }
}
