/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&display=swap');

.temporary{
	text-align:center;
	font-family: 'UnifrakturMaguntia', cursive;
  	color: #9c9c9c;
	font-size:20px;
	margin-top:120px;
}
.temporary-2{
	text-align: center;
	font-size: 16px;
	font-family: 'Quicksand', sans-serif;
	margin-bottom: 200px;
}

html, body {
    width: 100%;
    height: 100%;
}

.article-placeholder {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

main {
    flex-grow: 1;
}

header, main, footer {
    flex-shrink: 0;
}

a{
  text-decoration:none;
  color: #2A844C;
}

a:hover{
  text-decoration:none;
  color: #595959;
  border-bottom: 1px solid;
  padding-bottom: 0px;
}

a:focus{
  outline: 3px solid gold;
  outline-offset: 4px;
}

.content:focus-within {
  outline: 3px solid gold;
  outline-offset: 4px;
}

.skip-link {
  background: black;
  color: #fff;
  left: 32px;
  padding: 8px;
  position: absolute;
  text-transform:uppercase;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(50%);
}
.skip-link:hover {
  padding-bottom:8px;
}

body{
  font-size: 16px;
  font-family: 'Quicksand', sans-serif;
}

header{
  margin: 16px;
}

.logo-placeholder{
  margin:0 auto;
	text-align: center;
}

.logo-placeholder a:hover{
  border-bottom: none;
  padding-bottom: 0;
}

.header-logo a img{
	max-width: 100%;
	max-height: 200px;
}

nav {
  margin:16px 0 16px 0;
  text-align:center;
}

nav > a{
  margin:0 8px 0 8px;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
   transition: all 0.2s linear;
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
}

nav > a:hover{
  color: #595959;
  border-bottom: 1px solid;
  padding-bottom: 4px;
}

.portfolio-nav{
  display:flex;
  flex-flow: row wrap;
  padding: 16px;
  text-transform: uppercase;
}

.portfolio-previous {
  width: 50%;
}

.portfolio-next {
  width: 50%;
  text-align: right;
}

.container{
  max-width:1200px;
  margin:0 auto;
}

.column-container {  
  display: flex;
  flex-wrap: wrap;
}

.portfolio-meta{
  flex: 30%;
}

.portfolio-card{
  margin: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid #d9d9d9;
}

.portfolio-images{
  flex: 70%;
}

.portfolio-item{
  text-align: center;
  padding: 24px 16px 0;
}

.portfolio-meta p{
  padding:0;
  margin: 0;
}

.portfolio-title{
  font-size: 24px;
  padding:0;
  margin: 8px 0;
}

.portfolio-subtitle{
  font-size: 18px;
  font-family: 'UnifrakturMaguntia', cursive;
  padding:0;
  margin: 24px 0 4px;
}

.about-picture{
  flex: 30%;
}

.about-item{
  max-width: 100%;
  padding: 16px;
}

.about-description{
  flex: 70%;
}

.about-card{
  margin: 0 auto;
  padding: 16px 40px 56px 40px;
}

.contact{
  flex: 100%;
}

.contact-card{
  margin: 0 16px;
  padding: 80px;
  text-align: center;
  color: white;
  background: black;
}

.work-grid{
  display:flex;
  flex-flow: row wrap;
  justify-content:center;
}

.work-grid > div {
  width: 80%;
  margin: 8px;
  text-align: center;
  border-radius: 8px;
}

.work-grid > div hov {

}

.work-grid > div > img {
  max-width:100%;
}

footer{
  background-color:black;
  padding:16px 16px 32px 16px;
  color:white;
  bottom: 0;
  margin-top:16px;
}

.footer-columns{
  display:flex;
  flex-flow:row wrap;
}
.footer-info{
  width: 100%;
  padding: 0 0 8px 0;
}
.footer-links{
  width: 100%;
  border-top: 1px solid #595959;
  padding: 16px 0px;
}
.footer-subline{
  font-family: 'UnifrakturMaguntia', cursive;
  color: #9c9c9c;
}

/****** Test 1 ******/
.content {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.content .content-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 99%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
  opacity: 1;
}

.content-image{
  width: 100%;
}

.content-details {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details h3{
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.5em;
  padding-left: 8px;
  padding-right: 8px;
}

.content-details p{
  padding-left: 8px;
  padding-right: 8px;
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-bottom{
  top: 80%;
}

/****** MEDIA QUERIES ************************************************************************************/

@media all and (min-width: 320px) {

  .column-container {   
    flex-direction: column;
  }
  
}

@media all and (min-width: 768px) {
  
  .column-container {   
    flex-direction: row;
  }
  
  .portfolio-card{
  margin: 16px;
  padding-bottom: none;
  border-bottom: none;
  padding-right: 16px;
  border-right: 1px solid #d9d9d9;
  }
  
  .work-grid > div {
  width: 20%;
  }
  
  .logo-placeholder{
    width:450px;
  }
  
}

@media all and (min-width: 992px) {
  
  .work-grid > div {
  width: 15%;
  }
  
  .about-picture{
  flex: 40%;
}
  
.about-description{
  flex: 60%;
}
  
  .about-card{
  padding: 60px 60px 80px 60px;
}
  
  .footer-columns{
  display:flex;
  flex-flow:row;
}
	
.footer-info{
  width: 60%;
  margin-left: 16px;
}
.footer-links{
  width: 40%;
  border-left: 1px solid #595959;
  border-top:none;
  margin-left: 32px;
  padding: 0 0 16px 32px;
}
  
}