@charset "utf-8";
/* CSS Document */

/* colour palette 
dark grey #444: text
yellowish grey #F2F0EF: card for quotes, gen info, newsletter
pale yellow #F4F2C7: card for recordings
darker yellow #F0E28E: card for cal, etc.
grey-blue #77A4CE: navbar hover
sky-blue #90B9FF: ???

*/


body {
  margin:0 auto;
  max-width:800px;
  line-height:1.6;
  font-size:18px;
  color:#444;
  padding:0 10px
}

h1,h2,h3 {
  line-height:1.2;
  font-family:Garamond, "Times New Roman", Times, serif;
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
	color: #77a4ce;
}

.navbar {
  font-size:20px;
  border:none;
  border-radius: 12px;
  color:#444;
  padding: 1px 5px;
  transition-duration: 0.4s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.navbar:hover {
  background-color: #77a4ce;
  color: white;
}

/* homepage press quotes */
.review {
font-size:22px;
}

/* newsletter sign-up form */
input[type=email], input[type=text] {
	border-radius: 5px;
	padding: 1px 5px;
	box-sizing: border-box;
	font-size:18px;
	width:300px;
	height:40px;
}

/* newsletter sign-up form */
input[type=submit] {
  background-color: #444;
  border: 2px solid;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  margin: 2px 2px;
  cursor: pointer;
   border-radius: 12px;
}

/* newsletter sign-up form */
input[type=submit]:hover {
  opacity: 0.6;
}

/* homepage press quotes; Listen page general info */
.review-card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 15px;
  padding: 4px 24px;
  background-color: #F2F0EF;
}

/* homepage calendar entries */
.cal-card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 15px;
  padding: 12px 24px;
  background-color: #f1e4cf;
}

/* Listen page recordings */
.rec-card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 15px;
  padding: 12px 24px;
  background-color: #fcf3d1;
}

/* Works page download orch guide */
.button {
background-color: #444;
  border: 2px solid;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  margin: 2px 2px;
  cursor: pointer;
  border-radius: 12px;
}

/* Works page download orch guide */
.button:hover {
  opacity: 0.6;
  color: white;
  
}

/* Works page */
ul.works {
list-style-type:none;
margin-left:0px;
padding-left:0px;
}

/* Works page */
li.works {
margin-bottom:10px;
}

/* Listen page discography */
.CD-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, auto));
	column-gap: 20px;
	justify-content: start;
}

/* Bio page press kit */
.bio-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, auto));
	column-gap: 20px;
	justify-content: space-evenly;
}

/* Research page publication list */
.pub-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	column-gap: 20px;
	justify-content: start;
}

.work-gen-info td {
	vertical-align: top;
	text-wrap: wrap;
}

.work-video {
	border-radius: 15px; 
	aspect-ratio: 16/9; 
	width: 100%;
}
