:root {
	--font-stack: 'Handlee', 'Yomogi', 'Klee One', 'Zen Maru Gothic', sans-serif;
	--brand-brown: #A67C52;
	--brand-dark: #3D3935;
	--bg-paper: #FDFCF8;
}

body {
	font-family: var(--font-stack);
	background-color: #E6E2D3;
	background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
	color: var(--brand-dark);
	font-size: 16px;
	line-height: 1.8;
}

.container-gleam {
	width: 1000px;
	margin: 40px auto;
	background: var(--bg-paper);
	/* padding: 60px 80px; */
	border: 1px solid #C4BCAC;
	box-shadow: 12px 12px 0px rgba(196, 188, 172, 0.15);
	position: relative;
	overflow: visible;
}

.washi-tape-top {
	position: absolute;
	width: 140px;
	height: 40px;
	background: rgba(182, 194, 170, 0.4);
	top: -12px;
	left: 50px;
	transform: rotate(-3deg);
	z-index: 50;
	border-left: 2px dashed #FFF;
	border-right: 2px dashed #FFF;
}

header {
	border-bottom: 2px solid var(--brand-dark);
	padding-bottom: 30px;
	margin-bottom: 60px;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.logo-main {
	font-size: 42px;
	font-weight: 700;
	letter-spacing: 4px;
	color: #2D2A26;
}

nav {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 45px;
	position: relative;
	z-index: 100;
}

.nav-link {
	text-decoration: none;
	color: #888;
	font-size: 17px;
	border-bottom: 1px dotted transparent;
	transition: all 0.3s;
}

.nav-item:hover .nav-link {
	color: var(--brand-dark);
	border-bottom-color: var(--brand-dark);
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--bg-paper);
	border: 1px solid #C4BCAC;
	padding: 10px 0;
	z-index: 200;
}

.dropdown-menu::before {
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	height: 15px;
	background: transparent;
}

.nav-item:hover .dropdown-menu {
	display: block;
}

.dropdown-menu a {
	display: block;
	padding: 8px 20px;
	color: #6B6559;
	text-decoration: none;
	font-size: 14px;
	text-align: center;
}

.location-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	padding: 0 80px;
	margin-bottom: 100px;
	align-items: start;
}

.location-card:nth-child(even) {
	direction: rtl;
}

.location-card:nth-child(even) .location-content {
	direction: ltr;
}

.location-img {
	background: #FFF;
	padding: 10px;
	border: 1px solid #EBE7DE;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-img img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	filter: sepia(5%);
}

.location-content h3 {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	border-bottom: 2px solid var(--brand-dark);
	padding-bottom: 10px;
	display: inline-block;
}

.info-list {
	font-size: 15px;
	margin-top: 25px;
	color: #555;
}

.info-list p {
	margin-bottom: 12px;
}

.info-list b {
	color: var(--brand-dark);
	display: inline-block;
	width: 60px;
}

.fb-link-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #3D3935;
	color: #FFF;
	padding: 12px 25px;
	margin-top: 30px;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	transition: background 0.3s;
}

.fb-link-btn:hover {
	background: #1877F2;
}

/* .bottom-action {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 50px;
	background: var(--brand-dark);
	color: #DDD;
	padding: 60px 80px;
	margin: 60px -80px -60px -80px;
} */

.stamp-btn {
	border: 2px solid var(--brand-brown);
	color: var(--brand-brown);
	padding: 20px;
	text-align: center;
	display: block;
	text-decoration: none;
	font-weight: 700;
	background: var(--brand-dark);
}