/* dineout */
/* L'Aforisma — Francesco Russo */

.dineout-widget {
	--accent-color: #C9A84C !important;
	--accent-color-hover: #E8C97A !important;
	--primary-color: #1a1a1a !important;
	--white: #fff !important;
	--gray: #f5f0e4 !important;
	--checkbox-bg: #f5f0e4 !important;
}

.dineout-widget *:not(svg):not(path):not(circle):not(line) {
	color: #1a1a1a !important;
}

.dineout-widget [class*="btn"] {
	color: #0A0A0A !important;
	font-weight: 500 !important;
	letter-spacing: 0.1em !important;
	background-color: #C9A84C !important;
	border: 1px solid #C9A84C !important;
	border-radius: 4px !important;
}

.dineout-widget [class*="btn"]:hover, .dineout-widget [class*="btn"]:focus {
	background-color: #E8C97A !important;
	border-color: #E8C97A !important;
	box-shadow: 0 0 16px rgba(201, 168, 76, 0.25) !important;
}

.dineout-widget [class*="btn-outline"] {
	color: #C9A84C !important;
	background-color: transparent !important;
}

.dineout-widget [class*="selected"] {
	color: #fff !important;
	background-color: #C9A84C !important;
}

.dineout-widget svg {
	color: #C9A84C !important;
	fill: #C9A84C !important;
}

.dineout-widget a {
	color: #C9A84C !important;
}

.dineout-widget input:focus, .dineout-widget select:focus {
	border-bottom-color: #C9A84C !important;
}

.dineout-widget [class*="checkbox"] input:checked+[class*="box"]:after {
	border-color: #C9A84C !important;
}

.dineout-widget [class*="border-link"]:after {
	background-color: #C9A84C !important;
}

@media (max-width: 480px) {
	#afo-dineout-popup[style*="flex"] {
		align-items: flex-end !important;
	}

	#afo-dineout-box {
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		border-radius: 12px 12px 0 0 !important;
	}
}

/* footer */
/* L'Aforisma — Francesco Russo */

.afo-footer {
	
	--_transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	color: var(--_white);
	background: var(--_black);
	border-top: 1px solid var(--_gold-dim);
}

.afo-footer__main {
	padding: clamp(3rem, 6vw, 5rem) var(--_px);
	max-width: 1440px;
	margin: 0 auto;
}

.afo-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3rem);
}

.afo-footer__logo {
	display: inline-flex;
	text-decoration: none;
}

.afo-footer__logo-img {
	height: clamp(36px, 5vw, 48px);
	width: auto;
	object-fit: contain;
	transition: opacity var(--_transition);
}

.afo-footer__logo:hover .afo-footer__logo-img {
	opacity: 0.8;
}

.afo-footer__label {
	margin: 0 0 0.4em;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(0.7rem, 1vw, 0.8rem);
	color: var(--_white);
	letter-spacing: 0.08em;
}

.afo-footer__label--mt {
	margin-top: clamp(1rem, 2vw, 1.5rem);
}

.afo-footer__text {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: clamp(0.75rem, 1vw, 0.85rem);
	color: var(--_grey);
	line-height: 1.7;
}

.afo-footer__address {
	margin: 0 0 0.5em;
	font-style: normal;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: clamp(0.75rem, 1vw, 0.85rem);
	color: var(--_grey);
	line-height: 1.7;
}

.afo-footer__link {
	color: var(--_grey);
	text-decoration: none;
	transition: color var(--_transition);
}

.afo-footer__link:hover {
	color: var(--_gold-light);
}

.afo-footer__legal {
	margin: 0;
	margin-top: 0.3em;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: clamp(0.6rem, 0.8vw, 0.7rem);
	color: var(--_grey-dim);
	line-height: 1.6;
}

.afo-footer__legal:first-of-type {
	margin-top: clamp(0.8rem, 1.5vw, 1.2rem);
}

.afo-footer__social {
	display: flex;
	gap: clamp(0.8rem, 1.5vw, 1.2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.afo-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--_white);
	text-decoration: none;
	border: 1px solid var(--_gold-dim);
	border-radius: 50%;
	transition: color var(--_transition), border-color var(--_transition), box-shadow var(--_transition);
}

.afo-footer__social-link:hover {
	color: var(--_gold-light);
	border-color: var(--_gold);
	box-shadow: 0 0 16px rgba(201, 168, 76, 0.15);
}

.afo-footer__nav-bar {
	padding: clamp(1.2rem, 2vw, 1.8rem) var(--_px);
	border-top: 1px solid var(--_gold-dim);
}

.afo-footer__nav-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(0.8rem, 1.5vw, 1.2rem);
	max-width: 1440px;
	margin: 0 auto;
}

.afo-footer__nav-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(1rem, 2vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.afo-footer__nav-link {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: clamp(0.68rem, 0.9vw, 0.78rem);
	color: var(--_white);
	text-decoration: none;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: color var(--_transition);
}

.afo-footer__nav-link:hover {
	color: var(--_gold-light);
}

.afo-footer__legal-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(0.8rem, 1.5vw, 1.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.afo-footer__legal-link {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: clamp(0.6rem, 0.8vw, 0.7rem);
	color: var(--_grey-dim);
	text-decoration: none;
	transition: color var(--_transition);
}

.afo-footer__legal-link:hover {
	color: var(--_gold-light);
}

.afo-footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3em;
	padding: clamp(1rem, 2vw, 1.5rem) var(--_px);
	text-align: center;
	border-top: 1px solid var(--_gold-dim);
}

.afo-footer__copy {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: clamp(0.6rem, 0.8vw, 0.72rem);
	color: var(--_grey-dim);
}

.afo-footer__link--credit {
	color: var(--_grey);
	font-weight: 400;
	transition: color var(--_transition);
}

.afo-footer__link--credit:hover {
	color: var(--_gold-light);
}

.afo-footer__sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 9998;
	width: 100%;
	padding: clamp(0.6rem, 1.5vw, 0.8rem) var(--_px);
	text-align: center;
	background: var(--_black);
	border-top: 1px solid var(--_gold-dim);
}

.afo-footer__sticky-cta {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(0.7rem, 1vw, 0.8rem);
	color: var(--_gold);
	text-decoration: none;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: color var(--_transition);
}

.afo-footer__sticky-cta:hover {
	color: var(--_gold-light);
}

@media (min-width: 768px) {
	.afo-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.afo-footer__col--social {
		justify-self: end;
		align-self: start;
	}
}

@media (min-width: 1024px) {
	.afo-footer__grid {
		grid-template-columns: auto 1fr 1fr auto;
		align-items: start;
	}

	.afo-footer__nav-inner {
		flex-direction: row;
		justify-content: space-between;
	}

	.afo-footer__bottom {
		flex-direction: row;
		justify-content: center;
		gap: 0.5em;
	}

	.afo-footer__sticky-bar {
		display: none;
	}
}

@media (max-width: 1023px) {
	body {
		padding-bottom: 50px;
	}
}

