/*
Theme Name: TahZhae's Beauty Salon
Theme URI: https://tahzhaes.com
Author: elevateom
Author URI: https://elevateom.com
Description: A custom WordPress theme for TahZhae's Beauty Salon
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tahzhaes
Tags: beauty, salon, hair, custom-header, custom-menu, featured-images, flexible-header, custom-colors
*/

:root {
	--color-primary: #f7b9ba;
	--color-secondary: #ea9092;
	--color-text-light: #ffffff;
	--color-text-dark: #000000;
	--color-text-muted: #7d7d7d;
	--font-main: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-main);
	background-color: var(--color-text-light);
	color: var(--color-text-dark);
	font-size: 16px;
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

p {
	margin: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
}

.form-col {
	flex: 1;
}

.contact-form textarea,
.contact-form input {
	width: 100%;
}


@media (max-width: 991px) {
	.header-divider {
		display: none;
	}
}
.container {
	max-width: 1480px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
}

.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 19px 30px;
	border-radius: 100px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-dark {
	background-color: var(--color-text-dark);
	color: var(--color-text-light);
}

.btn-dark:hover {
	background-color: var(--color-primary);
	color: var(--color-text-dark);
}

.btn-light {
	background-color: var(--color-primary);
	color: var(--color-text-dark);
}

.btn-light:hover {
	background-color: var(--color-text-dark);
	color: var(--color-text-light);
}

@media (max-width: 768px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.py-5 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

/****************************************************************/

.site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background-color: var(--color-text-dark);
	padding-top: 32px;
	padding-bottom: 50px; /* Adjusted to accommodate nav */
}

.header-container {
	position: relative;
}

.header-top {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 30px;
	margin-bottom: 15px;
}

.header-contact-info {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-text-light);
	font-size: 14px;
}
.header-contact-info a:hover {
	color: var(--color-secondary);
}

.header-icon {
	width: 16px;
	height: auto;
}

.header-divider {
	border: none;
	height: 1px;
	background-color: #535353;
	margin: 0;
}

.header-main {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 35px;
}

.custom-logo-link {
	position: absolute;
	left: 40px;
	top: -24px; /* (32px padding-top - 8px from figma) */
	width: 250px;
	height: 252px;
}

.header-nav ul {
	display: flex;
	gap: 25px;
}

.header-nav a {
	color: var(--color-text-light);
	font-size: 16px;
	transition: color 0.3s ease;
}

.header-nav a:hover,
.header-nav .current_page_item a {
	color: var(--color-secondary);
}

.mobile-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
}

.page-title {
	border-bottom: 1px solid #ccc;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}



@media (max-width: 1200px) {
	.custom-logo-link {
		left: 20px;
		width: 200px;
		height: auto;
	}
	.header-main {
		justify-content: space-between;
	}
	.header-nav {
		margin-left: 220px; /* Space for logo */
	}
}

@media (max-width: 1024px) {
	.header-nav {
		display: none; /* Hide nav on mobile, would need JS to toggle */
	}
	.mobile-nav-toggle {
		display: flex;
		flex-direction: column;
		gap: 5px;
		z-index: 101;
	}
	.mobile-nav-toggle span {
		width: 25px;
		height: 3px;
		background-color: var(--color-text-light);
	}
	.header-main {
		justify-content: flex-end;
	}
	.custom-logo-link {
		top: -24px;
		width: 180px;
	}
}

@media (max-width: 768px) {
	.header-top {
		flex-direction: column;
		align-items: flex-end;
		gap: 10px;
	}
	.site-header {
		padding-top: 15px;
	}
	.custom-logo-link {
		width: 150px;
		top: -10px;
	}
}

/* CSS for section section:hero */
.hero-section {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 964px; /* 801px image + 163px header */
	background-image: url(https://nks.elevateomdev.com/vaneet/TahZhaesBeautySalon/wp-content/uploads/2025/10/IMG_0631.jpeg);
	background-size: cover;
	background-position: center;
	text-align: center;
	color: var(--color-text-light);
}

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

.hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.hero-title {
	font-size: 100px;
	line-height: 1;
	font-weight: 600;
	text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
	.hero-section {
		height: 80vh;
		min-height: 600px;
	}
	.hero-title {
		font-size: 80px;
	}
}
/* 
@media (max-width: 768px) {
.hero-title {
font-size: 50px;
}
.hero-content {
padding: 0 20px;
}
}
*/
@media (max-width: 768px) {
	.hero-title {
		font-size: 32px;         /* Reduce font size */
		line-height: 1.2;        /* Adjust line height for readability */
		text-align: center;      /* Ensure text is centered */
		max-width: 100%;          /* Prevent overflow */
	}

	.hero-content {
		padding: 0 20px;
		text-align: center;
	}
}


/* CSS for section section:welcome */
.welcome-section {
	padding: 100px 0;
}

.welcome-grid {
	display: grid;
	grid-template-columns: 600fr 718fr;
	gap: 82px;
	align-items: center;
}

.welcome-image img {
	border-radius: 250px 0px 0px 0px;
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.welcome-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 50px;
}

.welcome-title {
	font-size: 30px;
	line-height: 40px;
	font-weight: 400;
}

.welcome-description {
	font-size: 18px;
	line-height: 30px;
}

@media (max-width: 1024px) {
	.welcome-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.welcome-image img {
		height: 400px;
		border-radius: 120px 0 0 0;
	}
	.welcome-text {
		gap: 30px;
	}
}

/* CSS for section section:services */
.services-section {
	background-color: var(--color-primary);
	padding: 100px 0;
}

.services-grid {
	display: grid;
	grid-template-columns: 718fr 600fr;
	gap: 82px;
	align-items: center;
}

.services-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}

.services-title {
	font-size: 35px;
	line-height: 40px;
}

.services-description {
	font-size: 18px;
	line-height: 30px;
}

.services-lists {
	display: flex;
	gap: 80px;
	width: 100%;
}

.service-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.service-list li {
	font-size: 18px;
	line-height: 36px;
	padding-left: 35px;
	position: relative;
}

.service-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 17px;
	height: 17px;
	background-image: url('images/0_84.svg'); /* Using one of the SVGs as a template */
	background-repeat: no-repeat;
	background-position: center;
}

.services-image img {
	border-radius: 0px 270px 0px 0px;
	width: 100%;
	height: 540px;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.services-image {
		order: -1;
	}
	.services-image img {
		height: 400px;
		border-radius: 0 120px 0 0;
	}
}

@media (max-width: 768px) {
	.services-lists {
		flex-direction: column;
		gap: 0;
	}
}

/* CSS for section section:gallery */
.gallery-section {
	padding: 100px 0;
	background-color: #ffffff;
}

.gallery-title {
	font-size: 35px;
	line-height: 40px;
	text-align: center;
	margin-bottom: 85px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	align-items: start;
}

.gallery-grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Staggered effect for specific items on desktop */
.gallery-item-stagger-up-1 {
	margin-top: -185px;
}

.gallery-item-stagger-up-2 {
	margin-top: -123px;
}

.gallery-button-wrapper {
	text-align: center;
	margin-top: 120px;
}

@media (max-width: 1024px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	/* Reset staggering for tablet and mobile */
	.gallery-item-stagger-up-1,
	.gallery-item-stagger-up-2 {
		margin-top: 0;
	}
}

@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: 1fr;
	}
	.gallery-button-wrapper {
		margin-top: 50px;
	}
	.gallery-title {
		margin-bottom: 50px;
	}
}

/* CSS for section section:contact */
.contact-section {
	background-color: var(--color-primary);
	padding: 100px 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 600fr 718fr;
	gap: 82px;
	align-items: center;
}

.contact-image img {
	border-radius: 250px 0px 0px 0px;
	width: 100%;
	height: 532px;
	object-fit: cover;
}

.contact-form-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
}

.contact-title {
	font-size: 35px;
	line-height: 40px;
}

.contact-description {
	font-size: 18px;
	line-height: 30px;
}

.contact-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 20px;
	border: none;
	border-radius: 5px;
	font-family: var(--font-main);
	font-size: 16px;
	color: var(--color-text-muted);
	line-height: 0.7rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: var(--color-text-muted);
}

.contact-form button {
	align-self: flex-end;
}

@media (max-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.contact-image img {
		height: 400px;
		border-radius: 120px 0 0 0;
	}
	.contact-form-wrapper {
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.contact-form .form-row {
		grid-template-columns: 1fr;
	}
	.contact-form button {
		align-self: stretch;
	}
}

/* CSS for section section:footer */
.site-footer {
	background-color: var(--color-text-dark);
	color: var(--color-text-light);
	padding-top: 100px;
}

.footer-main {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	padding-bottom: 100px;
}

.footer-heading {
	font-size: 17px;
	letter-spacing: 1.7px;
	text-transform: uppercase;
	margin-bottom: 34px;
}

.footer-column p,
.footer-links a,
.footer-contact a,
.footer-contact span {
	font-size: 16px;
	line-height: 30px;
	font-weight: 400;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

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

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.footer-contact img {
	margin-top: 5px;
	flex-shrink: 0;
}

.footer-contact a:hover {
	color: var(--color-secondary);
}

.footer-social img {
	width: 131px;
	height: auto;
}

.footer-copyright {
	padding: 40px 0;
}

.copyright-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.copyright-container p {
	font-size: 13px;
	letter-spacing: 1.3px;
	text-align: center;
	white-space: nowrap;
}

.copyright-line {
	flex-grow: 1;
	height: 1px;
	background-color: var(--color-text-light);
	opacity: 0.3;
}

@media (max-width: 1024px) {
	.footer-main {
		grid-template-columns: repeat(2, 1fr);
		gap: 60px;
	}
}

@media (max-width: 768px) {
	.site-footer {
		padding-top: 60px;
	}
	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-bottom: 60px;
	}
	.copyright-container p {
		font-size: 10px;
		white-space: normal;
	}
	.copyright-line {
		display: none;
	}
}
.grecaptcha-badge {
width: 70px !important;
overflow: hidden !important;
transition: all 0.3s ease !important;
left: 4px !important;
}
.grecaptcha-badge:hover {
width: 256px !important;
}

.grecaptcha-badge {

visibility: hidden;

}
