@font-face {
  font-family: "large";
  src: url(webfonts/Large-Roman.woff2);
}

@font-face {
  font-family: "inter";
    src: url(webfonts/inter.woff2);
}


body {
    font-family: "inter";
	background-color: white;
	color: black;
    font-size: 1.2rem;
}
a,
a:visited {
	color: black;
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

/* TYPOGRAPHY */
h1,
h2,
h3, 
h4,
h5,
h6 {
    font-family: "inter";
    font-weight: normal;
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 3rem;
}

.home .entry-title {
    display: none;
}

/* STRUCTURE */
.site-header{
    border-right: 2px solid black;
    padding: 2rem;
}

.site-footer {
    border-right: 2px solid black;
    padding: 2rem;
}

.design-group{
    margin: 0;
    padding: 1rem;
    border-bottom: 2px solid black;
}

.site-main {
  
}

.header{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* HEADER */
.site-header{
    
}

.main-navigation{
    width: auto;
}

.site-description{
    display: none;
}

.site-title a{
    text-decoration: none;
}

.site-title{
    padding-bottom: 0.5rem;
}



/* SITE BRANDING */

h1.site-title,

.site-branding a{
    font-family: "large";
    color: black;
}

/* NAVIGATION */

.main-navigation{
    margin-top: 2rem;
}

.main-navigation ul li a {
    display: block;
    font-size: 1.5rem;
}

.main-navigation ul li{
    margin-left: 1px;
}

.main-navigation ul ul{
    display: block;
}

.main-navigation ul ul a{
    width: 100%;
}

.main-navigation a:hover{
    color: black;
    text-decoration: 2px underline;
}

/* BURGER MENU TOUJOURS VISIBLE*/
@media (min-width: 600px) {
    p.site-title{
    margin: 0;
    line-height: 1;
    font-size: 3rem;
    }
    .site{
        display: flex;
        justify-content: space-between;
    }
    .site-header{
        position: fixed;
        width: 20%;
        height: 100vh;
    }
    .site-main{
        margin-left: 20%;
        width: 80%;
    }
    .site-footer{
        position: fixed;
        background-color: white;
        bottom: 0;
        width: 20%;
    }
    
    .main-navigation ul {
        display: block;
    }

    .site-branding:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: black;
}
}
    
@media (max-width: 600px) {
    p.site-title{
    margin: 0;
    line-height: 1;
    font-size: 3rem;
    }

.menu-toggle{
    display: block !important;
    z-index: 2000;
    position: fixed;
    top: 3rem;
    right: 2rem;
    background: url('images/burger-off.svg') no-repeat center;
    background-size: contain;
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    border: 0;
}

.toggled .menu-toggle{
    background-image: url('images/burger-on.svg');
}

.main-navigation ul{
    display: none !important;
}

.main-navigation.toggled ul{
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.main-navigation ul ul{
    position: static !important;
    box-shadow: none;
    background-color: transparent;
    padding: 1rem !important;
    font-size: 0.8em;
}

.main-navigation.toggled #primary-menu{
    background-color: rgb(7, 82, 7);
    position: fixed;
    top: 0 ;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    }
}   

/* ARCHIVES */
.archive article {
    
}

.archive-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.archive-grid article {
    width: 30%;
    position: relative;
}

.archive-grid article .entry-header {
    position: absolute;
    left: 1rem;
    bottom: 0;
    color: white;
    opacity: 0;
    transition: 0.3s all ease-in-out;
}

.archive-grid article a:hover .entry-header {
    opacity: 1;
    
}

/*Homepage*/
.home .home-p{
    margin-top: 1rem;
    margin-bottom: 0;
}

.home .column{
    margin-bottom: 1rem;
}

.home .recent-works{
    margin: 0;
    padding: 1rem;

}

.home .digital-garden-overview{
    margin: 0;
    padding: 1rem;
    justify-content: space-evenly;
}

.home .currently-listening{
    margin: 2rem;
    font-size: 1rem;
    width: 150px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.home .currently-listening img{
    width: 150px;
    object-fit: cover;
}