/* BOOTSTRAP stripped - COLLAPSE */

.collapse:not(.show) {
  display: none;
  opacity: 0;
}

.collapsing:not(.custom_transition) {
  position: relative;
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  transition-property: height;
  transition-duration: 0.35s;
}

.collapsing.custom_transition {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 1.35s ease;
}

#portfolio_content.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height;
  transition-duration: 0.35s;
}

.menu_wrap {
	transition-property: width;
	transition-duration: 0.35s;
	/*transition-delay: 0.35s;*/
}
.menu_content {
	transition-property: position;
	transition-duration: 0.35s;
}





/* CLEAN STYLE SHEET */

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

/* TURN OFF USER SELECT */

* {	
	user-select: none;
}

/* smooth scroll behavior */

html {
  scroll-behavior: smooth;
}



/* background color */

body {
	background-color: #212121;
}

/* TEXT FORMATTING */

/* font family */
* {
	font-family: "Work Sans", "Open Sans", "Helvetica", "Arial", sans-serif;
}

/* default formatting */
p, h1, div, span, ul, ol, li, a { /* default font */
	font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    
	color: #dfdfdf;
}
/* default links */
a, a:link, a:visited, a:hover, a:active {
	text-decoration: none;
}

/* pointer cursor when hovering links (even without href) */
/* highlight links when hovering, slightly more when clicking */
/* only if on large screen (aka not touch) */
@media screen and (min-width: 760px) { a:hover {
	cursor: pointer;
	color: #efefef;
}
a:active {
	color: #fdfdfd;
}}



/* CENTER wrap keeps all content in the center of the screen */
.center_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
}

/* MENU wrap keeps menu buttons stacked accordingly to screen width */
.menu_wrap {
	width: 70%;
	min-width: 244px;
	max-width: 493px;
	height: auto;
	min-height: 247px;
	max-height: 494px;
	padding: 0;
	margin: 0;
	text-align: center;
	
	/*background-color: white; /* for testing transitions */
}
@media screen and (orientation:landscape) { .menu_wrap {
	width: 90%;
	max-height: 247px;
}}
@media screen and (orientation:portrait) { .menu_wrap {
	max-width: 244px;
}}

/* MENU content keeps image and text in place */
.menu_content {
	width: 244px;
	height: 247px;
	display: inline-block;
	padding: 16px 32px;
}

/* MENU image */
.menu_link img {
	max-width: 180px;
	border-radius: 50%;
	margin-bottom: 10px;

	box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.2);
}

/* MENU image hover */
/* only if on large screen (aka not touch) */
@media screen and (min-width: 760px) { .menu_content:not(.selected) {
	opacity: 0.6;
	filter: grayscale(100%);
	transition-property: opacity, filter;
	transition-duration: 0.2s, 0.2s;
}
.menu_content:hover {
	opacity: 1;
	filter: grayscale(0%);
}
.menu_link img {
	box-shadow: 0px 0px 0px 0 rgba(0, 0, 0, 0.2);
	transition-property: box-shadow;
	transition-duration: 0.2s;
}
.menu_content:hover .menu_link img {
	box-shadow: 1px 5px 20px 0 rgba(0, 0, 0, 0.2);
}}

/* MENU link p */
.menu_link p {
	text-align: center;
}

/* MENU link a */
.menu_link {
	text-transform: uppercase;
}








/* CONTENT */
/* CONTENT */
/* CONTENT */



/* MUSIC content */
/* MUSIC content */


#music_content {
	margin-top: -6px;
}

/* links on music page */
/* div */
.links {
	padding: 7% 16px;
}
/* p */
.links p {
	padding: 2% 4px;
}

/* different categories/font sizes */
.main p, .main p a {
	font-size: 32px;
}
.secondary p, .secondary p a {
	font-size: 24px;
}
.tertiary p, .tertiary p a {
	font-size: 18px;
}






/* PORTFOLIO content */
/* PORTFOLIO content */


.portfolio_post h1, .portfolio_post p, .portfolio_post a {
	text-align: center;
}

/*.portfolio_content {
	
}*/

.portfolio_post p {
	font-size: 12px;
}
.portfolio_post p.portfolio_description {
	font-size: 10px;
}


.portfolio_post {
	margin-bottom: 32px;
}

.portfolio_wrapper {
	width: 100vw;
}

.portfolio_spacing {
	padding: 32px 0;
}





/* INCLUDED PORTFOLIO.HTML */

#ind {
	margin: 0;
	padding: 0;
}

.ind_container {
	width: 100%;
	margin: auto;
	margin-bottom: 15vh;
}
.ind_home {
	position: sticky;
	top: 2%;
	padding-right: 2%;
	margin-bottom: 0;
	margin-top: 2%;
	z-index: 5000;
}


/* images */

.ind_ind {
	width: 100%;
	padding-bottom: 2px;
	
	opacity: 1;
}

/* fade images */

.fade {
	opacity: 1;
	z-index: 1;
}




/* back to top button */

a#ind_back, a#ind_back:link, a#ind_back:visited, a#ind_back:hover, a#ind_back:active {
	font-size: 12px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;

	color: #212121;
	background-color: #dfdfdf;
	padding: 1px 3px;
	opacity: 1;
}
/* highlight backlink when hovering portfolio */
@media screen and (orientation:landscape) { #ind div p a#ind_back {
	opacity: 0.4;
}
#ind:hover div p a#ind_back {
	opacity: 1;
}}












/* MOBILE OVERRIDES */


@media screen and (orientation:portrait) { .menu_content {
   padding: 16px 32px;
}}