@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	font-family: 'Inter', Arial, sans-serif;
	color: #ffffff;
	background: radial-gradient(circle at top, #1a1f2b 0%, #0d1117 45%, #050505 100%);
}

/* ================= NAVBAR ================= */

.navbar {
	position: sticky;
	top: 0;
	z-index: 1000;

	height: 64px;
	padding: 0 24px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	background: rgba(10, 10, 15, 0.9);
	backdrop-filter: blur(12px);

	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* STÂNGA */
.nav-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* MENIU */
.nav-menu {
	list-style: none;
	display: flex;
	gap: 20px;
}

.nav-menu a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 8px 14px;
	border-radius: 8px;
	transition: background 0.25s;
}

.nav-menu a:hover {
	background: rgba(255, 255, 255, 0.15);
}

.nav-menu a.active {
	background: #ff9700;
	color: #000;
}

/* BUTOANE DREAPTA */
.right-buttons {
	display: flex;
	gap: 12px;
}

.right-buttons a {
	background: #ff9700;
	color: #000;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 8px;
	font-weight: 700;
	transition: transform 0.2s, background 0.2s;
}

.right-buttons a:hover {
	background: #ffb100;
	transform: translateY(-1px);
}

/* ================= HAMBURGER ================= */

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
}

.hamburger span {
	width: 26px;
	height: 3px;
	background: #ffffff;
	border-radius: 3px;
}

/* ================= CONTENT ================= */

.container {
	max-width: 900px;
	margin: 50px auto;
	background: rgba(240, 240, 240, 0.95);
	border-radius: 14px;
	padding: 30px;
	color: #000;
}

.container h1 {
	font-family: 'Playfair Display', serif;
	margin-bottom: 16px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

	.hamburger {
		display: flex;
	}

	.nav-menu,
	.right-buttons {
		position: absolute;
		left: 0;
		width: 100%;
		background: rgba(15, 15, 20, 0.97);
		backdrop-filter: blur(14px);
		flex-direction: column;
		align-items: center;
		gap: 22px;
		padding: 24px 0;

		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: all 0.35s ease;
	}

	.nav-menu {
		top: 64px;
	}

	.right-buttons {
		top: 260px;
	}

	.nav-menu.open,
	.right-buttons.open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.nav-menu a {
		font-size: 17px;
		width: 90%;
		text-align: center;
		padding: 14px;
		background: rgba(255,255,255,0.08);
	}

	.right-buttons a {
		width: 90%;
		text-align: center;
		padding: 14px;
		font-size: 16px;
	}

	.container {
		margin: 25px 12px;
		padding: 22px;
	}
}


input {
	width: 100%;
	padding: 14px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 15px;
}

button {
	width: 100%;
	padding: 14px;
	background: #ff9700;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}

button:hover {
	background: #ffb100;
}