/* --- Styles Généraux et Reset --- */
:root {
	--text-color: aliceblue;
	--background-color: #1d1818;

	--font: 'Inter', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	height: 200vh;
}

/* --- HEADER --- */
header {
	z-index: 1;
	width: 100%;
	height: 120px;
	display: flex;
	position: fixed;
	backdrop-filter: blur(10px);
	background-color: rgba(0, 0, 0, 0.6);
}

.navbar {
	width: 100%;
	display: flex;
	padding: 0 20px;
	flex-flow: row nowrap;
}

.navbar .logo {
	height: 100%;
}

.navbar .nav-links {
	gap: 20px;
	display: flex;
	list-style: none;
	margin: 0 0 0 auto;
	align-items: center;
	flex-flow: row nowrap;
}

.navbar .nav-links li a {
	padding: 8px 12px;
	text-decoration: none;
	font-family: var(--font);
	color: var(--text-color);
}

/* -- HERO -- */
.hero {
	width: 100%;
	height: 100vh;
	display: flex;
	overflow: hidden;
	position: relative;
	align-items: center;
	justify-content: center;
	background-color: var(--background-color);
}

.hero::after {
	content: '';
	left: 10%;
	width: 80%;
	height: 200px;
	bottom: -200px;
	position: absolute;
	filter: blur(100px);
	border-radius: 100%;
	background-color: white;
}

.hero img {
	height: 80%;
}

.hero p {
	bottom: 100px;
	cursor: pointer;
	position: absolute;
	color: var(--text-color);
	font-family: var(--font);
}

/* -- CONCEPT -- */
.concept {
	display: flex;
	flex-flow: column;
	padding-top: 150px;
	align-items: center;
	font-family: var(--font);
	background-color: var(--background-color);
}

.concept h1 {
	font-size: 80px;
	text-align: center;
	background: -webkit-linear-gradient(left, #ffb200, #ff00ea, #00c3ff);
	background-clip: text;
	text-transform: uppercase;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.concept h1 span {
	background: white;
	background-clip: text;
	text-transform: none;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.concept p {
	font-size: 40px;
	font-weight: 600;
	text-align: center;
	background: -webkit-linear-gradient(left, #ffb200, #ff00ea, #00c3ff);
	background-clip: text;
	text-transform: uppercase;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.concept p span {
	background: white;
	text-transform: none;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* OFFER */
.offer {
	display: flex;
	padding: 150px 0;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	background-color: var(--background-color);
}

.offer h1 {
	font-size: 80px;
	color: var(--text-color);
	font-family: var(--font);
	text-transform: uppercase;
}

.offer .card {
	display: flex;
	overflow: visible;
	flex-flow: column;
	margin-top: -25px;
	padding: 64px 128px;
	text-align: center;
	border-radius: 20px;
	justify-content: center;
	background: linear-gradient(#413f3f, #343232) padding-box,
		linear-gradient(to bottom right, #ffb200, #ff00ea, #00c3ff) border-box;
	border: 4px solid transparent;
	background-color: rgba(255, 255, 255, 0.3);
}

.offer .card p {
	font-size: 40px;
	font-weight: 200;
	margin-bottom: 25px;
	color: var(--text-color);
	font-family: var(--font);
}

.offer .card p span {
	font-size: 24px;
}

.card form {
	gap: 20px;
	display: flex;
	align-items: center;
	flex-flow: row nowrap;
	justify-content: center;
}
.card input {
	width: 375px;
	height: 50px;
	padding: 0 12px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 4px;
	border: 1px solid #aeaeae;
	background-color: #707070;
	color: rgba(255, 162, 0, 0.6);
}

.card button {
	height: 50px;
	line-height: 0;
	padding: 0 12px;
	border-radius: 4px;
	color: var(--text-color);
	border: 1px solid #aeaeae;
	background-color: #707070;
}

.card button:hover {
	color: orange;
}

/* -- FOOTER -- */
footer {
	display: flex;
	flex-flow: column;
	background-color: var(--background-color);
}

footer .newsletter {
	gap: 20px;
	display: flex;
	padding: 40px 0;
	align-items: center;
	flex-flow: row nowrap;
	justify-content: center;
	color: var(--text-color);
	font-family: var(--font);
	background-color: #979797;
}

.newsletter input {
	width: 250px;
	border: none;
	height: 50px;
	padding: 0 25px;
	color: darkgray;
	border-radius: 25px;
	background-color: aliceblue;
}

footer .footer {
	gap: 20px;
	display: flex;
	padding: 50px 0;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	color: var(--text-color);
	font-family: var(--font);
}

.footer ul {
	gap: 20px;
	display: flex;
	list-style: none;
	flex-flow: row nowrap;
	color: var(--text-color);
	font-family: var(--font);
}
