/* Custom Variables */
:root {
	--brand-dark: #3e3b36;
	--brand-gold: #a89f81;
	--brand-beige: #f5f5f0;
	--brand-text: #4a4a4a;
	--brand-accent: #9ea68e;
}

body {
	font-family: 'Lato', sans-serif;
	color: var(--brand-text);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
/*	font-family: 'Playfair Display', serif; */
	font-family: 'Cormorant Infant', serif;
}

/* Utilities */
.text-gold { color: var(--brand-gold); }
.bg-gold { background-color: var(--brand-gold); }
.bg-beige { background-color: var(--brand-beige); }
.text-brand-dark { color: var(--brand-dark); }

.tracking-widest { letter-spacing: 0.2em; }

/* Buttons */

.btn {
  font-family: 'Aboreto', cursive, sans-serif !important;
}

.btn a{color:inherit;text-decoration:none;}

.btn-custom {
	background: #fff; color: #000;
	text-transform: uppercase; font-size: 0.75rem; font-weight: 700;
	letter-spacing: 0.15em; padding: 0.75rem 2rem; transition: all 0.3s ease;
	border-radius: 3px; display: inline-block; text-decoration: none; cursor: pointer;
}
.btn-custom:hover {
	border: 1px solid #fff;
	background: #000; color: #fff;
}

.btn-custom-dark {
	border: 1px solid #fff; background: transparent; color: #fff;
	text-transform: uppercase; font-size: 0.75rem; font-weight: 700;
	letter-spacing: 0.15em; padding: 0.75rem 2rem; transition: all 0.3s ease;
	border-radius: 0; display: inline-block; text-decoration: none;
}
.btn-custom-dark:hover {
	border: 1px solid #fff;
	background: #000; color: #fff;
}

/* Nav */
.top-banner {
	font-size: 0.75rem;
	font-weight: 500;
}
.navbar-brand-logo {
	width: 40px;
	height: 40px;
	background-color: #1e3a8a; /* blue-900 */
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Playfair Display', serif;
	font-weight: bold;
	font-style: italic;
	font-size: 1.25rem;
}
.nav-link-custom {
	font-size: 0.75rem;
	text-transform: none;
	letter-spacing: 0.05em;
	color: #4b5563;
	font-weight: 500;
	cursor: pointer;
}
.nav-link-custom:hover {
	color: #000;
}

.current{color:#AD9067;}

/* Mobile Menu Styles */
.mobile-nav-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	color: var(--brand-dark);
	margin-bottom: 0.5rem;
	display: block;
	text-decoration: none;
	cursor: pointer;
}
.mobile-nav-link {
	font-family: 'Lato', sans-serif;
	font-size: 0.95rem;
	color: #666;
	padding: 8px 0;
	display: block;
	text-decoration: none;
	border-bottom: 1px solid #f0f0f0;
	cursor: pointer;
}
.mobile-nav-link:last-child {
	border-bottom: none;
}

/* Search input styling */
.search-rounded {
	border: 1px solid #937C66;
	border-radius: 9999px;
	padding: 0.375rem 0.75rem;
	display: flex;
	align-items: center;
	width: 250px;
}
.search-rounded input {
	border: none;
	outline: none;
	font-size: 0.75rem;
	width: 100%;
	background: transparent;
}
/*
.search-rounded input::placeholder {
    color: #A4655C;
}
*/
.layui-form .layui-input, .layui-form .layui-textarea:focus {
  border-color: #a89f81 !important;
}