
:root {
	--primary-color: #45372b;
	--secondary-color: #8b4513;
	--background-color: #fff8e1;
	--text-color: #333;
	--light-text: #fff;
	--gold-color: #ffd700;
	--bronze-color: #cd7f32;
}

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

.about-text a {
	text-decoration: none;
	color: var(--text-color);
}

/* Header Logo Section */
.header-logo {
	background-color: white;
	padding: 15px 0;
	transition: all .3s ease;
}

.header-logo:hover {
	background-color: #f9f9f9;
}

.header-logo img {
	height: 70px;
	transition: transform .3s ease;
}

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

/* Navigation */
.navbar {
	background-color: var(--primary-color) !important;
	padding: 0;
}

.navbar-nav .nav-link {
	color: var(--light-text) !important;
	font-weight: 500;
	padding: 15px 20px;
	transition: all .3s ease;
	border-right: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	align-items: center;
}

.navbar-nav .nav-link:last-child {
	border-right: none;
}

.navbar-nav .nav-link:hover {
	color: var(--gold-color) !important;
	background-color: rgba(255, 255, 255, .1);
}

.om-icon {
	margin-right: 8px;
	font-size: .9rem;
	color: var(--gold-color);
}

/* Hero Section */
.hero-section {
	background-image: url("https://cdn-ilehdmk.nitrocdn.com/yJDQtKEmuraWtjKyKAwGXlXGNetkzvHn/assets/images/optimized/rev-b2aaad5/kadritemple.com/wp-content/themes/kadri-child/images/kadri-temple-banner1.jpg");
	background-size: cover;
	background-position: center;
	height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.hero-section.nitro-lazy {
	background-image: none !important;
}

.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: white;
	transition: all .5s ease;
}

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
	transition: all .5s ease;
}

.hero-content p {
	font-size: 1.3rem;
	transition: all .5s ease;
}

.hero-content:hover h1 {
	transform: translateY(-10px);
	text-shadow: 4px 4px 8px rgba(0, 0, 0, .7);
}

.hero-content:hover p {
	transform: translateY(-5px);
	letter-spacing: 1px;
}

/* About Section Styling */
.about-section {
	padding: 80px 0;
	position: relative;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 40px;
	text-align: center;
	position: relative;
	padding-bottom: 20px;
	font-family: "Playfair Display", serif;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--bronze-color) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, .1);
}

.section-title::before {
	content: "ॐ";
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 2rem;
	color: var(--gold-color);
	opacity: .7;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 4px;
	background: linear-gradient(to right, transparent, var(--gold-color), transparent);
	border-radius: 2px;
}

.about-image-container {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
	transition: all .5s ease;
	height: 100%;
}

.about-image-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .3) 100%);
	z-index: 1;
	transition: all .5s ease;
}

.about-image-container:hover::before {
	background: linear-gradient(135deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .4) 100%);
}

.about-image-container:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.about-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s ease;
}

.about-image-container:hover .about-image {
	transform: scale(1.05);
}

.about-content {
	padding-left: 40px;
	position: relative;
}

.about-content::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 4px;
	background: linear-gradient(to bottom, var(--gold-color), var(--bronze-color));
	border-radius: 2px;
}

.about-text {
	column-count: 2;
	column-gap: 40px;
	text-align: left;
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 26px;
}

.about-text p {
	margin-bottom: 20px;
	position: relative;
	padding-left: 15px;
}

.about-text p::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--gold-color);
	font-weight: bold;
}

.read-more-btn {
	display: inline-flex;
	align-items: center;
	margin-top: 20px;
	padding: 12px 30px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--bronze-color) 100%);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all .4s ease;
	border: none;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
	position: relative;
	overflow: hidden;
}

.read-more-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
	transition: all .6s ease;
}

.read-more-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
	color: white;
}

.read-more-btn:hover::before {
	left: 100%;
}

.read-more-btn i {
	margin-left: 8px;
	transition: transform .3s ease;
}

.read-more-btn:hover i {
	transform: translateX(5px);
}

/* Footer Styling */
.footer-logo-section {
	background-color: white;
	padding: 30px 0;
	text-align: center;
}

.footer-logo-section img {
	height: 80px;
	transition: transform .3s ease;
}

.footer-logo-section img:hover {
	transform: scale(1.05);
}

.footer-content {
	background-color: var(--primary-color);
	color: var(--light-text);
	padding: 60px 0 20px;
}

.footer-heading {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-heading::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: var(--gold-color);
}

.footer-links a {
	color: #ddd;
	text-decoration: none;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	transition: all .3s ease;
}

.footer-links a:hover {
	color: var(--gold-color);
	padding-left: 5px;
}

.footer-links .om-icon {
	font-size: .8rem;
}

.contact-info p {
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	transition: all .3s ease;
	padding: 5px 0;
}

.contact-info p:hover {
	transform: translateX(5px);
	color: var(--gold-color);
}

.contact-info i {
	margin-right: 10px;
	color: var(--gold-color);
	width: 20px;
	text-align: center;
}

.footer-image-container {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
	height: 220px;
	transition: all .4s ease;
}

.footer-image-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, .4);
}

.footer-image {
	width: 100%;
	height: 100%;
	background-image: url("https://cdn-ilehdmk.nitrocdn.com/yJDQtKEmuraWtjKyKAwGXlXGNetkzvHn/assets/images/optimized/rev-b2aaad5/kadritemple.com/wp-content/themes/kadri-child/images/kadri-temple-bg2.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all .5s ease;
}

.footer-image.nitro-lazy {
	background-image: none !important;
}

.footer-image-container:hover .footer-image {
	transform: scale(1.05);
}

.footer-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .3) 100%);
	display: flex;
	align-items: flex-end;
	padding: 15px;
}

.footer-image-text {
	color: white;
	font-weight: 500;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, .7);
}

.copyright {
	text-align: center;
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

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

.copyright a:hover {
	color: var(--gold-color);
}

.powered-by {
	font-size: .9rem;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.5rem;
	}
	
	.about-content {
		padding-left: 0;
		margin-top: 30px;
	}
	
	.about-content::before {
		display: none;
	}
	
	.about-text {
		column-count: 1;
	}
	
	.section-title {
		font-size: 2.2rem;
	}
	
	.navbar-nav .nav-link {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, .1);
	}
	
	.copyright {
		flex-direction: column;
		text-align: center;
	}
	
	.copyright > div {
		margin-bottom: 10px;
	}
	
	.footer-image-container {
		height: 180px;
	}
}
