colors-used {
	color: #D7D9D1; /* */
	color: #748E87; /* */
	color: #35C0B8; /* */
	color: #199A99; /* */
	color: #772D38; /* ACCENT */
  /* credit to colorming.io for this configuration*/
}

/*  Defaluts for entrier page*/
*,*::after,*::before{
	margin:0;
	padding:0;
	box-sizing: border-box;
}

/*  CSS variables or custom properties */
:root{
	--ff-primary: arial;
	--ff-secondary: tahoma;
	
	--fw-reg: 300;
	--fw-bold: 900;

	--clr-light: #D7D9D1;
	--clr-mid: #748E87;
	--clr-accent: #772D38;
	--clr-lt-blue: #35C0B8; /* 53,192,184*/
	--clr-dk-blue: #199A99;
	--clr-text: #303030;

	--fs-h1: 3rem;
	--fs-h2: 2.25rem;
	--fs-h3: 1.25rem;
	--fs-body: 1rem;

	--bs: 0.25em 0.25em 0.75em rgba(0,0,0,.25),
				0.125em 0.125em 0.25em rgba(0,0,0,.15);
}
@media (min-width: 800px){
	:root{
		--fs-h1: 4.5rem;
		--fs-h2: 3.75rem;
		--fs-h3: 1.5rem;
		--fs-body: 1.125rem;
	}
}

/*   END CSS variables or custom properties */
html{
	scroll-behavior: smooth;
}

body{
	background-color: var(--clr-light);
	color: var(--clr-text);
	font-family: var(--ff-primary);
	font-size: var(--fs-body);
	line-height: 1.6;
}

img{
	display: block;
	width: 100%;
}

h1,h2,h3{
	line-height: 1em;
}
h1{font-size: var(--fs-h1);}
h2{font-size: var(--fs-h2);}
h3{font-size: var(--fs-h3);}

/*******************************   COMMON CONTENT ITEMS ***********************************/
section{
	padding: 5em 2em;
}
strong{
	display: block;
	font-weight: var(--fw-bold);
}
.section__title{
	margin: 0 0 .25em 0;
}
.section__subtitle{
	font-size: var(--fs-h3);
	font-family: var(--ff-secondary);
}
.section__subtitle--intro,
.section__subtitle--about-me{
	background-color: var(--clr-lt-blue);
	margin-bottom: 1em;
	padding:.25em 1em;
}
.button{
	display: inline-block;
	padding: .5em 2.5em;
	background-color: var(--clr-accent);
	color: var(--clr-light);
	text-decoration: none;
	cursor: pointer;
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: var(--fw-bold);
	transition: transform 200ms ease-in-out;
	border-radius: .5em;
}
.button:hover{
	transform: scale(1.1);
}

/***********************************  Navigation *******************************************/

header{
	display: flex;
	justify-content: space-between;
	padding: 1em;
}
.logo{
	color:var(--clr-accent);
}
.nav{
	position: fixed;
	background-color: var(--clr-dk-blue);
	color: var(--clr-light);
	top:0;
	bottom:0;
	left:0;
	right: 0;
	z-index: 100;
	transform: translateX(100%);
	transition: transform 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
}
 .nav__list{
	 list-style: none;
	 display: flex;
	 height: 100%;
	 flex-direction: column;
	 justify-content: space-evenly;
	 align-items: center;
	 margin: 0;
	 padding: 0;
}
.nav__link{
	 color: inherit;
	 font-weight: var(--fw-bold);
	 font-size: var(--fs-h2);
	 text-decoration: none;
}
.nav__link:hover{
	 color: var(--clr-accent);
}
.nav-toggle{
	padding: 1em;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	position: absolute;
	right: 1em;
	top:1em;
	z-index: 1000;
}
.nav-open .nav{
	transform: translateX(0);
 }
.nav-open .nav-toggle{
	position: fixed;
}
 .nav-open .hamburger{
		transform: rotate(.625turn);
}
.nav-open .hamburger::after{
	opacity: 0;
}
.nav-open .hamburger::before{
	transform: rotate(.25turn) translateX(-6px);
}

 .hamburger,
 .hamburger::before,
 .hamburger::after{
	background-color: var(--clr-accent);
	width: 2em;
	height: 3px;
	border-radius: .5em;
 }
 .hamburger{
	 display: block;
	 position: relative;
	 transition: transform 250ms ease-in-out;
 }
 .hamburger::before,
 .hamburger::after{
	 content:'';
	 position: absolute;
	 left: 0;
	 right: 0;
 }
 .hamburger::before{ top:6px;}
 .hamburger::after{ bottom:6px;}
/***********************************  Introduction ****************************************/

.intro__img{
	/*box-shadow: var(--bs);*/
	margin: 0 auto;
	/* max-width: 200px;
	min-width: 150px; */
	width: 150px;
	border-radius: 50%;
}
.section__title--intro{
	padding-top: 1em;
}
.section__subtitle--intro{
	display: inline-block;
	color: var(--clr-accent);
	border: 2px solid var(--clr-accent);
	border-radius: .5em;
}
@media (min-width: 600px){
	.intro{
		display: grid;
		width: min-content;
		margin: 0 auto;
		grid-column-gap: 1em;
		grid-template-areas: 
			"img title"
			"img subtitle";
		grid-template-columns: 
			min-content
			max-content;
	}
	.intro__img{
		grid-area: img;
		/* min-width: 200px; */
		width: 150px;
		position: relative;
		z-index: 2;
	}
	.section__subtitle--intro{
		align-self: start;
		grid-column: -1/1;
		grid-row: 2;
		text-align: right;
		position: relative;
		left: -1.5em;
		width: calc(100% + 1.5em);
	}
}
@media (min-width: 800px){
	.intro__img{
		width: 200px;
	}
}
/***********************************  My Services ****************************************/

.my-services{
	background-color: var(--clr-dk-blue);
	background-image: url(../images/BG_code.PNG);
	background-size: cover;
	background-blend-mode: multiply;
	color: var(--clr-text);
	font-weight: var(--fw-bold);
	text-align: center;
}
.services{
	margin-bottom: 4em;
}
.section__title--services{
	color: var(--clr-accent);
	position: relative;
}
.section__title--services::after{
	content:'';
	display:block;
	width:25%;
	height:1px;
	margin: .5em auto 1em;
	background-color: var(--clr-light);
	opacity: .50;
}
.service{
	background-color: rgba(53,192,184,.80);
	border: 2px solid var(--clr-accent);
	border-radius: .5em;
	padding: 1em;
	margin: .5em 0;
	flex: 25%;
}
.services h3{
	padding: 0 0 .5em 0;
	text-decoration:underline;
}
@media(min-width: 800px){
	.services{
		display: flex;
		max-width: 1000px;
		margin: 0 auto 4em;
		justify-content: space-between;
	}
	.service + .service{
		margin-left: 2em;
	}
}

/***********************************  About me ****************************************/

.about-me{
	max-width: 1000px;
	margin: 0 auto;
}
.section__subtitle--about-me{
	color: var(--clr-accent);
	border: 2px solid var(--clr-accent);
	border-radius: .5em;
}
.about-me__image{
	width: 150px;
	margin: 1em auto;
}
.about-me__body{
	background-color: rgba(53,192,184,.10);
	border: 2px solid var(--clr-accent);
	border-radius: .5em;
	padding: 1em;
}
.about-me__body p{
	margin: .5em 0;
	text-align: justify;
}
@media(min-width: 600px){
	.about-me{
		display: grid;
		grid-template-columns: 1fr 200px;
		grid-template-areas: 
				"title image"
				"subtitle image"
				"test image";
		grid-column-gap: 2em;
	}
	.about-me__body{
		grid-column: 1/3;
	}
	.section__title--about-me{
		grid-area: title;
	}
	.section__subtitle--about-me{
		grid-column: 1/-1;
		grid-row: 2;
		position: relative;
		left: -1em;
		width: calc(100% + 2em);
		padding: 0 calc(200px + 4em) 0 1em ;
	}
	.about-me__image{
		grid-area: image;
		position: relative;
		z-index: 2;
		width: 100px;
	}
}

/***********************************  My Work ****************************************/

.work{
	background-color: var(--clr-dk-blue);
	color: var(--clr-text);
	text-align: center;
}
.section__subtitle--work{
	color: var(--clr-accent);
	font-weight: var(--fw-bold);
	margin-bottom: 2em;
}
.portfolio{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.portfolio__item{
	background-color: var(--clr-accent);
	overflow: hidden;
}
.portfolio__img{
	transition:
		transform 750ms cubic-bezier(0.39, 0.575, 0.565, 1),
		opacity 250ms linear;
}
.portfolio__img:hover{
	transform: scale(1.2);
	opacity: .5;
}

/***********************************  Detail Project Pages ****************************************/
#individual-item{
	max-width: 1000px;
	width: 80%;
	margin: 1em auto;
}
#item-description{
	background-color: rgba(53,192,184,.10);
	border: 2px solid var(--clr-accent);
	border-radius: .5em;
	padding: 1em;
	width: 80%;
	margin: 1em auto;
}
#individual-item a{
	text-align: center;
	display: block;
	padding: 1em 5em;
	border: 2px solid var(--clr-accent);
	border-radius: .5em;
}
/***********************************  Footer ****************************************/

footer{
	background-color: #111;
	color: var(--clr-accent);
	text-align: center;
	padding: 2.5em 0;
}
footer a { color: inherit}
footer li{
	width:25px;
	text-align: center;
}
.social_list{
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.social_list_item{
	margin: 2em 1.5em;
}