/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.cdnfonts.com/css/inter?styles=169530,29139,29142,29132,29135,29136,29137,29140,29128,29130,29126,29127');
@import url("https://use.typekit.net/xwb7zke.css");
@import url('https://fonts.cdnfonts.com/css/archivo-black');
@import url('https://fonts.cdnfonts.com/css/space-grotesk');

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

:root {
--main-bg: #3500ba;
	--secondary-bg: #f8f4f1;
	--font-colour: #45D179;
}

body {
    background-color: var(--main-bg);
        width: 100%;
    height: 100%;

}

nav{
    font-family: 'inter', sans-serif;
    color: #342F2F;

}
p, a{
 font-family: 'Space Grotesk', sans-serif;
letter-spacing: 0.09em;
                                                
    color: white;
    font-weight: bold;
}
a{
    text-decoration: none;
    color: white;
}

h1, h2 ,h3,h4,h5{
    font-family: 'Archivo Black', sans-serif;
    color:#53CF55;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

	nav > div {
		display: flex;
		border: 2px solid black;
		background: rgba(0, 0, 0, 0.387);
		border-radius: 16px;
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
		border: 1px solid rgba(0, 0, 0, 0.546);
		padding: 1em;
		border-radius: 5em;
        gap: .5em;
	}
	nav {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 1.5em;
        padding-top: 1em;
	}
div > a{
    color: var(--font-colour);
    font-weight: bolder;
    font-size: 1em;
    
}

.name {
  display: flex;
  justify-content: center;
}

.logo {
  display: grid;
  place-items: center; /* horizontaal + verticaal centreren */
    padding-top: 2.5em;
}

.logo img {
  grid-area: 1 / 1;
  width: 100%;
height: 13em;
}

.logo h1 {
  grid-area: 1 / 1;
  margin: 0;
  text-align: center;
  font-size: 3em;
}
/*--------------------------------------------------------------
# project
--------------------------------------------------------------*/

.details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.5em;
    gap: 1.5em;
  padding-left: 1em;
  padding-right: 1em;
}

.details img {
    width: 100%;
    max-width: 800px; 
    height: auto;
}

.details .meta {
    text-align: center;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    padding-top: 2.5em;
}


.details .meta dt {
    font-weight: bold;
    line-height: 1.6em;
}

.details .meta dd {
    margin: 0 0 1em 0;
}

/* keep spacing if figure needs it */
.details figure {
    margin: 0 auto;
}

.details figcaption {
    max-width: 800px;

    overflow-y:visible;

}

/*--------------------------------------------------------------
# process
--------------------------------------------------------------*/

.process {
    display: flex;
    flex-direction: column;
    align-items: center;
justify-content: center;
  padding-left: 1em;
  padding-right: 1em;
    margin-top: 2.5em;
}

.process h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
    text-align: center;
}

.process-main {
    width: 100%;
    max-width: 800px;
    margin-bottom: 2.5em;
}

.process-main img {
    width: 100%;
    height: auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5em;
    width: 100%;
    max-width: 800px;
}

.process-step h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
    text-align: center;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    width: 100%;
}

.step-content img {
    width: 100%;
    height: auto;
    max-width: 600px;
}

/* max width 800px for 1st article image */
.process-step:nth-of-type(1) img {
    max-width: 800px;
}

/* max width 800px for 2nd article image */
.process-step:nth-of-type(2) img {
    max-width: 800px;
}

/* max width 800px for 3rd article image */
.process-step:nth-of-type(3) img {
    max-width: 800px;
}

.step-content p {
    text-align: center;
    max-width: 600px;
    line-height: 1.3;
}

/*--------------------------------------------------------------
# Full process link section
--------------------------------------------------------------*/

.full-process {
    text-align: center;
    margin: 4em auto;
}

.full-process h2 {
    font-size: 2em;
    margin-bottom: 1em;
}

.process-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2em;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 1em;
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: 2em;
    padding-bottom: 4em;
}
a[href="/about.html"]::after {
    content: " /";
}


/*--------------------------------------------------------------
# media querys
--------------------------------------------------------------*/

@media (max-width: 768px) {
.logo h1 {
 font-size: 2em;
}
}
    

@media (max-width: 1024px) {

    footer {
    flex-direction: column;
    justify-content: left;
    align-items: center;
    padding-left: 2em;
    text-align:start;
    }
}

