@font-face {
  font-family: HelveNeueBold;
  src: url(fonts/HelveNeueBold.ttf);
}
@font-face {
  font-family: GeosansLight;
  src: url(fonts/GeosansLight.ttf);
}
@font-face {
  font-family: GeosansLightOblique;
  src: url(fonts/GeosansLight-Oblique.ttf);
}

body {
	/*font-family: 'Open Sans', sans-serif;*/
	font-family: 'GeosansLight', sans-serif;
	GeosansLight
	font-size: 12px;
	/*color: #e8eced;*/
	color: #f7f4e3;
	background-color:#191f27; /*#43556e; */

}
a, a:link, a:visited {
	text-decoration: none;
	/*color: #e8eced;*/
	color: #f7f4e3;
	border-bottom: 1px solid rgba(255, 143, 0, 0.25);
}
a:hover {
	color: #d05f82; /*#cc2b5d bold font color*/
	color: #fff;
	border-bottom: 1px solid rgba(255, 20, 0, 0.35);
}
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .header-content {
	width: 40%;
}

@media only screen and (max-width: 800px) { 
	header .header-content {
		width: 80%;
	}
}


header .header-content img {
	width: 100%;
	border-radius: 1px;
}

header .header-content div {
	text-align: center;
	letter-spacing: 0.3em;
	font-size: 1em;
	margin-top: 1em;
}
header .header-content div p {
	display: flex;
	justify-content: space-between;
	line-height: 1.5em;
}

/*header .header-content div p a {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}*/

section {
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

section .section-content {
	height: 100vh;
	width: 100vw;
	/*border: 4px solid magenta;*/
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transform: scale(0, 0);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 1s;
}
section .section-content h2 {
	font-size: 100px;
	font-family: 'GeosansLightOblique', sans-serif;
	color: #f7f4e3; /* album cover color*/
	text-align: center;
}

section .section-content.primary h2 {
	color: #333;
}

/*section .section-content.above {
	transform: scale(1.2, 1.2);
	opacity: 0;
	visibility: hidden;
}

section .section-content.below {
	transform: scale(0, 0);
	opacity: 0;
	visibility: hidden;
}*/

section .section-content.show {
	/*transform: scale(0, 0);*/
	transition: opacity 1s;
	opacity: 1;
	visibility: visible;
}

section .section-content.temp-hidden {
	pointer-events: none;
}

section .section-content.primary {
	background-image: url('/src/img/me1.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	color: #333;
	text-align: center;
	pointer-events: none;
}

@media only screen and (max-width: 800px) {
	section .section-content.primary h2 { 
		font-size: 50px;

	}
}

section .side-text {
	width: 100vh;
	height: 100vw;
	overflow: hidden;
    line-height: 4em;
    letter-spacing: 1em;
    transform: rotate(90deg);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
    opacity: 0.5;
    pointer-events: none;
}

section .section-video {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

section .section-video img {
	width: 60%;
	border-radius: 1px;
}

@media only screen and (max-width: 800px) { 
	section .section-video img {
		width: 80%;
	}
}

section .section-video .play-btn {
	position: absolute;
	justify-content: center;
    align-items: center;
    text-align: justify;
}

section .section-video .play-btn a {
	display: block;
	width: 50px;
	border: none;
}

section .section-video .play-btn a svg {
	display: block;
	width: 100%;
}

.moon-phase-section-content > div {
	text-align: center;
	letter-spacing: 0.6em;
}

.moon-phase-section-content > div a {

}

.header {
	position: relative;
	display: flex;
 	width: 100%;
 	height: 100vh;
 	flex-direction: column;
 	justify-content: center;
 	align-items: center;
 	background-color: #e8eced; 
}
.header:nth-child(1) {
	background-color: #ede9e8; 
}
.header .header-img {
	width: 40%;
	height: 60%;
	transition: all 1.5s;
	transform: translate(0px, 0px);
	opacity: 1;
	position: relative;
	z-index: 1;
}
.header .header-img.primary {
	background-image: url(../src/img/grid_ec_cover.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.header .header-img.primary.loading {
	transform: translate(0px, 10px);
	opacity: 0;
}
.header .header-img.secondary {
	background-image: url(../src/img/cover2.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.header .listen-cta {
	color: #89788f;
	border: 3px solid #89788f;
	position: relative;
	z-index: 2;
	letter-spacing: 8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.7s;
    max-width: calc(100% - 80px);
    overflow: hidden;
    margin-top: 32px;
}
.header .listen-cta:hover, .header .listen-cta:active {
	color: crimson;
	border: 3px solid crimson;
}
.header .listen-cta .listen-title {
	padding: 12px 12px 0px 20px;
	text-align: center;
}

.header .listen-cta .listen-list-wrap {
	padding: 12px;
	overflow-y: hidden;
    overflow-x: auto;
}

.header .listen-cta ul.listen-list {
	display: inline-flex;
}
.header .listen-cta ul.listen-list a, 
.header .listen-cta ul.listen-list a:link, 
.header .listen-cta ul.listen-list a:visited {
	color: #89788f;
    font-size: 8px;
    letter-spacing: 4px;
    display: inline-block;
    text-align: center;
    padding: 16px;

}
.header .listen-cta ul.listen-list a:hover {
	color: crimson;

}
.header .listen-cta ul.listen-list a span{
	display: block;
	padding-top: 8px;
	white-space: nowrap;
}

@media only screen and (max-width: 800px) {
	.header .header-img {
		width: 100%;
    	height: 60%;
    	margin-top: 48px;
	}
}
.video {
	background-color: #333;
	width: 100%;
 	height: 100vh;
 	display: flex;
 	justify-content: center;
 	align-items: center;
}
.video iframe {
	/*width: calc(100% - 108px);
	height: calc(100% - 108px);*/
	width: 100%;
	height: 100%;
}

/* experimental stuff */

.header, .video {
	transform: scale(0,0);
} 

.menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
}

.menu a, .menu  a:link, .menu  a:visited {
 border-bottom: none;
}

ul { /* for all list containers */
	list-style: none;
}
.menu ul li{
	margin: 16px;
	position: relative;
}
ul li svg { /* for all svgs in lists */
	width: 24px;
	height: 24px;
	fill: #8d7f93;
	transition: all 0.5s;
}
ul li a:hover svg{ /* for all svgs in lists */
	fill: #cc2b5d;
}
.fill-svg {
	fill: #cc2b5d;
}
.menu ul li svg text {
	font-family: "HelveNeueBold", san-serif;
	font-size: 6px;
	letter-spacing: 2px;
}
.menu ul li svg text:nth-child(2) {
	letter-spacing: 3px;
}
/* keep for rotating down arrow */
.menu ul li:nth-last-child(1) svg {
	transform: translateY(0px) rotate(90deg);
	transition: all 1s;
}
.menu ul li:nth-last-child(1) svg.stretch-arrow {
	transform: translateY(10px) rotate(90deg)
}
.menu ul li a .text-div, .menu ul li span .listen-div {
	position: absolute;
	top: 0;
	right: 24px;
	padding-right: 4px;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.3s;
	transform: scaleX(0);
	transform-origin: top right;
	opacity: 0;
}
.menu ul li a:hover .text-div {
	transform: scaleX(1);
	opacity: 1;
}
.menu ul li span:hover .listen-div {
	transform: scaleX(1);
	opacity: 1;
}
.menu ul li span .the-speaker {
	transform: scale(1.2, 1.2) translateX(24px);
	transform-origin: center right;
	transition: transform 0.3s;
}
.menu ul li span:hover .the-speaker{
	transform: scale(1, 1) translateX(0px);

}
.menu ul li span .listen-div span {
	text-transform: uppercase;
	letter-spacing: 12px;
}
.menu ul li span .the-sound {
	opacity: 0;
	transition: opacity 0.3s;
}
.menu ul li span:hover .the-sound {
	opacity: 1;
}
@media only screen and (max-width: 800px) {
	.menu {
		width: 100%;
	}
	.menu ul {
		display: flex;
		justify-content: space-around;
	}
	.menu ul li {
		/*margin: 0;*/
	}
}
.footer {
	min-height: 100vh;
    overflow: hidden;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	color: lightgrey;
	padding: 32px;
	background: linear-gradient(217deg, crimson, rgba(255,0,0,0) 70.71%),
        linear-gradient(127deg, #89788f, rgba(0,255,0,0) 70.71%),
        linear-gradient(336deg, #2196F3, rgba(0,0,255,0) 70.71%);
}
.footer > div { /* commen css for side a&b */
	min-width: 260px;
}
.footer h3 {
	text-transform: uppercase;
	letter-spacing: 12px;
	font-size: 16px;
	white-space: nowrap;
}
.footer .side-a {
	flex: 2;
}
.footer .side-a span {
	display: block;
	margin-bottom: 24px;
	white-space: nowrap;
	text-transform: uppercase;
	font-size: 8px;
	letter-spacing: 2px;
}
.footer .side-b {
	/*text-align: right;*/
	flex: 1;
}

@media only screen and (max-width: 800px) {
	.footer .side-b {
		display: flex;
	    /* width: 100%; */
	    flex-direction: column;
	    justify-content: flex-end;
	}
}
.footer input {
	margin: 4px 0 0;
	padding: 12px 16px;
    border-radius: 2px;
    outline-color: crimson;
    border: 1px solid #8c7f92;
    width: calc(100% - 64px);
    color: #333;
}
.footer input::placeholder {
	color: #c6c6c6;
	text-transform: uppercase;
	letter-spacing: 2px;

}
.footer input[type="submit"] {
	margin: 12px 0 0;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	border: none;
	opacity: 0.7;
	transition: all 0.5s;
	background: linear-gradient(217deg, #89788f, rgba(255,0,0,0) 70.71%),
        linear-gradient(127deg, #bf4c29, rgba(0,255,0,0) 70.71%),
        linear-gradient(336deg, crimson, rgba(0,0,255,0) 70.71%);
}
.footer input[type="submit"]:hover {
	opacity: 1;
	background: linear-gradient(217deg, #89788f, rgba(255,0,0,0) 70.71%),
        linear-gradient(336deg, #bf4c29, rgba(0,255,0,0) 70.71%),
        linear-gradient(127deg, crimson, rgba(0,0,255,0) 70.71%);

}

.video-container {
	position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    z-index: 2;
}

.video-container.show {
	opacity: 1;
	visibility: visible;
}


.video-container iframe {
	width: 100%;
	height: 100%;
}

.video-container .close-btn {
	position: absolute;
	top: 0;
	right: 0;
    background-color: black;
    cursor: pointer;
    z-index: 3;
}

/*@media only screen and (max-width: 800px) {
	.video-container .close-btn { 
		top: 60px;
	}
}*/

.play-btn {
	cursor: pointer;
}
/*
.video-container .close-btn:hover {
	opacity: 1;
}*/

