/* Logo styles */
.logo-link {
	height: 30px;
	width: auto;
}

/* Header styles */
.header {
	/*background: linear-gradient(to right, #c43f81 , #e363aa,#FF5858 );*/
	background-color: #FF5858;
	/*background: linear-gradient(180deg, #FF5858, #e363aa, #c43f81);
	background: linear-gradient(180deg, #e363aa, #c43f81);
	background: linear-gradient(to right, #FF5858, #FFA100);*/
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	position: relative;
	z-index: 1;
}

.header-container {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

.nav-menu ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	padding: 0;
}

.nav-menu ul li {
	list-style: none;
	margin: 0 10px;
}

.nav-menu ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
}

.header-right {
	display: flex;
	align-items: center;
}

.btn-login, .btn-signup {
	display: inline-block;
	padding: 8px 16px;
	background-color: #fff;
	color: #FF5858;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	border-radius: 50px;
	margin: 0 10px;
}

.btn-signup {
	background-color: #FF5858;
	color: #fff;
}

.btn-login:hover, .btn-signup:hover {
	background-color: #FF5858;
	color: #fff;
}

.header{
	max-width: 1000px;
	margin: 0 auto;
	padding: 40px 20px;
	color: #fff;
	text-align: center;
	position: relative;
	z-index: 2;
}

.header-info h1 {
	font-size: 48px;
	margin-bottom: 16px;
}

.header-info p {
	font-size: 18px;
	margin-bottom: 0;
}