/* Villa Hero Section Widget — base structural styles.
   Colors, typography, spacing are all controlled from Elementor's Style tab. */

.vhw-hero {
	position: relative;
	width: 100%;
	min-height: 90vh;
	display: flex;
	align-items: stretch;
	justify-content: center;
	overflow: hidden;
	background-color: #e9e3d5;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.vhw-hero__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(255, 251, 235, 0.55);
	pointer-events: none;
	z-index: 1;
}

.vhw-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
}

.vhw-hero__content {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.vhw-hero__eyebrow {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #1f3d2b;
	margin: 0 0 20px;
}

.vhw-hero__heading {
	font-size: 80px;
	font-weight: 700;
	line-height: 1.05;
	color: #12331f;
	margin: 0 0 25px;
	word-wrap: break-word;
}

.vhw-hero__subtitle {
	font-size: 19px;
	line-height: 1.5;
	color: #33403a;
	margin: 0 0 35px;
	max-width: 100%;
}

.vhw-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #1f4d36;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 18px 34px;
	border-radius: 2px;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
	line-height: 1;
}

.vhw-hero__button:hover {
	background-color: #12331f;
	color: #ffffff;
	transform: translateY(-2px);
}

.vhw-hero__button-icon {
	display: inline-flex;
	align-items: center;
	margin-left: 10px;
	margin-right: 10px;
}

.vhw-hero__button-icon svg {
	width: 1em;
	height: 1em;
}

.vhw-hero__scroll-wrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	padding-bottom: 30px;
	pointer-events: none;
}

.vhw-hero__scroll {
	pointer-events: all;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #1f4d36;
	color: #1f4d36;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 16px;
	transition: background-color 0.25s ease, color 0.25s ease;
	animation: vhw-bounce 2s infinite;
}

.vhw-hero__scroll:hover {
	background-color: #1f4d36;
	color: #ffffff;
}

@keyframes vhw-bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

/* Responsive */
@media (max-width: 1024px) {
	.vhw-hero__heading {
		font-size: 56px;
	}
}

@media (max-width: 767px) {
	.vhw-hero {
		min-height: 70vh;
	}
	.vhw-hero__heading {
		font-size: 38px;
	}
	.vhw-hero__subtitle {
		font-size: 16px;
	}
	.vhw-hero__button {
		padding: 14px 24px;
		font-size: 12px;
	}
}

/* =========================================================
   Villa Stats / Price Bar Widget — base structural styles.
   Colors, typography, spacing are all controlled from
   Elementor's Style tab.
   ========================================================= */

.vsb-bar {
	width: 100%;
	background-color: #f7f1df;
	padding: 70px 40px 60px;
	box-sizing: border-box;
}

.vsb-bar__grid {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap: 60px;
}

.vsb-bar__item {
	display: block;
	flex: 1 1 0;
	min-width: 150px;
	text-decoration: none;
	color: inherit;
}

.vsb-bar__number {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #c08a3e;
	margin: 0 0 16px;
}

.vsb-bar__label {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #4a7a9b;
	margin: 0 0 14px;
}

.vsb-bar__value {
	font-size: 24px;
	font-weight: 600;
	color: #16241c;
	margin: 0;
	line-height: 1.3;
}

.vsb-bar__divider {
	width: 1px;
	height: 100%;
	background-color: #c9c0a6;
	flex: 0 0 auto;
	align-self: stretch;
}

.vsb-bar__line {
	width: 100%;
	height: 1px;
	background-color: #c9c0a6;
	margin-top: 45px;
	border: none;
}

@media (max-width: 767px) {
	.vsb-bar {
		padding: 45px 24px 40px;
	}
	.vsb-bar__grid {
		flex-direction: column;
		gap: 28px;
	}
	.vsb-bar__divider {
		display: none;
	}
	.vsb-bar__item {
		min-width: 100%;
		padding-bottom: 20px;
		border-bottom: 1px solid #c9c0a6;
	}
	.vsb-bar__item:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
	.vsb-bar__value {
		font-size: 20px;
	}
}
