/* set root var for navbar width to 33% */
:root {
  --navbar-width: 20vw;
}

body {
  /* font-family: "Helvetica Neue", Arial, sans-serif; */
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #5e5e5e;
  background-color: #fff;
  /* display: grid; */
  /* center items in grid */
  /* place-items: end; */
  /* align-items: start; */

  /* grid-template-columns: 1fr auto; */
  /* smooth scroll */
}

.splash {
  /*height: 100vh;
  width: 100%;*/
  display: flex;
  place-items: center;
  place-self: center;
}

/*
.splash img {
  object-fit: cover;
  width: 100%;
  border: 2px solid green;
}*/

.dashboard-link {
  display: block;
  text-align: center;
  padding: 10px;
  background-color: #990000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  width: 200px;
  margin: auto;
}

main img {
  width: 500px;
}

.sidebar {
  position: -webkit-sticky;
  /* For Safari */
  position: sticky;
  position: fixed;
  left: 0;
  top: 1rem;
  margin: 0rem 1rem;
  width: var(--navbar-width);
  background-color: white;
  overflow-y: auto;
  /* Allows scrolling within the sidebar if content exceeds screen height */
  color: #990000;
  /* USC Cardinal */
  padding: 20px;
  grid-row: span 2;
}

.sidebar header h1 {
  margin-bottom: 20px;
  margin-top: 0px;
  font-weight: bolder;
  line-height: 1.2;
}

.sidebar nav ul {
  list-style-type: none;
  padding: 0;
  font-weight: bold;
}

.sidebar nav ul li a {
  color: #990000;
  /* USC Cardinal */
  text-decoration: none;
  display: block;
  padding: 10px;
  transition: background-color 0.3s ease;
}

.sidebar nav ul li a:hover {
  background-color: #ffc72c50;
  /* USC Gold */
}

.sidebar img {
  width: 100%;
}

main {
  /* center div */
  margin: auto;
  padding: 20px;
  width: 50%;
  padding-left: 10rem;
}

h2 {
  border-bottom: 2px solid #ffc72c;
  /* USC Gold for a subtle underline */
  /* border-bottom: 2px solid #990000;  */
}

footer {
  margin-top: 3rem;
  text-align: center;
  padding: 20px;
  color: black;
  /* USC Cardinal */
  position: relative;
}

.placeholder {
  font-weight: bold;
  color: #990000;
}

.gallery {
  display: flex;
  gap: 20px;
}

.ph-box {
  display: inline-block;
  width: 250px;
  height: 250px;
  background-color: #ffc72c27;
  border: 2px solid #ffc72c;
}