@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: 68px;
	padding: 0 32px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	background: rgba(10, 10, 15, 0.78);
	backdrop-filter: blur(14px);

	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

/* STÂNGA */
.nav-left {
	display: flex;
	align-items: center;
	gap: 30px;
}

/* MENIU */
.nav-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 24px;
}

.nav-menu a {
	color: rgba(255,255,255,0.92);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 8px 12px;
	border-radius: 6px;
	letter-spacing: 0.2px;
	position: relative;
	transition: all 0.25s ease;
}

/* hover elegant */
.nav-menu a:hover {
	background: rgba(255,255,255,0.08);
	color: #ffffff;
}

/* activ */
.nav-menu a.active {
	background: linear-gradient(135deg, #ff9700, #ffb347);
	color: #000;
	box-shadow: 0 3px 10px rgba(255,151,0,0.35);
}

/* BUTOANE DREAPTA */
.right-buttons {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-left: 22px;
	border-left: 1px solid rgba(255,255,255,0.08);
}

.right-buttons a {
	background: linear-gradient(135deg, #ff9700, #ffb347);
	color: #000;
	text-decoration: none;
	padding: 8px 18px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.3px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 14px rgba(255,151,0,0.35);
}

.right-buttons a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(255,151,0,0.45);
}

/* ================= 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: 38px;
		padding: 24px 0;
		top: 10%;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: all 0.35s ease;
	}

	.nav-menu {
		top: 64px;
	}

	.right-buttons {
		top: 360px;
	}

	.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: 85%;
		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;
}

