/* Fonts */
@font-face {
    font-family: "Circle_Semi";
    src: url(../font/Cicle_Semi.ttf);
}
@font-face {
    font-family: "Engagement-Regular";
    src: url(../font/Engagement-Regular.ttf);
}
* {
    box-sizing: border-box;
}
body {
	height: 100%;
 	margin: 0;
	overflow-x: hidden;
    background-color: white;
    font-family: 'Circle_Semi', 'Open Sans', sans-serif;
}
section:not(:first-of-type) {
    background-color: #fff;
    padding: 20px 30px 20px 30px;
    font-size: 1.1em;
    overflow-x: hidden;
}
section:not(:first-of-type) .sectionContent {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    padding-top: 70px;
    margin-top: -70px;
}
section:not(:first-of-type) h3 {
    font-size: 3rem;
    font-family: "Engagement-Regular";
    text-align: center;
    color: #c8b4a0;
    font-weight: 100;
}
section:not(:first-of-type) h3:before {
    font-family: "Arial", sans-serif;
    content: '—';
    padding: 0 10px;
}
section:not(:first-of-type) h3:after {
    font-family: "Arial", sans-serif;
    content: '—';
    padding: 0 10px;
}
section h4 {
	margin-bottom: 5px;
    font-size: 18px;
}
section:nth-child(odd) {
	background-color: #FEF5EE;
	color: #000;
}
section:nth-child(odd) h3 {
	color: #ff6b81;
} 
.verticalAlignCenter {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
 	-webkit-transform: translateY(-50%);
 	-moz-transaform: translateY(-50%);
 	-ms-transform: translateY(-50%);
}
.clearBoth {
	clear: both;
}
/* Nav */
#nav {
	display: table;
	table-layout: fixed;
	height: 60px;
	background-color: #ff82ab;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
	font-family: 'Engagement-Regular';
	font-size: 1.85em;
	padding: 10px 3%;
}
#navLeft, #navRight {
	width: 40%;
	display: table;
}
#navLeft {
	float: left;
}
#navRight {
	float: right;
	text-align: right;
}
#navLeft > DIV, #navRight > DIV {
	padding: 0 5px;
	width: 50%;
	display: table-cell;
}
#nav a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: #ff82ab;
    padding: 5px 10px;
    border-radius: 15px;
	border-bottom: 3px solid #ff82ab;
}
#nav.active {
	box-shadow: 0 0 10px rgba(0,0,0,0.4);   
}
#nav a.activeLink {
    border-bottom: 3px solid #fff;
    transition: all 0.5s ease;
    background-color: rgba(255, 255, 255, 0.4);
}
#heart {
	background-image: url("../images/heart.png");
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    height: 120px;
    left: 0;
    right: 0;
    margin: auto;
    width: 23%;
    top: -2%;
}
@Media (max-width: 1000px) {
	#nav {
		font-size: 1.6em;
		height: 48px;
	}
	#heart {
		width: 27%;
		top: -10px;
	}
}
@Media (max-width: 800px) {
	#heart {
		top: -2px;
	}
}
@Media (max-width: 700px) {
	#nav {
		font-size: 1.4em;
	}
}
@Media (max-width: 630px) {
	#heart {
		top: 6px;
	}
}
@Media (max-width: 530px) {
	#nav {
		font-size: 1.2em;
		height: 32px;
	}
}
@Media (max-width: 430px) {
	#nav {
		font-size: 1em;
	}
	#heart {
		top: 9px;
	}
	section:not(:first-of-type) h3 {
   		font-size: 2.5rem;
   	}
}
@Media (max-width: 335px) {
	#heart {
		top: 13px;
	}
}

/* Slider */
#sliderContainer {
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	position: relative;
	padding-top: 0;
}
#sliderImagesContainer {
	top: 0;
	bottom: 0;
	width: 1000vw;
	position: relative;
}

#sliderContainer .image {
	height: 100vh;
	width: 100vw;
	transition: left 0.5s;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

/* Countdown */
#leftHolder, #rightHolder {
    display: inline-block;
    vertical-align: middle;
}
#leftHolder img, #rightHolder img {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}
#leftHolder {
	padding-right: 25px;
}
#rightHolder {
    padding-left: 25px;
}
#countdownContainer {
	position: absolute;
    border-radius: 10px;
    padding: 15px 10px;
    left: 50%;
    margin-left: -345px;
    bottom: 25px;
    text-align: center;
    font-family: Arial;
    color: #000;
}
#countdownCounterContainer {
	font-family: "Circle_Semi";
	font-size: 1.1em;
	display: inline-block;
	vertical-align: middle;
}
.counter {
    font-size: 1.75em;
    color: #000;
    margin-top: 1.3em;
}
.counterContainer {
	display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 10%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.6);
    margin-right: 5px;
}
.counterContainer:last-child {
	margin-right: 0;
}
@Media (max-width: 1000px), (max-height: 700px) {
	.counter {
		font-size: 30px;
		margin-top: 16px;
	}
	#countdownContainer {
		margin-left: -250px;
	}
	.counterContainer {
		width: 80px;
		height: 80px;
	}

	#countdownCounterContainer {
		font-size: 1em;
	}

	#countdownRemaining {
	    font-size: 14px;
	}
}

@Media (max-width: 700px), (max-height: 440px) {
	.arrow {
		width: 25px;
	}
	.counter {
		font-size: 20px;
		margin-top: 11px;
	}
	#countdownContainer {
		margin-left: -164px;
	}
	.counterContainer {
		width: 53px;
		height: 53px;
	}
	#countdownCounterContainer {
		font-size: 9px;
	}
	#countdownRemaining {
	    font-size: 10px;
	}
	#leftHolder {
		padding-right: 5px;
	}
	#rightHolder {
	    padding-left: 5px;
	}
}

/* Story */
#storyContent {
    width: 840px;
    margin: 0 auto;
}
.storyPart {
	width: 400px;
	display: table-cell;
	margin: auto;
	text-align: center;
	overflow: hidden; /*needed due to float image*/
}
.storyPart H4 {
	font-size: 20px;
	font-weight: 100;
	margin-bottom: 27px;
}
.storyPart H4 > SPAN{
	font-size: 25px;
	font-weight: 600;
	color: #de5781;
}
.storyPart img {
	width: 100%;
	max-width: 300px;
	padding-bottom: 10px;
}
.storyPart:nth-of-type(1) {
    padding-right: 70px;
}
.storyPart:nth-of-type(2) {
	padding-left: 70px;
}
#asToldBy {
	font-size: 15px;
}
@Media (max-width: 1000px) {
	.storyPart {
		display: inherit;
		margin: 0 0 50px 0;
		width: 100%;
		padding: 0;
		max-width: 600px;
    	min-height: 350px;
	}
	.storyPart img {
		float: left;
	    padding: 0 25px 15px 0;
	}

	.storyPart:nth-of-type(1) {
		border-right: none;
	    padding: 0;
	}

	.storyPart:nth-of-type(2) {
		padding-left: 0;
	}

	#storyContent {
		width: 100%;
	}
}
@Media (max-width: 600px) {
	.storyPart img {
		padding: 0;
		float: inherit;
	}
}
/* Welcome Text */
#welcomeText {
	position: absolute;
	top: 33%;
	color: white;
	width: 100%;
	text-align: center;
	font-size: 99px;
}
#welcomeText H1 {
	font-family: "Engagement-Regular"; 
	font-size: 1em;
	font-weight: 400;
	line-height: 1.1;
	margin: 0;
}
#welcomeText P {
	font-family: "Circle_Semi"; 
	font-size: .19em;
	letter-spacing: 0.4em;
	line-height: 1.1;
}
@Media (max-width: 1000px), (max-height: 700px) {
	#welcomeText {
		font-size: 10vmin;
	}
}
@Media (max-width: 700px), (max-height: 400px) {
	#welcomeText {
		font-size: 14vmin;
	}
}

/* Proposal */
#proposal {
	text-align: center;
}
#proposal img {
	width: 100%;
	max-width: 400px;
	float: left;
    padding: 0 15px 15px 0;
    border-radius: 80px;
}
#proposal p {
	text-align: left;
	font-size: 1.03em;
	padding: 20px 0;
}
@Media (max-width: 750px) {
	#proposal img {
		float: inherit;
	}
}
/* Events */
.eventInfo {
	display: inline-block;
    vertical-align: middle;
    text-align: left;
}
 #events > div {
 	display: block;
 	padding-bottom: 25px;
 	text-align: center;
 }
#events div > img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 25px;
	border-radius: 150px;
	border: 10px solid #ff9fbd;
	width: 100%;
	max-width: 300px;
	transition: all 0.2s ease-in-out;
}
#events div > img:hover {
	transform: scale(1.05)
}
#events span {
	display: block;
	padding-bottom: 3px;
}
#events span > img {
	vertical-align: baseline;
	height: 15px;
	padding-right: 7px;
}
#events h4 {
	text-align: center;
	text-decoration: underline;
	padding-bottom: 15px;
}
/* People */
.ch-img-1 {
	background: url("../images/people/alok.png");
}
.ch-img-2 {
	background: url("../images/people/ruchi.png");
}
.ch-img-3 {
	background: url("../images/people/annika.png");
}
.ch-img-4 {
	background: url("../images/people/dilip.png");
}
.ch-img-5 {
	background: url("../images/people/sangeeta.png");
}
.ch-img-6 {
	background: url("../images/people/ekta.png");
}
.ch-img-7 {
	background: url("../images/people/ashita.png");
}
.ch-img-8 {
	background: url("../images/people/pauline.png");
}
.ch-img-9 {
	background: url("../images/people/anannya.png");
}
.ch-img-10 {
	background: url("../images/people/sonya.png");
}
.ch-img-11 {
	background: url("../images/people/dimka.png");
}
.ch-img-12 {
	background: url("../images/people/isha.png");
}
.ch-img-13 {
	background: url("../images/people/zooni.png");
}
.ch-img-14 {
	background: url("../images/people/shaka.png");
}
.ch-img-15 {
	background: url("../images/people/sarah.png");
}
.ch-img-16 {
	background: url("../images/people/akshina.png");
}
.ch-item {
    background-size: contain;
    height: 200px;
    background-repeat: no-repeat;
}
.ch-grid {
	margin: 20px 0 20px 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
.ch-grid li {
	width: 220px;
	height: 220px;
	display: inline-block;
	margin: 35px 15px;
}
.ch-grid li p {
	margin: 0;
}
/*Footer*/
#footerSection {
	padding: 0;
	position: relative;
}
#hashtaginfo {
	text-align: center;
	font-size: 1.2em;
}
#hashtaginfo > div:nth-child(1)  {
	line-height: 1.5;
	color: #2c2c2c;
    background-color: #ff82ab;
    letter-spacing: .05em;
    padding: 10px;
}
#hashtaginfo strong, #copyrightinfo strong {
	color: #fff;
}
#footerSection #copyrightinfo {
	text-align: center;
    font-size: 0.45em;
    font-weight: 420;
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #ff82ab;
    padding: 10px;
    opacity: 0.6;
}
#footer {
	background-image: url("../images/footer/footer.jpg");
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 415px;
	text-align: center;
}
#footer #imgtext {
	top: 230px;
    position: relative;
    font-family: 'Engagement-Regular';
    color: rgba(255, 255, 255, 0.95);
}
#footer #imgtext > div {
	font-size: 2em;
}
#footer img {
    width: 250px;
}
@Media (max-width: 874px) {
	#hashtaginfo {
		font-size: 1em;
	}
}
/* Music */
#music {
	position: fixed;
	bottom: 28px;
	right: 5vw;
	height: 6vmin;
	width: 6vmin;
	z-index: 1;
	border-radius: 50%;
	border-width: 0.5px;
	border-style: solid;
	border-color: #fff;
	background-color: rgba(255, 255, 255, 0.6);
	background-image: url("../images/musicIcon.png"); /* Source: https://www.iconfinder.com/icons/87898/music_icon */
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
@Media (max-width: 460px) {
	#music {
		bottom: 20px;
	}
}
/* Slide in */
.sectionContent:not(#story) {
	opacity: 0;
}
.sectionContent:not(#story).come-in {
	animation: come-in 1.2s ease forwards;
}

.sectionContent:not(#story).come-out {
	animation: come-out 1.2s ease forwards;
}

.come-in .storyPart:nth-of-type(1) {
	animation: come-in-left 1.2s ease forwards;
}
.come-out .storyPart:nth-of-type(1) {
	animation: come-out-left 1.2s ease forwards;
}

.come-in .storyPart:nth-of-type(2) {
	animation: come-in 1.2s ease forwards;
}
.come-out .storyPart:nth-of-type(2) {
	animation: come-out 1.2s ease forwards;
}

@keyframes come-in {
	from {
		transform: translateX(150px);
		opacity: 0;
	}
	to { 
		opacity: 1;
		transform: translateX(0); 
	}
}
@keyframes come-out {
	to {
		transform: translateX(150px);
		opacity: 0;
	}
	from { 
		opacity: 1;
		transform: translateX(0); 
	}
}

@keyframes come-in-left {
	from {
		transform: translateX(-150px);
		opacity: 0;
	}
	to { 
		opacity: 1;
		transform: translateX(0); 
	}
}
@keyframes come-out-left {
	to {
		transform: translateX(-150px);
		opacity: 0;
	}
	from { 
		opacity: 1;
		transform: translateX(0); 
	}
}