/* Colour Palette */
:root {
  --grey-blue: #64798C;
  --grey_blue-dark: #4F606F;
  --grey-blue-darker: #3A4752;
  --brown: #A6826D;
  --clay: #BF8069;
  --salmon: #F2BBAE;
  --light-grey: #F2F2F2;
}


/* defaults */
body{
	color: var(--grey-blue-darker);
  margin: 0;
}

p {
  margin: 0;
  padding-bottom: 1em;
}

a {
  text-decoration: none;
  color: var(--grey-blue-dark);
  cursor: pointer;
}

h1 {
  margin: 0;
/*  color: var(--grey-blue);*/
}

blockquote{
  margin: 0 auto;
  font-style:italic;
  padding:1.2em 30px 0em 70px;
  line-height:1.6;
  position: relative;
/*  border-left:8px solid var(--salmon) ;*/
/*  background: var(--light-grey);*/
}

blockquote::before{
  font-family:Arial;
  content: "\201C";
  color:var(--clay);
  font-size:7em;
  position: absolute;
  left: 10px;
  top:-25px;
}

blockquote::after{
  content: '';
}

cite {
  width: 100%;
  text-align: right;
}

/* Slideshow */
#quoteSlideshow { 
  background: var(--light-grey);
}

.slick-dots {
/*  top: 0px;*/
  background: var(--light-grey);
}

/* scroll behaviour */
html {
  scroll-behavior: smooth;
}

/* FONTS */
/* Default front Roboto */
.sansserif {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 400;
/*  font-size: 1em;*/
}

/* monospace roboto */
.mono {
   font-family: "Roboto Mono", serif;
    font-optical-sizing: auto;
    font-weight: 650;
}

.accentfont {
  color: var(--clay);
  font-weight: 650;
}

/* Generic Classes */
.flex { display: flex; }
.evenVerticalFlex {
  flex-direction: column;
  align-content: center;
  justify-content: center;
  row-gap: 15px;
}

/* Backgrounds */
.grey {
  background-color: var(--light-grey);
}

.grey-blue {
  background-color: var(--grey-blue);
}

.grey-blue-dark {
  background-color: var(--grey_blue-dark);
}

.grey-blue-darker {
  background-color: var(--grey-blue-darker);
}

.white {
  background-color: #FFF;
}


/* Header */
header {
  background-color: var(--light-grey);
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 650px) {
  header {padding: 15px 0px;}
}  


header > .flex {
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
  text-align: center;
}
header > .flex > div > h1 {margin: 0;}
header > .flex > div {
  padding: 15px 15px 0 15px;
}

@media only screen and (min-width: 650px) {
  header > .flex {
	max-width: 1600px;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 15px 0 15px;
	margin: 0 auto;
  }
}  

/* Navigation Menu */
.headerMenu { font-size: 1.2em;}
.headerMenu > a { margin: 0.8em 0.4em;}

/*@media only screen and (min-width: 650px) {
  .headerMenu > a { margin-top: 0.8em; }
}  */

.hover-underline-animation {
  display: inline-block;
  position: relative;
  padding-bottom: 1px;
}

.hover-underline-animation.inactive::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  color: var(--grey-blue-dark);
  background-color: var(--clay);
  transform-origin: bottom left;
  transition: all 0.25s ease-in;
}

.hover-underline-animation.inactive:hover {
  color: var(--clay);
  transition: all 0.25s ease-in;
}

.hover-underline-animation.inactive:hover::after {
  transform: scaleX(1);
  height: 2px;
  transform-origin: bottom left;
}

.hover-underline-animation.active {
  color: var(--clay);
  text-decoration: underline 2px;
  text-underline-offset: 4px;
}

.zig-zag {
  height: 40px;
  --a: 110deg; /* the angle of the spikes */
  --s: 40px;  /* the size of the spikes */
  
  mask:  
    conic-gradient(from calc(var(--a)/-2) at bottom,
      #000 var(--a),#0000 0) 50%/var(--s);

}


/* Main Content Wrapper */
#mainContentWrapper {
/*  display:block;*/
}

/* First and last 2 content blocks to not have border */
.contentBlockWrapper:first-child, .contentBlockWrapper:nth-last-child(-n+2) {
  border: 0;
}

.contentBlockWrapper:nth-child(odd) {
}

/* Content Blocks */
.contentBlock {
  padding: 20px;
}

.quoteBlock {
  margin: 20px;
}

@media only screen and (min-width: 650px) {
  .contentBlock { max-width: 900px; margin: 0 auto 0 auto; padding-top: 50px;}
  .quoteBlock { max-width: 900px; margin: 0 auto 0 auto;}
} 

/* Intro Block */
.introPic {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin: auto 0;
} 

.introBlock {
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 15px 5px;
}

@media only screen and (min-width: 650px) {
  .introBlock { flex-wrap: nowrap; flex-direction: row; gap: 40px;}
}  

.introBlock > div {
  max-width: 500px;

  font-size: 1.6em;
}

.introBlock > div > p {
  padding: 0;
}


@media only screen and (min-width: 650px) {
  .introBlock > div { text-align: left; font-size: 2.2em;}
}

.typewrite {
  text-decoration: none;
  color: var(--clay);
}

.contentBlock.flex > h1 {
}

.twoColumnWide {
  flex-direction: column;
  gap: 20px;
}

@media only screen and (min-width: 650px) {
  .twoColumnWide {
    flex-direction: row;
    gap: 35px;
  }
  .contentBlock.flex > h1 {
    width: 150px;
    text-align: right;
    flex-shrink: 0;
    display: block;
  }
}

/* Portfolio Grid */
.portfolioGrid {
  flex-wrap: wrap;
  flex-direction: row;
  gap: 50px;
  margin-top: 30px;
  align-items: flex-start;
}

.portfolioItem {
/*  padding: 15px; */
/*  background: white; */
  padding-left: 15px;
  border-left: 3px solid var(--salmon);
  display: block;
  flex: 1 0 95%;
}

.portfolioItem > h1 {
   font-family: "Roboto Mono", serif;
    font-optical-sizing: auto;
    font-weight: 650;
    font-size: 1.4em;
    color: var(--grey-blue);
}

.portfolioItem > h2 {
    font-size: 1.1em;
    color: var(--clay);
}

.readmore {
  color: var(--clay);
}

.hiddenExtraText {
	display: none;
}

@media only screen and (min-width: 650px) {
  .portfolioItem {
    flex: 1 0 44%;
  }
}

/* contact block */
.contactBlock {
  color: #FFF;
  padding-bottom: 40px;
}

.contactBlock > h1 {
  margin-bottom:25px;
}

.contactBlock > .flex {
  flex-wrap: wrap;
  row-gap: 40px;
}


.contactBlock > .flex > div {
  width: 350px;
  display: block;
}

.contactBlock > .flex > div > p {
  padding-bottom: 5px;
  font-size: 1.2em;
}


/* contact icons */
.material-symbols-sharp {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

/* Style all font awesome icons */
.socialLogo {
  padding: 10px;
  font-size: 20px;
  width: 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  background: white;
  color: var(--grey-blue);
}

/* Add a hover effect if you want */
.socialLogo:hover {
  opacity: 0.7;
}

.copyrightInfo {
  font-size: 0.8em;
  margin-top: 50px;
  width: 100%;
  text-align: left;
}








