/* Copyright (c) 2025 by Anastasia Goodwin (https://codepen.io/agoodwin/pen/NMJoER)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/


:root{
  --yellow-asu:#fec526;
  --red-asu: #8b1c41;

}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: black;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: white;
  overflow-x: hidden;
}

.gold-bold {
  color: #fec526;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(255,215,0,0.5);
}

a:link {
  color: #fec526;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #fec526;
  background-color: transparent;
  text-decoration: underline;
}

header nav a,
header nav a:link,
header nav a:visited {
  color: white !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

header nav a:hover,
header nav a.active {
  color: #ffd700 !important;
  border-bottom: 2px solid #ffd700 !important;
}


header, section, footer {
  position: relative;
  z-index: 10;
  background: transparent;
}

.stars, .twinkling {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  pointer-events: none;
}
.stars {
  background: black url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/stars.png") repeat top center;
  z-index: 0;
}
.twinkling {
  background: transparent url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/twinkling.png") repeat top center;
  z-index: 1;
  animation: move-twink-back 200s linear infinite;
}
@keyframes move-twink-back {
  from { background-position: 0 0; }
  to   { background-position: -10000px 5000px; }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}
header h1 {
  margin: 0;
  font-size: 4rem;
  font-family: 'Dancing Script', cursive;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}
header nav {
  display: flex;
  gap: 15px;
}
header nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}
header nav a:hover,
header nav a.active {
  color: #ffd700;
  border-bottom: 2px solid #ffd700;
}

section {
  padding: 3rem 5vw;
  max-width: 1200px;
  margin: 3rem auto;
  border-radius: 10px;
  color: white;
  text-align: justify;
}
section h1 {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.5rem;
  margin-top: 0;
  text-align: center;
  font-size: 2rem;
}
section h2 {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.5rem;
  margin-top: 0;
  text-align: left;
}
section h3 {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.5rem;
  margin-top: 0;
  text-align: center;
  font-size: 2rem;
}
section h4 {
  padding-bottom: 0.5rem;
  margin-top: 0;
  text-align: center;
  font-size: 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}


.logo {
  height: 70px;       
  width: auto;
  max-width: 160px;   
  object-fit: contain;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

footer {
  text-align: center;
  padding: 1rem;
  color: white;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  margin-top: 2rem;
}


.pi-hero {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1rem;
}
.pi-photo {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid gold;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}
.pi-info h3 {
  margin: 0 0 .25rem 0;
  font-size: 3rem;
  text-align: justify;
}
.pi-info p {
  text-align: justify;
  margin: 2rem;
}
@media (max-width: 900px) {
  .pi-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
  }
  .pi-photo {
    width: 220px;
    height: 220px;
  }
}


.team-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem 1.25rem;
  justify-items: center;
}


.team-member {
  width: 300px;
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  box-shadow: none;
  cursor: pointer;
  user-select: none;
}
.team-member img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 6px solid white;
  box-shadow:
    0 0 10px var(--red-asu),
    0 0 20px var(--red-asu);
  transition: transform 0.25s ease;
}
.team-member:hover img {
  transform: scale(1.05);
  box-shadow:
    0 0 15px var(--red-asu),
    0 0 30px var(--red-asu);
}
.team-member h4 {
  margin: 8px 0;
  font-size: 1.1rem;
  text-align: center !important;
}
.team-member p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #f1f1f1;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
}
.team-member p.pronouns {
  text-align: center !important;
  font-size: 0.9rem;
  font-style: italic;
  color: #dcdcdc;
  margin-top: -6px;
  margin-bottom: 8px;
  opacity: 0.9;
}
.team-member p a {
  color: var(--yellow-asu);
  text-decoration: none;
  font-weight: 500;
}
.team-member p a:hover {
  text-decoration: underline;
  text-shadow: 0 0 6px rgba(255,215,0,0.6);
}


.team-member .desc {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-4px);
  text-align: justify;
  transition: max-height .35s ease, opacity .35s ease, transform .35s ease;
}


.team-member:hover .desc {
  opacity: 1;
  max-height: 800px;
  transform: translateY(0);
}


.team-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


@media (max-width: 1200px){
  .team-grid{ grid-template-columns: repeat(3, minmax(260px, 1fr)) !important; }
  .team-grid > .team-member:nth-child(5){ grid-column: auto !important; }
}
@media (max-width: 900px){
  .team-grid{ grid-template-columns: repeat(2, minmax(240px, 1fr)) !important; }
}
@media (max-width: 560px){
  .team-grid{ grid-template-columns: 1fr !important; }
}


#click-stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
}
.star-particle {
  position: fixed;
  border-radius: 50%;
  background: white;
  filter: blur(0.5px);
  opacity: 0.95;
  transform: translate(-50%, -50%) scale(1);
  animation: star-pop 1s ease-out forwards;
}
@keyframes star-pop {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  20%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -60%) scale(0.6); }
}


@media (max-width: 900px) {
  .team-member { width: min(88vw, 320px); }
}
@media (min-width: 1600px) {
  section { max-width: 1400px; }
}


.research-cont {
  display: flex;
  gap: 12rem;
  flex-wrap: wrap;
  justify-content: center;
}

.side-image{
  object-fit: fill;
  width: 100%;
}

@media (max-width: 590px) {
  .research__title {
    font-size: 1.4rem;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: center;
  }
}


.research-sect {
  width: 43%;
}

.pub-btn {
  margin-left: auto;
  background-color: var(--red-asu);
  border: 1px solid var(--red-asu);
  border-radius: 3px;
  cursor: pointer;
  padding: 10px;
  font-size: 15px;
}
.pub-btn-cont{
  display: flex;
}
.pub-btn a:link{
  color: white;
}
.pub-btn a:visited{
  color: white;
}
.pub-btn a:link:hover{
  color: black
}
.pub-btn a:visited:hover{
  color:black;
}
.pub-btn:hover{
  background-color:var(--yellow-asu);
}








