/*
Theme Name: Hello Elementor Child
Theme URI: https://livingkualalumpur.com
Description: Child theme for Hello Elementor
Author: Ezsolve
Author URI: https://ezsolve.com.my
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-child
*/

/* Add your custom CSS below */


:root {
	--ez-color-primary: #063121;
	--ez-color-white: #f4f0e8;
	--ez-color-gold:#b58219;
	--ez-color-text: #232322;
	--ez-color-muted: #888888;
	--ez-color-grey: #e0dfde;
	--ez-color-border: rgba(0, 0, 0, 0.08);
	--ez-color-bg: #ffffff;

	--ez-shadow-header: 0 4px 18px rgba(0, 0, 0, 0.06);
	--ez-border: 4px 4px 4px 4px ;
}

html {
  scroll-padding-top: 62px;
}

@font-face {
  font-family: 'Manrope';
  src: url('/wp-content/themes/hello-child/assets/fonts/Manrope-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}


@font-face {
  font-family: 'Manrope';
  src: url('/wp-content/themes/hello-child/assets/fonts/Manrope-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/wp-content/themes/hello-child/assets/fonts/Manrope-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/wp-content/themes/hello-child/assets/fonts/Manrope-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/wp-content/themes/hello-child/assets/fonts/Manrope-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

body{
	font-family: 'Manrope';
	font-weight: 300;
	color: var(--ez-color-text);
}

.ez-button {
	padding: 5px 10px 5px 10px;
	background-color: var(--ez-color-primary);
	color: var(--ez-color-white);
	border-radius: var(--ez-border);
	font-size: clamp(12px, 1.5vw, 13px);
	font-weight: 400;
	border: 0px;
}

.ez-button:hover {
	color: var(--ez-color-white);
	background-color: var(--ez-color-gold);
	font-weight: 400;
}

.ez-button-2 {
	padding: 5px 10px 5px 10px;
	background-color: var(--ez-color-gold);
	color: var(--ez-color-white);
	border-radius: var(--ez-border);
	font-size: clamp(12px, 1.5vw, 13px);
	font-weight: 400;
	border: 0px;
}

.ez-button-2:hover {
	color: var(--ez-color-white);
	background-color: var(--ez-color-primary);
	font-weight: 400;
}

a {
	color: var(--ez-color-primary);
}
a:hover {
	color: var(--ez-color-gold);
}

.no-underline{
	text-decoration:normal;
}
.underline{
	text-decoration:underline;
}

.m-0{
		margin:0px 0px;
}

ul.area{
	padding-left: 20px;
}
ul.area li {
    font-size: 13px;
	
}


/*table 1 */

.ez-table-01 {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--ez-color-white);
	border: 1px solid var(--ez-color-white);
	border-radius: 10px;
	overflow: hidden;
	font-family: 'Manrope', sans-serif;
	box-shadow: 0 2px 10px rgba(6, 49, 33, 0.04);
}

/* Header */
.ez-table-01 thead th {
	background: var(--ez-color-primary);
	color: var(--ez-color-white);
	font-size: 15px;
	font-weight: 600;
	padding: 8px 12px;
	text-align: left;
	border-bottom: 1px solid var(--ez-color-primary);
}

/* Table Body */
.ez-table-01 tbody td {
	padding: 8px 12px;
	font-size: 14px;
	color: var(--ez-color-dark);
	border: 1px solid var(--ez-color-white);
	background: #ffffff;
	transition: background 0.2s ease;
}

.ez-table-01 tbody > tr:nth-child(2n+1) > td, 
.ez-table-01 tbody > tr:nth-child(2n+1) > th {
	background: #ffffff;
}

/* Hover effect */
.ez-table-01 tbody tr:hover td {
	background: #ffffff;
}

/* Remove last border */
.ez-table-01 tbody tr:last-child td {
	/*border-bottom: none;*/
}

/* First column links */
.ez-table-01 tbody td:first-child a {
	color: #063121;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: opacity 0.2s ease;
}

.ez-table-01 tbody td:first-child a:hover {
	opacity: 0.75;
}

/* Rounded corners */
.ez-table-01 thead th:first-child {
	border-top-left-radius: 14px;
}

.ez-table-01 thead th:last-child {
	border-top-right-radius: 14px;
}

.ez-table-01 a, .ez-table-01  tbody td a{ text-decoration:underline!important; }

/* Mobile */
@media (max-width: 768px) {
	.ez-table-01 thead th,
	.ez-table-01 tbody td {
		padding: 14px;
		font-size: 14px;
	}
}


/* Liquified button*/
.ez-liquid-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	padding: 13px 26px;
	border-radius: 4px;

	color: var(--ez-color-primary);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-decoration: none;

	background: rgba(4, 45, 50, 0.02);
	border: 1px solid rgba(12, 12, 12, 0.15);

	backdrop-filter: blur(8px) saturate(140%);
	-webkit-backdrop-filter: blur(8px) saturate(140%);

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.25),
		inset 0 -1px 0 rgba(255, 255, 255, 0.08),
		0 8px 24px rgba(0, 0, 0, 0.18);

	position: relative;
	overflow: hidden;
	transition: all 0.25s ease;
}

.ez-liquid-btn::before {
	content: "";
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			120deg,
			rgba(255, 255, 255, 0.22),
			rgba(255, 255, 255, 0.03) 35%,
			rgba(255, 255, 255, 0.12) 70%,
			rgba(255, 255, 255, 0.04)
		);

	opacity: 0.8;
	pointer-events: none;
}

.ez-liquid-btn::after {
	content: "";
	position: absolute;
	width: 80px;
	height: 80px;
	left: -30px;
	top: -40px;

	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.28),
		rgba(255, 255, 255, 0) 65%
	);

	pointer-events: none;
}

.ez-liquid-btn:hover {
	background: rgba(4, 45, 50, 0.42);
	border-color: rgba(255, 255, 255, 0.65);
	transform: translateY(-1px);
	color: #ffffff;
}

.ez-liquid-btn span,
.ez-liquid-btn svg,
.ez-liquid-btn i {
	position: relative;
	z-index: 2;
}