@media (max-width: 700px) {
  html {
    text-align: center;
  }

  img {
  width: 100vw;
  height: auto;
  text-align: left;
  border-radius: 20px;
  }
  header {
  display: flex;
  align-items: center;
  background-color: #4b3995;
  height: 40px;
  width: 100vw;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  margin-bottom: 50px;
}


  header img {
    width: 32px;
    height: 32px;
    border-radius: 0px;
  }

  header nav {
    gap: 10px;
  }

  .desktop-nav {
    display: none; /* hide desktop nav */
  }

  .menu-img-btn {
    display: block; /* show menu button */
    background: none;
    border: none;
    padding: 0;
  }

  #menuIcon {
    width: 32px;
    height: 32px;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 30vw;
    height: 100vh;
    background: rgba(75, 57, 149, 0.75);
    backdrop-filter: blur(8px);          
    display: none;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    z-index: 999;
    text-align: center;
  }

  .mobile-menu a {
    display: inline-block;
    text-align: center;
    width: auto;
    height: auto;
    margin: 0 auto;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.10) !important;
  }

  .mobile-menu.open {
    display: flex; /* show when JS toggles .open */
  }
  
  .hero {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    text-align: center;
  }


  .hero img {
    width: 100vw;
    height: auto;
    padding: 0;
    margin: 20px 0 0 0;
  }

  .hero h1 {
    font-size: 28px;
    margin: 0;
  }

  .columns {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

  .column-text {
    gap: 6px;
    padding: 0;
    margin: 0;
    align-items: center;
  }

  .column-text h2 {
    font-size: 16px;
    margin: 0;
  }

  .gear-wrapper {
    text-align: left; 
    margin-top: 0;
  }

  .img-stack {
    text-align: left;
    margin-top: 0;
    width: 80px;
    height: 80px;
  }

  .stats {
  color: #312d39;
  margin: 0 auto;
  border: 2px solid #ada5c0;
  background: #ada5c0;
  width: fit-content;
  height: fit-content;
  border-radius: 10px;
  padding: 5px;
  white-space: nowrap;
  text-align: center;
}

footer {
  display: flex;
  text-align: center;
  background-color: #EDE6FF;
  height: auto;
  width: 90vw;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  border-radius: 20px;
  margin: 20px auto;
  color: #3a3a3a;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px;
}
footer h3 {
  font-size: 20px;
  color: #5A4F7A;
}
footer h4 {
  font-size: 16px;
  color: #8A7BAF;
}
.footer-text {
  display: flex;
  flex-direction: column;
}
footer > img {
  width: 100px;
  height: 100px;
  justify-content: flex-start;
}

  .address {
  color: #6e6e6e;
  margin-top: 5px;
  border: 2px solid #D8D0F2;
  background: #D8D0F2;
  width: fit-content;
  height: fit-content;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);

}

.carbon-fiber {
  width: 100vw;
  height: 250px;
  background-image:
  linear-gradient(to bottom, rgba(249, 240, 255, 0) 0%, #f9f0ff 100%),
  url("Photos/Head.png");
  background-repeat: repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carbon-fiber h1 {
  color: #FFFFFF;
  font-size: 60px;
  margin: 0;
}
