
:root {
	--primary-color: #996017;
	--secondary-color: #be9b6e;
	--text-color: #d8bf9f;
	--dark-bg: #000;
	--h2-underline: #8a5a15;
}

body {
	font-family: "Poppins", sans-serif;
	background-color: var(--dark-bg);
	color: var(--text-color);
	line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
}

h1 {
	color: var(--primary-color);
}

h2 {
	color: var(--secondary-color);
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

h2:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 60px;
	background-color: var(--h2-underline);
	border-radius: 2px;
}

h3 {
	color: var(--secondary-color);
}

p {
	color: var(--text-color);
}

.container {
	max-width: 1200px;
	width: 100%;
}

/* Navigation */
.navbar {
	background-color: rgba(0, 0, 0, .9) !important;
	padding: 15px 0;
	transition: all .3s ease;
}

.navbar.sticky-top {
	background-color: rgba(0, 0, 0, .95) !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

.navbar-brand {
	display: flex;
	align-items: center;
}

.navbar-brand img {
	margin-right: 15px;
	width: 25%;
}

.brand-name {
	color: var(--secondary-color);
	font-weight: 700;
	font-size: 1.5rem;
}

.nav-link {
	color: var(--text-color) !important;
	font-weight: 500;
	margin: 0 10px;
	transition: color .3s ease;
	font-size: 17px;
}

.nav-link:hover {
	color: var(--primary-color) !important;
}

/* Hero Section */
.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .3);
}

.hero-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

/* About Section */
.about-img {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
	transition: all .3s ease;
}

.about-img:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(153, 96, 23, .2);
}

.img-hover-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.img-hover-wrapper img {
	transition: all .4s ease;
}

.img-hover-wrapper:hover img {
	transform: scale(1.05);
}

.img-hover-wrapper:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
	opacity: 0;
	transition: all .4s ease;
}

.img-hover-wrapper:hover:after {
	opacity: 1;
}

/* Content Sections */
.content-section {
	margin-bottom: 60px;
	margin-top: 60px;
	font-size: 16px;
	text-align: justify;
	line-height: 29px;
}

/* WhatsApp Highlight */
.whatsapp-link {
	color: #fdca1e;
	font-weight: 600;
	text-decoration: none;
}

.whatsapp-link:hover {
	text-decoration: underline;
}

/* Social Links */
.social-links a {
	display: inline-block;
	height: 40px;
	width: 40px;
	background: rgba(190, 155, 110, .1);
	margin: 0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: var(--secondary-color);
	transition: all .3s ease;
}

.social-links a:hover {
	color: var(--dark-bg);
	background: var(--secondary-color);
}

/* Contact Section */
.contact-section {
	padding: 40px 0;
	background: linear-gradient(to right, rgba(20, 20, 20, .9), rgba(30, 30, 30, .9));
	border-radius: 15px;
	margin: 40px 0;
}

.contact-icon {
	font-size: 1.8rem;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.contact-method {
	text-align: center;
	padding: 25px 15px;
	border-radius: 10px;
	background: rgba(15, 15, 15, .7);
	transition: all .3s ease;
	height: 100%;
}

.contact-method:hover {
	transform: translateY(-5px);
	background: rgba(25, 25, 25, .8);
	box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

/* Footer */
footer {
	background-color: #0a0a0a;
	padding: 60px 0 20px;
}

.footer-links h5 {
	color: var(--secondary-color);
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-links h5:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 40px;
	background-color: var(--primary-color);
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: var(--text-color);
	text-decoration: none;
	transition: color .3s ease;
}

.footer-links a:hover {
	color: var(--primary-color);
}

.copyright {
	border-top: 1px solid rgba(190, 155, 110, .2);
	padding-top: 20px;
	margin-top: 40px;
}

.copyright a {
	color: #fdca1e;
	text-decoration: none;
}

/* Hide WP Social Chat button only on post ID 2189 */
.postid-2189 #qlwapp {
	display: none !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.navbar-brand img {
		height: 100px;
	}
	
	.brand-name {
		font-size: 1.2rem;
	}
	
	section {
		padding: 60px 0;
	}
	
	.hero {
		padding: 80px 0 60px;
	}
	
	.footer-links {
		text-align: center;
		margin-bottom: 30px;
	}
	
	.footer-links h5:after {
		left: 50%;
		transform: translateX(-50%);
	}
	
	.contact-method {
		margin-bottom: 20px;
	}
}

.content-section a {
	color: #d8bf9f;
	text-decoration: none;
}
