@charset "utf-8";

#download {
	display: flex;
	justify-content: flex-end;
	padding: 0 30%;
}

#download > div {
	text-align: center;
}

#download h1 {
	margin-top: 10px;
	margin-bottom: 10px;
}

#download .button {
	margin-top: 50px;
	border-radius: 5px;
	filter: drop-shadow(0 3px 15px rgba(0,0,0,0.05));
}

#download .button img {
	margin-right: 10px;
	margin-top: -2px;
}

#download .button span {
   vertical-align: middle;
}

.button.accent {
	background-color: #FFA688;
	color: #FFF;
	font-weight: 700;
	border-radius: 5px;
	text-transform: uppercase;
	font-size: 1em;
}

h3 {
	font-family: 'Dancing Script', 'Open Sans', Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 3em;
	font-weight: 700;
	margin: 0.25em auto;
}

section {
	display: flex;
	/*height: 95vh;*/
	/*max-height: 800px;*/
	min-height: 800px;
}

section.light {
	background-color: #FAFAFA;
	color: #383842;
}

section.space > div.content-text {
	margin: 0 40px;
}

section > div {
	flex: 50%;
	display: flex;
	align-items: center;
}

section > div:first-child {
	justify-content: end;
}

section > div:last-child {
	justify-content: start;
}

section img {
	max-height: calc(100% - 80px);
}

section > div.content-text > div {
	max-width: 400px;
}

section > div.content-image {
	animation: floating 2.5s infinite alternate ease-in-out;
}

section > div.content-custom {
	padding: 60px 0;
}

#app-features .content-image img {
	filter: drop-shadow(30px 50px 15px rgba(0,0,0,0.1));
}

/* App Reviews */

section .app-reviews {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

section .app-review {
	background-color: #FFF;
	color: #383842;
	max-width: 380px;
	padding: 16px;
	border-radius: 12px;
	position: relative;
}

.app-review h4, .app-review p {
	margin: 0;
	line-height: 1.4em;
}

.app-review h4 {
	margin-right: 100px;
}

.app-review > p:last-child {
	margin-top: 0.85em;
	color: #7f7f85;
	font-size: 0.95em;
}

.app-review .author {
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 0.9em;
	color: #7f7f85;
	text-align: right;
}

.app-review .stars {
	font-size: 1.25em;
}

.app-review .author p:last-child {
	font-weight: 400;
}

/* Spotify */

#spotify > div.content-image {
	animation-delay: 1.25s;
}

#spotify .content-image img {
	filter: drop-shadow(-20px 30px 15px rgba(0,0,0,0.15));
}

#social-medias > div.content-image {

}

.content-text .socialMediaButtons > a:first-child {
	margin-left: 0;
}

@media (max-width: 1000px) {
	
	#download {
	   display: block;
	   padding: 0;
	}
	
}

@media (max-width: 1270px) {

	section div.content-image img {
		max-width: calc(100% - 40px);
	}

}

@media (max-width: 880px) {

	section {
		flex-direction: column;
		padding: 80px 20px;
		height: auto;
		max-height: none;
	}

	section div.content-image img {
		max-width: 100%;
	}

	section div.content-custom {
		padding: unset;
	}

	section > div {
		justify-content: center !important;
	}

	section > div:first-child, section.space > div:first-child {
		margin-bottom: 40px;
	}

	section > div.content-text {
		text-align: center;
	}

	#spotify > div:first-child {
		margin-bottom: 0;
	}

}

@keyframes floating {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(15px);
	}
}