/* CSS Variables cho Theme Luxury */
:root {
	--gold: #C5A25D;
	--gold-hover: #b08d48;
	--dark: #212529;
	--gray-light: #F8F9FA;
	--gray-text: #666666;
	--radius: 8px;
	--transition: all 0.3s ease;

	--font-sans: 'Mulish', sans-serif;

	--font-heading: 'Cormorant Garamond', serif;
	--font-wtm: 'Bodoni Moda', serif;

	--font-size-main: 1.15rem;


	--ebony: #212529;
	--gold-light: #E0C695;
	--glass: rgba(18, 19, 19, 0.85);
	--transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: var(--font-sans);
	color: var(--dark);
	background-color: #fff;
	overflow-x: hidden;
	font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
.luxury-font {
	font-weight: 700;
	font-family: var(--font-sans);

}

.font-size-main {
	font-size: var(--font-size-main);
}

/* Title: Typography sang trọng */
.lx-title {
	font-family: var(--font-sans);
	font-size: 2.4rem;
	color: var(--ebony);
	line-height: 1.2;
	font-weight: 500;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.lx-title2 {
	font-family: var(--font-sans);
	font-size: 2.7rem;
	color: var(--gray-light);
	line-height: 1.2;
	font-weight: 500;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.watermark {
	position: relative;
	overflow: hidden;
}

.watermark::before {
	content: "";
	position: absolute;

	background-image: url('/templates/bds/merakiland/symbol_white.png');
	/* Ưu tiên file .svg để sắc nét khi phóng to */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;


	width: 500px;
	height: 500px;

	/* Cực lớn */
	opacity: 0.02;
	/* Cực mờ để không làm rối chữ chính */
	top: -100px;
	left: 0px;
	line-height: 1;
	pointer-events: none;
	z-index: 0;
}


.lx-title span {
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
	/* Khoảng cách từ chữ xuống thanh gạch */
}

.lx-title span::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	/* Độ dài thanh gạch (có thể chỉnh thành 100% nếu muốn gạch hết) */
	height: 3px;
	background: var(--gold);
	/* Hiệu ứng mượt mà khi hiện trang */
	transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hiệu ứng hover cho sang: khi rà chuột vào thanh gạch dài ra */
.lx-title:hover span::after {
	width: 100px;
}

@media (max-width: 768px) {
	.lx-title {
		font-size: 2rem;
	}

}

.lx-section {
	padding: 120px 0;
}

.lx-badge {
	color: var(--gold);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 4px;
	display: block;
	margin-bottom: 10px;
}

.letter-spacing-lg {
	letter-spacing: 0.2em;
}

.text-gold {
	color: var(--gold);
}

.bg-dark-section {
	background-color: var(--dark);
	color: #fff;
}

/* --- BUTTONS --- */
.btn-gold {
	background-color: var(--gold);
	color: #fff;
	padding: 12px 30px;
	border-radius: var(--radius);
	font-weight: 500;
	transition: var(--transition);
	border: none;
}

.btn-gold:hover {
	background-color: var(--gold-hover);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(197, 162, 93, 0.4);
}


/* --- ABOUT --- */
.about-img {
	border-radius: var(--radius);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 500px;
	object-fit: cover;
}


/* --- UPCOMING PROJECTS --- */
.upcoming-section {}

.upcoming-card img {
	filter: grayscale(100%) opacity(0.8);
	transition: var(--transition);
	width: 100%;
	border-radius: var(--radius);
}

.upcoming-card:hover img {
	filter: grayscale(0%) opacity(1);
}

.bg-alter {
	background-color: var(--gray-light);
}



/* --- CONTACT --- */
.form-control {
	padding: 15px;
	border-radius: var(--radius);
	border: 1px solid #ddd;
	margin-bottom: 20px;
}

.form-control:focus {
	box-shadow: none;
	border-color: var(--gold);
}


.py-100 {
	padding-top: 80px;
	padding-bottom: 80px;
}

.mt-6 {
	margin-top: 4rem;
}


.py-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.mt-6 {
	margin-top: 5rem;
}