html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
	/* Offset for fixed navbar */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Color Variables */
:root {
	/* --primary-color: #d4a574; */
	/* --secondary-color: #2c2c2c; */
	--light-bg: #faf9f7;
	--white: #ffffff;
	--text-dark: #333333;
	--text-light: #666666;
	--accent-light: #f5f1ec;
	--shadow: rgba(212, 165, 116, 0.15);
}

body {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--light-bg);
}

h1,
h2,
h3 {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.navbar {
	background: var(--white);
	box-shadow: 0 2px 20px var(--shadow);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.logo img {
	width: 80px;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-menu a:hover {
	color: var(--primary-color);
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-menu a:hover::after {
	width: 100%;
}

.book-btn {
	background: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 12px 24px;
	border-radius: 0;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.book-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px var(--shadow);
}

/* Hero Section */
.hero {
	margin-top: 80px;
	min-height: 90vh;
	display: flex;
	align-items: center;
	background: var(--white);
}

.hero-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	color: var(--secondary-color);
	line-height: 1.2;
	text-transform: capitalize;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: var(--text-light);
	line-height: 1.8;
}

.cta-btn {
	background: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 16px 32px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.cta-btn:hover {
	background: var(--secondary-color);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px var(--shadow);
}

.hero-image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
	box-shadow: 0 20px 40px var(--shadow);
}

/* About Section */
.about {
	padding: 100px 0;
	background: var(--accent-light);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text h2 {
	font-size: 2.8rem;
	margin-bottom: 2rem;
	color: var(--secondary-color);
}

.about-text p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	color: var(--text-light);
	line-height: 1.8;
}

.about-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
	box-shadow: 0 15px 35px var(--shadow);
}

/* Services Section */
.services {
	padding: 100px 0;
	background: var(--white);
}

.section-title {
	text-align: center;
	font-size: 2.8rem;
	margin-bottom: 3rem;
	color: var(--secondary-color);
	text-transform: capitalize;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: var(--white);
	padding: 2rem;
	border: 2px solid var(--accent-light);
	transition: all 0.3s ease;
	position: relative;
	clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.service-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
	box-shadow: 0 15px 35px var(--shadow);
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--secondary-color);
	text-transform: capitalize;
}

.service-card p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.price {
	font-weight: 600;
	color: var(--primary-color);
	font-size: 1.2rem;
}

/* Specialists Section */
.specialists {
	padding: 100px 0;
	background: var(--accent-light);
}

.specialists-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.specialist-card {
	background: var(--white);
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
	box-shadow: 0 10px 25px var(--shadow);
}

.specialist-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px var(--shadow);
}

.specialist-card img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1.5rem;
	border: 4px solid var(--primary-color);
}

.specialist-card h3 {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
	color: var(--secondary-color);
}

.specialist-card p {
	color: var(--text-light);
	margin-bottom: 1rem;
}

.experience {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 1.5rem !important;
}

.book-specialist-btn {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	padding: 10px 20px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.book-specialist-btn:hover {
	background: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
}

/* Gallery Section */
.gallery {
	padding: 100px 0;
	background: var(--white);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}

.gallery-grid img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: all 0.3s ease;
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.gallery-grid img:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 35px var(--shadow);
}

/* Products Section */
.products {
	padding: 100px 0;
	background: var(--white);
}

.section-title {
	text-align: center;
	font-size: 2.8rem;
	margin-bottom: 3rem;
	color: var(--secondary-color);
	text-transform: capitalize;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.product-card {
	background: var(--white);
	padding: 2rem;
	border: 2px solid var(--accent-light);
	transition: all 0.3s ease;
	position: relative;
	clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.product-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
	box-shadow: 0 15px 35px var(--shadow);
}

.product-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--secondary-color);
	text-transform: capitalize;
}

.product-card p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.product-image {
	height: 400px;
	width: 100%;
	background-position: center;
	background-size: cover;
	margin-bottom: 15px;
}

.price {
	font-weight: 600;
	color: var(--primary-color);
	font-size: 1.2rem;
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background: var(--accent-light);
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 3rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.info-block h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: var(--secondary-color);
}

.info-block p {
	color: var(--text-light);
	line-height: 1.8;
	text-transform: capitalize;
}

.main-book-btn {
	background: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 16px 32px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 1rem;
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.main-book-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px var(--shadow);
}

.map-container {
	background: var(--white);
	padding: 1rem;
	box-shadow: 0 10px 25px var(--shadow);
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

/* Footer */
.footer {
	background: var(--secondary-color);
	color: var(--white);
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-logo h3 {
	color: var(--primary-color);
	font-size: 2rem;
	margin-bottom: 1rem;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.footer-links a {
	color: var(--white);
	text-decoration: none;
	transition: color 0.3s ease;
}

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

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-links a {
	color: var(--white);
	text-decoration: none;
	transition: color 0.3s ease;
}

.social-links a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	border-top: 1px solid #444;
	padding-top: 2rem;
	text-align: center;
	color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-container {
		flex-direction: column;
		gap: 1rem;
		padding: 1rem;
	}

	.book-btn {
		display: none;
	}

	.hero {
		padding-top: 100px;
	}

	.hero-container {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.specialists-grid {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.social-links {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.container {
		padding: 0 15px;
	}
}

.hide {
	display: none;
}

.closed {
	display: none;
}

.is-closed {
	display: block !important;
}
