/* --- Base Styling --- */
body {
  /* display: flex; */
  margin: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
}

/* Hyperlinks */
a {
  color: #FFCCCC;
  text-align: center;
}

a:hover {
  color: hotpink;
}

a:link a:visited {
  /* color: forestgreen; */
  text-decoration-color: hotpink;
}

/* Images */
img {
  border-style: solid;
  border-color: grey;
  border-width: 4px;
}

/* Limit gallery images to fit within constrained grid rows */
.gallery img {
  width: auto;
  height: auto;
  margin-bottom: 5px;
}

/******************** 12x12 grid *********************/

/* MOBILE-FIRST: Start with 1 column on small screens, expand on larger screens */

/* Base: Phone - 1 column */
.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}

/* Grid styling - create grids for different screen sizes */
.grid-container>* {
  border: 2px solid hotpink;
  background-color: black;
  padding: 10px;
}

/* Tablet: 6 columns */
@media (min-width: 600px) {
  .grid-container {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Desktop: 12 columns */
@media (min-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(12, 1fr);
  }
}

/* Define each area's layout */

/* Left side headshots flex area */
div.gallery {
  grid-column: 1 / span 1;
  grid-row: 1 / 12;
  display: flex;
  text-align: center;
  flex-flow: column nowrap;
  /* align-items: center; */
  /* overflow: auto; */
  color: hotpink;
}

/* Title text flex area */
div.title {
  grid-column: 2 / span 8;
  grid-row: 1;
  text-align: center;
  color: #FFCCCC;
  /* border-bottom: none; */
  font-size: xx-large;
}

/* The three performance videos flex area */
div.videos {
  grid-column: 2 / span 8;
  grid-row: 2;
  /* border-top: none; */
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}

/* Bio flex area */
div.bio {
  grid-column: 2 / span 8;
  grid-row: 3 / 12;
  display: flex;
  flex-flow: row wrap;
  color: hotpink;
  justify-content: space-evenly;
  align-items: center;
}

/* Reference flex area */
div.references {
  grid-column: 11 / span 1;
  grid-row: 2;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/****************** CSS for content located inside the above areas *****************/

/* Single video area */
div.video-gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 5px;
  color: #FFCCCC;
  border: 1px solid #ccc;
  /* padding: 10px; */
  background-color: #333333;
  padding: 10px;
}

div.video-gallery-item:hover {
  border: 1px solid #777;
}

/* Single bio pane */
div.bio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50vh;
  margin: 5px;
  border: 1px solid #ccc;
  padding: 5px;
  background-color: #333333;
}

.others {
  color: #FFCCCC;
  font-size: 15px;
}