@charset "UTF-8";

:root {
  --primary-color: #B7DFCE;
  --secondary-color: #B7DFCE;
  --tertiary-color: #bac7e1;
  --dark-bg-color: #bac7e1;
  --background-color: #ffffff;
  --text-color: #000000;
  --text-light-color: #ffffff;
}

.hidden {
	display: none;
}

body {
	font-family: Helvetica;
	background-color: var(--background-color);
	font-weight: 200;
  margin: 0px;
  padding: 0px;
}

.container {
	background-color: var(--background-color);
  margin: 0px;
  padding: 0px;
}



/*================================================*/
/* Navigation */
header {
  width:100%;
  display:flex;
  justify-content: space-between;
  background-color: var(--primary-color);
}
.logo {
  color: var(--text-light-color);
  font-weight: bold;
  font-size:24px;
  width: 50%;
  float: left;
  flex-shrink: 0;
  white-space: nowrap;
  margin-top:0px;
  margin-bottom:0px;
  padding:30px;
}
nav {
  float: right;
  width: 50%;
  text-align: right;
  padding:15px
}
header nav ul {
  list-style: none;
  float: right;
  margin-top:0px;
  margin-bottom:0px;
}
nav ul li {
  float: left;
  color: var(--text-light-color);
  font-size: 24px;
  text-align: left;
  margin-left: 15px;
  
  font-weight: bold;
  transition: all 0.3s linear;
}
ul li a {
  color: var(--text-light-color);
  text-decoration: none;
}
ul li:hover a {
  color: #2C9AB7;
}

.social{
  width:50px;
  padding:30px;
}



/*================================================*/
/* About Section */
.about{
  padding:50px;
  background-color: var(--secondary-color);
}

.about p{
  margin-left:20%;
  margin-right:20%;
  font-size: 24px;
  text-align: center;
  font-weight: 400;
}



/*================================================*/
/* Artist Bios Section */
.artistBios {
  background-color: var(--background-color);
  padding-right: 25px;
  padding-left:25px;
  padding-top:100px;
  padding-bottom:100px;
  display:flex;
  align-content: center;
  color: var(--text-color);
}



.bioCard {
	text-align: center;
	margin-left:50px;
  margin-right:50px;
	float: left;
  background-color: var(--background-color);
  position:relative;
}

@media screen and (orientation:landscape) {
  .bioCard{
    width:33%;
  }
}

@media screen and (orientation:portrait) {
  .artistBios{
    padding:0px;
    flex-direction:column;
  }
  .bioCard{
    margin-left:0px;
    margin-right:0px;
    padding:20px;
    padding-bottom:40px;
  }
}

.artistBios .bioCard h3 {
	text-align: center;
}
.artistBios .bioCard p {
  text-align: left;
  font-weight: lighter;
}

.artistBios .bioCard .button {
  background: var(--secondary-color);
  border-style: solid;
  border-color: var(--secondary-color);
  text-align:center;
  padding: 10px;
  margin-top:10px;
  border-radius: 30px;
  bottom:0;
  left:0;
  right:0;
  color: var(--text-color);
  text-decoration: none;
}

.button a,a:link, a:visited, a:hover, a:focus, a:active{
  color: var(--text-color);
  text-decoration: none;
}

.artistBios .bioCard .button:hover{
  background: var(--background-color);
}

.bioPortrait {
	width: 50%;
	height: auto;
}



/*================================================*/
/* Zine Carousel */
.zineCarousel{
  background-color: var(--primary-color);
  padding: 50px;
}

.zineCover{
  width: 300px;
}



/*================================================*/
/* Footer */
.footer {
  text-align: right;
  padding:5px;
  background-color: var(--dark-bg-color);
  color: #000000;
  text-transform: uppercase;
  font-weight: lighter;
  font-size: 10px;
}


