.nav {
	display: flex;
	justify-content: center;
	/* Center horizontally */
	align-items: center;
	/* Center vertically if there's height */
	padding: 1.5rem 0;
	/* Or something moodier like #f9f6f2 */
	border-bottom: 1px solid #eee;

}

.navbar-nav {

	margin: 16px;
}

.nav-link {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #e0e0e0e;
	text-decoration: none;
	margin: 0 0.6rem;
	/* Spacing between links */
	position: relative;
	transition: color 0.3s ease;
}

/* Fancy gold underline on hover */
.nav-link::after {
	content: '';
	position: absolute;
	left: 0;
	top: 5;
	bottom: -3px;
	width: 0%;
	height: 2px;
	background: linear-gradient(to right, #d4af37, #f0e68c);
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: #d4af37;
}

.nav-link:hover::after {
	width: 100%;
}


.mini-nav-link {
	font-size: 0.75rem;
	color: #d4af37;
	/* Gold tone */
	background-color: transparent;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	/* Pill-shaped */
	border: 1px solid #d4af37;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: all 0.25s ease-in-out;
	font-weight: 600;
	display: inline-block;
}

.mini-nav-link:hover,
.mini-nav-link:focus {
	background-color: #d4af37;
	color: #1a1a1a;
	/* Dark background for contrast */
	text-decoration: none;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.mini-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}