/**
 * Our Space full-screen menu popup styles.
 */

.luxury-popup-wrapper {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
}

.luxury-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	min-height: 100vh;
	width: 100%;
}

.luxury-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px 10px 40px;
	text-align: center;
	box-sizing: border-box;
}

.bg-cream {
	background-color: #f3f1ed;
}

.bg-taupe {
	background-color: #e8e4df;
}

.col-title {
	font-size: 3.5rem;
	font-weight: 400;
	margin: 0 0 40px;
	color: #1a1a1a;
}

.col-menu {
	list-style: none;
	padding: 0;
	margin: 0 0 auto;
}

.col-menu li {
	margin-bottom: 12px;
}

.col-menu a {
	text-decoration: none;
	color: #000;
	font-size: 14px;
	letter-spacing: 0.5px;
	transition: opacity 0.3s;
}

.col-menu a:hover {
	opacity: 0.6;
}

.col-img-wrap {
	width: 220px;
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.col-img-wrap img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.social-wrapper {
	margin-top: 15px;
	display: flex;
	justify-content: center;
}

.instagram-link {
	text-decoration: none;
	color: #1a1a1a;
	font-size: 20px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #c4c4c4;
	border-radius: 50%;
	background: transparent;
}

.instagram-link:hover {
	color: #5e8b84;
	border-color: #5e8b84;
}

.pop-custom-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	border: 1px solid #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	font-size: 18px;
	background: transparent;
}

@media (max-width: 1024px) {
	.col-title {
		font-size: 2.8rem;
	}

	.col-img-wrap {
		width: 180px;
	}
}

@media (max-width: 768px) {
	.luxury-grid {
		flex-direction: column;
	}

	.luxury-col {
		padding: 40px 20px;
	}

	.col-title {
		font-size: 2.5rem;
	}

	.col-img-wrap {
		margin-top: 30px;
	}
}
