
/* background */
body {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	min-height: 100vh;
	margin: 0;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	color: #ffffff;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* header styles */
header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgb(0, 0, 0);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	color: #ffffff;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

#logo {
	margin: 0;
	font-size: 1.4rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#nav-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 18px;
}

#nav-links a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	padding: 6px 10px;
	border-radius: 6px;
	transition: background 0.2s ease, color 0.2s ease;
}

#nav-links a:hover,
#nav-links a:focus {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
}







/* main styles */
#main-content {
	max-width: 1100px;
	margin: 32px auto 48px;
	padding: 24px;
	background: rgba(0, 0, 0, 0.35);
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

#main-content section {
	padding: 24px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#main-content section:last-child {
	border-bottom: none;
}

#main-content h1,
#main-content h2 {
	margin: 0 0 12px;
	letter-spacing: 0.5px;
}

#main-content p {
	margin: 0 0 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

#get-started {
	background: #ffffff;
	color: #111111;
	border: none;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#get-started:hover,
#get-started:focus {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.image {
	margin-top: 18px;
	display: flex;
	justify-content: center;
}

.image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

#services ul {
	margin: 0;
	padding-left: 18px;
}

#services li {
	margin: 6px 0;
}




/* footer form styles */
#footer {
	max-width: 1100px;
	margin: 0 auto 48px;
	padding: 0 24px 32px;
}

#signup-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: stretch;
	background: rgba(0, 0, 0, 0.45);
	padding: 20px;
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}


#signup-form label {
	font-weight: 600;
}

#signup-form input[type="text"],
#signup-form input[type="email"] {
	width: 50%;
	padding: 10px 12px;
	border-radius: 9px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	outline: none;
}


#signup-form input[type="text"]::placeholder,
#signup-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

#signup-form input[type="text"]:focus,
#signup-form input[type="email"]:focus {
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}


#signup-form textarea {
	width: 90%;
	min-height: 140px;
	resize: vertical;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: #ffffff;
	color: #111111;
	outline: none;
}


#signup-form textarea::placeholder {
	color: rgba(17, 17, 17, 0.6);
}

#signup-form textarea:focus {
	border-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

#signup-form button {
	align-self: flex-start;
	background: #ffffff;
	color: #111111;
	border: none;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#signup-form button:hover,
#signup-form button:focus {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
