/*
Theme Name: Urbaniahoeve 0.0
Author: Debra Solomon
Description: 
Version: 0.0 (Dec. 2021)
*/

/* DOCUMENT */  


@font-face {
    font-family: 'Neue Haas Unica';
    src: url('letters/NeueHaasUnicaW1G-Bold.woff2') format('woff2'),
        url('letters/NeueHaasUnicaW1G-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Unica';
    src: url('letters/NeueHaasUnicaW1G-BoldItalic.woff2') format('woff2'),
        url('letters/NeueHaasUnicaW1G-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}



/* RESET -------------------------------------------------------------------->*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* ETC -------------------------------------------------------------------->*/

html, body {
	 height:100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
}

main.flexContainer {
  flex: 1;
  display: grid;
}


body {
	font-family: 'Neue Haas Unica', Arial, Helvetica, sans-serif;
 	font-weight: bold; 
	font-style: normal;	
	font-kerning: normal;
	font-variant-ligatures: common-ligatures;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-size: 3.4vw;
	line-height: 3.2vw;
	letter-spacing: -0.08rem;
	color: rgba(158, 2, 255, 0.8);
}


em, i {
	font-family: 'Neue Haas Unica', Arial, Helvetica, sans-serif;
	font-weight: bold; 
	font-style: italic;	
}

a {
	color: rgba(158, 2, 255, 0.8);
	text-decoration: underline;
	text-decoration-thickness: 5px;
	text-underline-offset: 3px;		
	cursor: pointer;
}

a:hover {
	text-decoration: none;
	cursor: pointer;
}

.lazyloadImage,
.lazyload,
.lazyloading {
	transition-property: opacity; 
	transition-duration: 1600ms;
	opacity:0;
}

.lazyloaded{
	opacity:1
}

/* HIGHLIGHT -------------------------------------------------------------------->*/

/* Safari */
::selection {
	background: rgba(0, 0, 0, 0.90);
	color: rgb(245, 239, 245); 
}

/* Firefox */
::-moz-selection {
	background: rgba(0, 0, 0, 0.90);
	color: rgb(245, 239, 245);
}

/* PROGRESS BAR -------------------------------------------------------------------->*/

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: black;
  position: fixed;
  z-index: 1000000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 1px;
}


/* CONTAINERS -------------------------------------------------------------------->*/

#contentContainer {
	width: calc(100% - 3vw);
	margin: 1vw auto 0 auto; 
}

section.information {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}

.column {
	float: left;
}

.left.column {
	width: 47.5vw;
}
.right.column {
	padding-left: 5vw;
}

section.sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 0.3vw;
	z-index: 100; 
}

section#documentation {
    margin-left: 0 !important;
    margin-top: 5vw !important;
    width: 100% !important;
    max-width: 100% !important;

}
    
.documentation {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: -5em 6em 0 6em;
	margin-top: 0;
	position: relative;
	z-index: 0; 
}

.documentation .imageContainer {
    height: auto;
}

.imageContainer figure {
    height: auto;
    max-width: 680px;
    display: table;
}
     
.imageContainer figure img {
    max-width: 100%;
    display: block;
}

footer {
    position: relative;
	width: 100%;
	padding: 4.5vw 1.5vw 4vw 1.5vw;
	margin: 1vw auto 0 auto !important;  
/* 	height: 20vw; */
    background: linear-gradient(0deg, rgba(158, 2, 255, 0.4) 2%,rgba(255, 255, 255, 0));
    vertical-align: bottom;
}





/* MEDIA QUERIES -------------------------------------------------------------------->*/


/* Desktops and laptops ----------- */
@media only screen and (max-width : 1500px) {
	body {
/* 		background: red; */
	}
}

/* iPads (landscape) ----------- */ 
@media only screen and (min-width : 768px) and (max-width : 1200px) and (orientation : landscape) {
	body {
/* 		background: blue; */
	}

}

/* iPads (portrait) ----------- */ 
@media only screen and (min-width : 768px) and (max-width : 1200px) and (orientation : portrait) {
	body {
/* 		background: blue; */
	}
	
}

@media only screen and (min-width : 768px) and (max-width : 1200px) and (orientation : portrait) {
	body {
/* 		background: blue; */
	}
	
}

@media only screen 
and (max-device-width : 992px) 
and (orientation : landscape) { 

	
}

/* Phone  ----------- */
@media only screen and (max-width : 800px) {
	
	body {
		font-size: 6.71vw;
		line-height: 7vw;
		letter-spacing: -0.04rem;
	}

	a {
		text-decoration-thickness: 2px;
		text-underline-offset: 3px;		
		cursor: pointer;
	}
	
	#contentContainer {
		width: calc(100% - 8vw);
		margin: 3vw auto 0 auto; 
	}
	
	.left.column {
		width: 100%;
	}
	.right.column {
		display: none !important;
	}
	
	section.sticky {
		top: 2.5vw;
	}
	
	section#documentation {
	    width: 100% !important;
	    max-width: 100% !important;
	    padding: 0 0 0 0 !important;
	}
	    
	.documentation {
	    padding: 0;
	    flex-direction: column;
	    margin-top: 2vw !important;
	}
	
	.documentation .imageContainer {
		min-width: 80% !important;
		max-width: 100% !important;
		margin-bottom: 0 !important;
	}
	
	.imageContainer figure {
		max-width: 100%;
		margin: 0 auto !important;
	}

	footer {
		padding: 30vw 0vw 10vw 4vw;
	}

		
	
}

/* END -------------------------------------------------------------------->*/