/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 27 2026 | 12:38:08 */
/* --- Stylish Overlap Hero Section --- */
.lp-hero-stylish {
	width: 100%;
	position: relative;
}

.lp-hero-container {
	position: relative;
	width: 100%;
	height: 400px;
    margin-bottom: 100px;
}

/* Image Area */
.lp-hero-image-area {
	width: 100%;
	height: 100%;
	position: relative;
}

.lp-hero-img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Content Box (The Card) */
.lp-hero-content-box {
	position: relative;
	background-color: #6e5d52; /* Deep Brown */
	color: #fff;
	padding: 20px;
	margin: -60px auto 0 auto; /* Pull up overlap on mobile */
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	z-index: 2;
}

.lp-hero-content-inner {
	text-align: center;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 30px 0;
}

.lp-hero-sub {
	display: block;
    font-size: 1em
	letter-spacing: 0.2em;
	font-family: sans-serif;
	opacity: 0.8;
}

.lp-hero-main {
	font-size: 2em;
	font-family: serif;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
	letter-spacing: 0.1em;
}

/* PC Layout: Overlap Style */
@media (min-width: 768px) {
	.lp-hero-container {
		display: flex;
		justify-content: flex-end; /* Align image to right */
		min-height: 700px;
    	margin-bottom: 0;
	}

	.lp-hero-image-area {
		width: 70%;
	}

	.lp-hero-content-box {
		position: absolute;
		top: 50%;
		left: 5%; /* Offset from left */
		transform: translateY(-50%);
		width: 40%;
		max-width: 500px;
		margin: 0; /* Reset mobile margin */
		padding: 60px 30px;
		box-shadow: 20px 20px 50px rgba(0,0,0,0.2);
	}

	.lp-hero-content-inner {
		padding: 40px 0;
		text-align: left;
		border: none;
		padding-left: 20px;
		border-left: 1px solid rgba(255,255,255,0.4);
	}

	.lp-hero-main {
		font-size: 2.8em;
	}
}