/* Base */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  overflow-x: hidden;
}

h1, h2, h3, p, ul {
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
  font-weight: normal;
}

/* Hero */
.section1 {
  min-height: 70vh;
  width: 100vw;
  background-image: linear-gradient(90deg, #f5d245, #ff914d);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header-options {
  position: absolute;
  top: 2.5%;
  right: 5%;
  display: flex;
  gap: 16px;
  align-items: center;
}

.header-options h1 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  padding: 5px 9px;
  border-radius: 10px;
  transition: background-color .45s ease;
}

.header-options a {
  text-decoration: none;
  color: inherit;
}
.header-options a:hover h1 {
  background-color: rgba(255,255,255,0.6);
  border-radius: 10px;
  cursor: pointer;
  cursor: url("images/bobacursor.png") 16 16, auto;
}

#title {
  font-size: 85px;
  font-weight: bold;
  margin: 0;
}

.intro-section {
  width: 100vw;
  background: #000;
  padding: 0 8% 40px;
  box-sizing: border-box;
}

.intro-title {
  font-size: 28px;
  margin: 40px 0 16px;
  transform: translateX(0);
}

.goal-block {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 0 40px;
}

.goal-block h2 {
  flex: 1 1 28%;
  max-width: 28%;
  min-width: 260px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border: 2px solid #fff;
  border-radius: 28px;
  box-sizing: border-box;
  transition: background-color .18s ease, transform .18s ease;
}
.goal-block h2:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  cursor: url("images/bobacursor.png") 16 16, auto;
}

.who-title {
  font-size: 26px;
  margin: 20px 0 10px;
}
.who-lead {
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 10px;
}
.who-list {
  list-style: circle;
  margin: 10px 0 24px 24px;
  padding: 0;
}
.who-list li {
  font-size: 22px;
  line-height: 1.5;
  margin: 8px 0;
}

.outro-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
}

#end-h3 {
  margin: 0;
  font-size: 26px;
  font-weight: normal;
}

.avatar-holder {
  width: 320px;
  text-align: right;
}

.avatar-holder model-viewer {
  width: 100%;
  height: 320px;
  background: transparent;
  border: 0;
  outline: none;
  overflow: hidden;
  box-shadow: none;

  --progress-bar-color: transparent !important;
  --progress-bar-height: 0px !important;
}
model-viewer::part(progress-bar){ display:none !important; }

.avatar-cap {
  color: #fff;
  opacity: .75;
  font-size: 16px;
  margin-top: 6px;
}

@media (max-width: 800px) {
  .outro-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .avatar-holder {
    width: 360px;
  }
  .avatar-holder model-viewer {
    height: 360px;
  }
}















.main-image-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0rem;
  z-index: 0;
}

.main-image-container img {
  margin-top: 1.2rem;
  width: 22.5rem;
  border-radius: 10%;
}

.arrow-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(11rem);
}

.arrow-nav img {
  z-index: 1;
  width: 3rem;
}

#middle:hover {
  transform: rotate(3deg) scale(1.15);
  cursor: url("images/bobacursor.png") 16 16, auto;
}

#left:hover, #right:hover {
  transform: rotate(-3deg) scale(1.15);
  cursor: url("images/bobacursor.png") 16 16, auto;
}

.main-image-container img:hover {
  z-index: 2;
  transition: 500ms;
}