/*STYLING RESET HERE*/
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-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

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;
}

/*END OF RESET*/

html{
	scroll-behavior: smooth;
	
}

h1{
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
}

h2{
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 48px;
	color: purple;
	text-align: center;
	line-height: 1;
}

h3{
	font-family: 'Lato', sans-serif;
	font-weight: 600;
	font-size: 24px;
	color: #707070;
	line-height: 2;
	letter-spacing: .08rem;
}

p{
	font-family: 'Lato', sans-serif;
	line-height: 1.7;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: .25px;
}
b{
	font-weight: 500;
}
hr{
	max-width: 95%;
}
a{
	text-decoration: none;
	color:#973AA8;;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	line-height: 1.5;
	font-size: 16px;
	text-align: center;
}

span{
	font-weight: 600;
}
img{
	width: 100%;
}
.primary-button {
	font-family: 'Lato', sans-serif;
	color:#ffff;
	font-size: 18px;
	cursor: pointer;	
	margin: 50px 0;
	padding: 15px 25px;
	border-radius: 35px;
	border:none;
	font-family: 'Lato', sans-serif;
	background: rgb(151,58,168);
	background: linear-gradient(180deg, rgba(151,58,168,1) 0%, rgba(76,29,84,1) 100%);
	transition: all 0.5s;
}

#arrow{
	display:inline;
	font-size: 18px;
}
.primary-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.primary-button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.primary-button:hover span {
  padding-right: 25px;
}
.primary-button:hover span:after {
  opacity: 1;
  right: 0;
}
body{
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: -30px 0px;
	background-size: 400px 400px;
}
main{
	margin:100px 0;
	width:100%;	
}
header{
	z-index: 99;
	background: rgb(243,234,249);
	background: linear-gradient(90deg, rgba(243,234,249,1) 0%, rgba(255,255,255,1) 100%);
	display: flex;
	justify-content: space-between;
	align-items: center;	
	position: fixed;
	top:0;
	width: 100%;
}
#header-logo{
	margin: auto 0 auto 2%;
	width: 50px;
}
#header-title{
	font-size: 32px;
}
#menu {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	color: #370075;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	}
#menu li a {
	display: block;
	text-align: center;
	padding: 20px 20px;
	text-decoration: none;
	}
#menu a:hover{
	  color:#000;
	  -webkit-transition: all 0.3s ease-in-out 0s;
  	  transition: all 0.3s ease-in-out 0s;
}
/* Responsive menu  */
.hamburger {
    display: none;
}
.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #973AA8;
}
@media only screen and (max-width: 768px) {
	#menu {
        position: fixed;
        left: -100%;
        top: 45px;
        display: flex;
		flex-direction: column;
		justify-content: space-evenly;
		margin: auto;
        background-color: #fff;
        width: 100%;
		height:300px;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
	}
	#menu.active {
        left: 0;
	}
	#menu li a {
        margin: 20px 0;
		text-align: center;
		display: inline;
		text-decoration: none;
		
	}
	#menu a:hover{
		color:#000;
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.hamburger {
        display: block;
        cursor: pointer;
		color:#370075;
		margin-right:10px;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* ////////////////General Tablet Styles///////////////////////*/
@media only screen and (max-width: 1100px) and (min-width: 750px){
	h2{
		font-family: 'Raleway', sans-serif;
		font-size: 36px;
		color: purple;
		text-align: center;
		line-height: 1;
	}
}
/* ////////////////General Mobile Styles///////////////////////*/
@media only screen and (max-width: 750px){
	h1{
		font-family: 'Raleway', sans-serif;
	}
	h2{
		font-family: 'Raleway', sans-serif;
		font-size: 32px;
		color: purple;
		text-align: center;
		line-height: 1;
	}
	h3{
		font-family: 'Lato', sans-serif;
		font-size: 20px;
		color: #707070;
		line-height: 1.5;
		text-align: center;
	}
	p{
		font-family: 'Lato', sans-serif;
		line-height: 1.5;
		font-size: 16px;
		max-width: 60ch;
	}
	.primary-button {
		width:100%;
		margin: 20px 0 5px 0;
		padding: 15px 20px;
		border-radius: 30px;
		border:none;
		font-family: 'Lato', sans-serif;
		background: rgb(151,58,168);
		background: linear-gradient(180deg, rgba(151,58,168,1) 0%, rgba(76,29,84,1) 100%);
		transition: all 0.5s;
	}
	.primary-button a{
		font-family: 'Lato', sans-serif;
		color:#ffff;
		font-size: 14px;
		cursor: pointer;	
	}
	#arrow{
		display:inline;
		font-size: 12px;
	}
}

/* ////////////////About section ///////////////////////*/
#about{
	padding: 0 35px;
	margin-bottom:50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap:35px;
	align-self: baseline;
}
#about-intro{
	margin: auto;
}
#intro-span{
	font-weight: 600;
}
#about-intro h2{
	font-weight: 400;
	text-align: left;
	font-size: 68px;
}
#about h3{
	letter-spacing: 0;
}
#about-intro p{
	margin-top: 15px;
}
#about-photo{
	max-width: 600px;
	border-radius: 50%;
	margin: auto;
}
#about-photo img{
	border-radius: 50%;
}
/* ////////////////Tablet About section ///////////////////////*/

@media only screen and (max-width: 1100px) and (min-width: 750px){
	#about{
		padding-top: 20px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap:30px;
		align-self: baseline;
	}
	#about-intro{
		margin: auto;
	}	
	#about-intro h2{
		text-align: left;
		font-size: 42px;
	}
	#about-intro p{
		margin-top: 15px;
	}
	#about-photo{
		max-width: 400px;
		border-radius: 50%;
		margin: auto;
	}
}
/* ////////////////Mobile About section ///////////////////////*/
@media only screen and (max-width: 749px){
	#about{
		padding: 5px 0;
		margin:auto;
		width: 95%;
		display: grid;
		grid-template-columns: 1fr;
		gap:10px;
		align-self: baseline;
	}

	#about-intro hr{
		display: none;
	}

	#about-intro h2{
		text-align: left;
		font-size: 36px;
	}
	#about-intro h3{
		text-align: left;
	}
	
	#about-intro p{
		margin-top: 15px;
	}
	
	#about-photo{
		max-width: 400px;
		border-radius: 50%;
		margin: auto;
	}
}
/* ////////////////Skills section ///////////////////////*/
#skills{
	margin: 75px auto;
	/* padding: 2%; */
}
#skills p{
	margin: 30px auto;
	text-align:left;
	max-width: 70ch;
	font-size: 18px;
}
#skills-grid{
	margin: 75px auto;
	display:flex;
	flex-direction: row;
	background-color: rgba(243,234,249,1);
	padding: 30px 0 30px 0;
}
.skill-container{
	margin: 0 auto;
	text-align: center;
}
.skill-img-container{
	margin:auto;
	width:150px;
	height:150px;
}
.skill-list{
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	list-style-position: inside;
	list-style-type: disc;
	line-height: 1.5;
}

.skill-list li{
	line-height: 2;
}

/* ////////////////Tablet Skills section ///////////////////////*/

@media only screen and (max-width: 1100px) and (min-width: 750px){
	#skills{
		margin: 20px auto;
		text-align: center;
	}
	#skills p{
		margin: 50px auto;
		width:80%;
	}
	#skills-grid{
		margin: 30px auto;
	}
	.skill-img-container{
		max-width:100px;
		margin:auto;
	}
}

@media only screen and (max-width: 750px){
	.skill-img-container{
		max-width:85px;
		max-height: 85px;
		margin: 5px auto;
	}
	.skill-container{
		margin: 0 auto;
	}
	#skills-grid{
		padding:20px 0;
		gap:35px;
		flex-direction: column;
	}
	#skills p{
		max-width: 95%;
		font-size: 16px;
	}
	.skill-list{
		font-size: 16px;
		margin:auto;
	}
	.skill-list li{
		text-align: left;
	}
}
/* ////////////////Work section ///////////////////////*/
#work{
	margin: 75px auto 75px auto;
	padding: 2%;
}

.work-grid{
	margin: 30px auto 30px auto;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:20px;	
	place-items: center;
}

.work-button{
	width:300px;
	height:300px;
	border:none;
	transform: scale(1);
  	transition: opacity 0.4s, transform 0.4s;
	cursor: pointer;
	font-family: 'Lato', sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #370075;
}

.work-button:hover{
	transform: scale(0.9);
  	opacity: 0.7;
}

#wcp{
	background-image: url(./img/graphic/wcp-poster.png);
	background-size: cover;
	background-position: center;
}

#boomerang{
	background-image: url(./img/graphic/boomerang-cup.jpg);
	background-size: cover;
	background-position: center;
}

#lopsided{
	background-image: url(./img/graphic/lopsided-pack.jpg);
	background-size: cover;
	background-position: center;
}

#balloon{
	background-image: url(./img/graphic/Poster-mockup.png);
	background-size: cover;
	background-position: center;
}

#scfm{
	background-image: url(./img/graphic/scfm-pattern.jpg);
	background-size: cover;
	background-position: center;
}

#oregon{
	background-image: url(./img/web/explore.png);
	background-size: cover;
	background-position: center;
}

#humanizing{
	background-image: url(./img/web/humanizing.png);
	background-size: cover;
	background-position: center;
}

#kos{
	background-image: url(./img/web/kos-1.png);
	background-size: cover;
	background-position: center;
}

#koug{
	background-image: url(./img/web/kougthumb.png);
	background-size: cover;
	background-position: center;
}

#boomerangui{
	background-image: url(./img/ui/3.png);
	background-size: cover;
	background-position: top;
}
#dot{
	background-image: url(./img/ui/dot1.png);
	background-size: cover;
	background-position: center;
	display:none;
}
#boomerangsocial{
	background-image: url(./img/social/1.png);
	background-size: cover;
	background-position: center;
}
#chsir{
	background-image: url(./img/social/chsir\ 1.png);
	background-size: cover;
	background-position: center;
}

/* ////////////////Tablet Work section ///////////////////////*/

@media only screen and (max-width: 1100px) and (min-width: 750px){
	.work-grid{
		margin: 10px auto 30px auto;
		/* display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr; */
		gap:20px;	
		place-items: center;
	}
	
	.work-button{
		width:200px;
		height:200px;
		border:none;
		transform: scale(1);
		transition: opacity 0.4s, transform 0.4s;
		cursor: pointer;
	}
}
/* ////////////////Mobile Work section ///////////////////////*/
@media only screen and (max-width: 749px){
	.work-grid{
		margin: 10px auto 30px auto;
		/* display: grid;
		grid-template-columns: 1fr; */
		gap:20px;	
		place-items: center;
	}	
	.work-button{
		width:300px;
		height:300px;
		border:none;
		transform: scale(1);
		transition: opacity 0.4s, transform 0.4s;
		cursor: pointer;
	}
	#work h3{
		margin:auto;
	}
}

/* ////////////////Contact section ///////////////////////*/
#contact{
	margin: auto;
}
#button-grid{
	margin:20px auto 20px auto;
	place-items: center;
	display:flex;
	gap:10px;
}
.contact-button img{
	width:20px;
}
.contact-button{
	display: flex;
	justify-content: center;
	align-content: center;
	margin:auto;
	background-color: #fff;
	border: 3px solid #973AA8; /* Remove borders */
	color: #973AA8; /* White text */
	padding: 15px 25px;
	border-radius: 35px;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	cursor: pointer; /* Mouse pointer on hover */
	transition: all 0.5s;
}
.contact-button span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}
.contact-button span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
}
.contact-button:hover span {
	padding-right: 25px;
}
.contact-button:hover span:after {
	opacity: 1;
	right: 0;
}
/* ////////////////Mobile Contact section ///////////////////////*/
@media only screen and (max-width: 749px){
	#contact{
		margin: auto;
		padding: 25px 0;
	}
	#button-grid{
		flex-direction: column;
	}
	.contact-button{
		width:100%;
		margin:auto;
		border: 3px solid #973AA8; 
		color: #973AA8; 
		padding: 10px 20px;
		border-radius: 35px;
		font-family: 'Lato', sans-serif;
		font-size: 16px;
		cursor: pointer;
		transition: all 0.5s;
	}
}
/* ////////////////Footer ///////////////////////*/
footer{
	background: rgb(243,234,249);
	background: linear-gradient(90deg, rgba(243,234,249,1) 0%, rgba(255,255,255,1) 100%);
	width: 100%;
	padding:20px 0;
}

#footer-text{
	margin:auto;
	text-align: center;
	font-size: 12px;
}

/* ////////////////Project Pages ///////////////////////*/
.project-details{
	margin: 0 auto;
	padding:0 10px;
	text-align: center;
}
#content-container{
	/* display:grid;
	grid-template-columns:1fr 1fr; */
	display:flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin:auto 50px;
	margin:auto;
	gap:30px;
	width:95%;
}
#photo-container{
	margin: 20px auto;
	max-width: 70vw;	
}
.fotorama{
	margin:auto;
	max-width:100%;
	background-color:#F5F5F5;
}
.content-imgs-grid{
	margin:3% 0;
	width: 100%;
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.content-imgs{
	margin:auto;
	flex: 25%;
	max-width: 750px;
	min-width: 300px;
	vertical-align: middle;
}
.content-imgs img{
	vertical-align: middle;
}
.content-imgs-lrg{
	margin:auto;
	max-width: 700px;
}
.written-content p{
	margin: 0 auto;
	max-width: 75ch;
}
#preview-link{
	display: block;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	background: linear-gradient(120deg,rgb(243,234,249) 0%, rgb(243,234,249) 100%);
    background-repeat: no-repeat;
    background-size: 150px 50%;
    background-position: 50% 90%;
	cursor: pointer;
}

#navbutton-container{
	width:100%;
	display:flex;
	justify-items:  center;
	justify-content: space-evenly;
	align-items: space-evenly;
	align-content: space-evenly;
	margin: 0 auto 30px auto;
}
#navbutton-container h2{
	margin:auto;
}
#navbutton-container .contact-button{
	margin:auto;
}
.back-button{
	margin:auto;
	background-color: #fff;
	border: 5px solid #fff; 
	color: #973AA8; /* White text */
	padding: 15px 25px;
	border-radius: 35px;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	cursor: pointer; /* Mouse pointer on hover */
	transition: all 0.5s;
}
.back-button span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}
.back-button span:after {
	content: '\00ab';
	position: absolute;
	opacity: 0;
	top: 0;
	left: 20px;
	transition: 0.5s;
} 
.back-button:hover span {
	padding-left: 25px;
} 
.back-button:hover span:after {
	opacity: 1;
	left: 0;
}

.written-content h3, .written-content ul{
	margin: 20px 0;
	text-align: center;
}


#figma-prototype{
	position: relative;
  	overflow: hidden;
 	width: 100%;
	padding-top: 75%;
}
iframe, object, embed{
	position: absolute;
 	top: 0;
  	left: 0;
  	bottom: 0;
  	right: 0;
 	width: 100%;
  	height: 100%;
}


/* ////////////////Mobile Project section ///////////////////////*/
@media only screen and (max-width: 849px){
	#content-container{
		/* display:grid;
		margin:auto; */
		width:100%;
		/* grid-template-columns:1fr; */
		gap:30px;	
	}	
	#photo-container{
		max-width: 95vw;
		margin:auto;
	}

	.written-content{
		margin: 0 auto;
		padding:0 10px;
	}

	#navbutton-container h2{
		font-size: 20px;
	}
}

@media only screen and (max-width: 749px){
	.back-button{
		padding: 10px 20px;
		font-size: 16px;
	}
	#navbutton-container .contact-button{
		padding: 10px 20px;
		font-size: 16px;
		width:auto;
	}
}
