@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

/* COMMON */
section {
	height: auto;
	width: 100%;
	padding-top: 20rem;
	padding-bottom: 20rem;
}

.container {
	max-width: 1050px;
	margin: auto;
	padding: 0px 30px;
}

.row {
	display: flex;
	gap: 20px;
}

.left-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: auto;
}

.right-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: auto;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #fff;
}

::-webkit-scrollbar-thumb {
	background: #0e1313;
}

/* LOADER */
#loading {
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #fff url(../assets/Image/loading.gif) no-repeat center;
	z-index: 999;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

/* MOVE TO TOP */
#moveTopBtn {
	height: 4.5rem;
	width: 4.2rem;
	display: none;
	position: fixed;
	bottom: 4rem;
	right: 3rem;
	z-index: 99;
	border: none;
	outline: none;
	background-color: #0e1313;
	color: #fff;
	cursor: pointer;
	padding: auto;
	border-radius: .4rem;
	font-size: 2.5rem;
}

/* NAVBAR */
.content {
	max-width: 1250px;
	margin: auto;
	padding: 0px 30px;
}

.navbar {
	position: fixed;
	z-index: 5;
	width: 100%;
	padding: 25px 0;
	transition: all 0.3s ease;
}

.navbar.sticky {
	padding: 10px 0;
	background: linear-gradient(90deg, #bde1df 30%, #eca7a6 70%);
	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}

.navbar .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar .logo a {
	color: #0e1313;
	font-size: 30px;
	font-weight: 600;
	text-decoration: none;
}

.navbar .menu-list {
	display: inline-flex;
	gap: 2rem;
}

.menu-list li {
	list-style: none;
}

.menu-list li a {
	color: #0e1313;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.menu-list li a:hover {
	color: #0e1313;
}

.active-menu-list {
	border-bottom: 2px solid #0e1313;
	width: fit-content;
	margin: auto;
}

.icon {
	color: #0e1313;
	font-size: 20px;
	cursor: pointer;
	display: none;
}

.icon.cancel-btn {
	position: absolute;
	right: 30px;
	top: 20px;
}

.navbar.sticky .icon.cancel-btn {
	top: 10px;
}

.banner {
	height: 100vh;
	background: url("../assets/Image/banner.png") no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

/* PLAY */
.play {
	background: #bde1df;
}

.play .card {
	background: #eca7a6;
}

.play .card .card-body {
	padding: 4rem;
}

.play .row .left-col h1 {
	font-size: 5rem;
	color: #bde1df;
}

.play .row .left-col h5 {
	font-size: 2.5rem;
	color: #bde1df;
}

.play .row .right-col img {
	display: grid;
	margin: auto;
	width: 100%;
	max-width: 200px;
}

.play .row .right-col p {
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
}

/* SELECT SONGS */
.songs {
	background: #eca7a6;
}

.songs-header {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	align-items: center;
}

.songs-header .title {
	font-size: 4rem;
	font-weight: 400;
}

.songs-header .play-song-btn {
	text-decoration: none;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 500;
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	border: none;
	outline: none;
	background: #bde1df;
	color: #0e1313;
	cursor: pointer;
}

.songs .btn-group {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 3rem;
}

.songs .btn-group .btn {
	font-size: 1.8rem;
	font-weight: 500;
	width: 100%;
	max-width: 250px;
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	margin-top: 2rem;
	border: none;
	outline: none;
	background: #bde1df;
	cursor: pointer;
	transition: all 0.3s ease;
}

.songs .btn-group .btn:hover {
	background: rgba(189, 225, 223, 0.9);
}

/* ABOUT */
.about {
	background: #bde1df;
}

.about-header .title {
	font-size: 4rem;
	font-weight: 400;
	margin-bottom: 2rem;
}

.about-content {
	display: flex;
	flex-wrap: wrap-reverse;
	align-items: center;
	gap: 3rem;
}

#aboutSong {
	font-size: 1.5rem;
	margin-bottom: 3rem;
	width: 100%;
	max-width: 625px;
}

.about-content .image-container img {
	width: 100%;
	max-width: 300px;
	border-radius: 1rem;
}

.download-song {
	text-decoration: none;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 1rem;
	border-radius: 0.5rem;
	border: none;
	outline: none;
	background: #eca7a6;
	color: #0e1313;
	cursor: pointer;
}

/* CONTACT & FOOTER */
.contact {
	background: #eca7a6;
}

.contact .title {
	font-size: 4rem;
	font-weight: 400;
	color: #0e1313;
	text-align: center;
	margin-bottom: 5rem;
}

.contact .social-media {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.contact .social-media>a {
	display: flex;
	background: #bde1df;
	height: 7.5rem;
	width: 7.5rem;
	margin: 0 1.5rem;
	border-radius: .8rem;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: .6rem .6rem 1.0rem -.1rem rgba(0, 0, 0, 0.15), -.6rem -.6rem 1.0rem -.1rem rgba(255, 255, 255, 0.5);
	border: 1rem solid rgba(0, 0, 0, 0);
	transition: transform 0.5s;
}

.contact .social-media a i {
	font-size: 3.5rem;
	color: #eca7a6;
	transition: transform 0.5s;
}

.contact .social-media>a:hover {
	box-shadow: inset .4rem .4rem .6rem -.1rem rgba(0, 0, 0, 0.2), inset -.4rem -.4rem .6rem -.1rem rgba(255, 255, 255, 0.7),
		-0.05rem -0.05rem 0rem -.1rem rgba(255, 255, 255, 1), 0.05rem 0.05rem 0rem rgba(0, 0, 0, 0.15),
		0rem 1.2rem 1.0rem -1.0rem rgba(0, 0, 0, 0.05);

	border: .1rem solid rgba(0, 0, 0, 0.01);
	transform: translateY(.2rem);
}

.contact .social-media a:hover i {
	transform: scale(0.90);
}

.contact .social-media a:hover .fa-instagram {
	color: #f14843;
}

.contact .social-media a:hover .fa-facebook {
	color: #3b5998;
}

.contact .social-media a:hover .fa-linkedin {
	color: #0077b5;
}

.contact .social-media a:hover .fa-twitter {
	color: #00acee;
}

.contact .social-media a:hover .fa-github {
	color: #111;
}

.footer {
	position: fixed;
	left: 0;
	font-size: small;
	bottom: 0;
	width: 100%;
	background-color: #fff;
	color: #0e1313;
	text-align: center;
	padding: 1rem;
}