/*
 Theme Name: Obistyle official theme
 Author: Ikke
 Description: Minimal magazine layout
 Version: 32.10
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Shadows+Into+Light&display=swap');

* { 
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

body, html { 
 height: 100%; 
 font-family: "Inter", sans-serif;
 font-style: normal;
 font-size: 15pt;
 color: #E0E0E0;
 background: #E0E0E0; 
}

/* TABLET AND SHIT ============================================== */
@media only screen and (min-width: 768px) {
  .post-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .post-grid article:nth-child(1) {
    grid-column: 1 / -1;
  }
}

/* OTHER SHIT =================================================== */
@media only screen and (min-width: 1024px) {

 .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
 }

 .nav {
  position: fixed;
  width: 25%;
 }

 .content {
  width: 75%;
  margin: 10px 0 0 25%;
  display: flex;
  flex-wrap: wrap;
 }

 .contentfull {
  width: 75%;
  margin: 10px 0 0 25%;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
 }	

 .post {
  width: calc(50% - 30px);
  height: auto;
  aspect-ratio: 35 / 42; /* Shake it like a poloroid picture */
  background: #F4F4F4;
  overflow: hidden;
  margin: 0 10px 10px 0;
  padding: 15px;
 }
	
 .post a {
  text-decoration: none;
  color: #121212;
 }

 .postfull {
  padding: 25px;
  background: #F4F4F4;
 }
	
 .navcontainer {
  margin: 40px 0 0 0;
 }
	
 .meta {
  margin-top: auto; /* duwt info naar de onderkant */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
 }	
	
 .greetings {
  width: 50%;
  color: #121212;	 
  background: #00ff00;
 }	
	

/* ▒▒ IMAGES ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ */
 .feat {
  width: calc(100% - 2px);
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-top: 1px solid #444444;
  border-right: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #444444;
 }

 .post img {
  width: auto;
  height: 100%;
 }
	
 .postfull img {  
  width: 100%;
  height: auto;
  margin: 25px 0 0 0;
 }
	

/* ▒▒ FONTS ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ */
 .post h1 {
  font-family: "Shadows Into Light", cursive;
  font-size: 1.1em;
  color: #121212;
  letter-spacing: 0.1em;
  line-height: 1.1em;
  margin: 10px 0 0 0;
 }

 .post h2 {
  font-family: "Inter", sans-serif;
  font-size: 0.7em;
  margin: 10px 0 0 0;
 }
	
 .postfull h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5em;
  color: #121212;
  letter-spacing: 0.1em;
 }

 .postfull h2 {
  font-family: "Inter", sans-serif;
  font-size: 0.7em;
  color: #121212;	 
  margin: 0;
 }	
	
 .postfull h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1em;
  color: #121212;	 
  letter-spacing: 0.1em;	 
  margin: 25px 0 -25px 0;
 }		
	
 .postfull p {
  font-family: "Inter", sans-serif;
  font-size: 0.9em;
  color: #121212; 
  line-height: 1.4em;
  margin: 25px 0 0 0;	 
 }		

}

@media (max-width: 1200px) {}
@media (max-width: 900px) {}
@media (max-width: 600px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none; /* later vervangen door hamburger */
  }

  .posts-container {
    grid-template-columns: 1fr;
  }	
}

/* Kleuren
01 - #121212
02 - #444444
03 - #888888
04 - #B0B0B0
05 - #E0E0E0
*/

/* Fonts
.shadows-into-light-regular {
  font-family: "Shadows Into Light", cursive;
  font-weight: 400;
  font-style: normal;
}

// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
*/
