:root {
  --color-primary: #cda274;
  --color-secondary: #292f36;
  --color-tertiary: #f4f0ec;
  --color-muted: #4d4d4d;
  --color-white: #fff;
  --color-dark: #1e242a;
  --color-link-special: #5a2e9e;
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Inter', sans-serif;
	color: #292f36;
	background-color: #fff;
	line-height: 1.6;
}

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

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

h1,
h2,
h3,
h4 {
	font-family: 'Playfair Display', serif;
	color: #292f36;
}
.join {
	color: #ddd;
	font-family: 'Playfair Display', serif;
}

.site-header {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
	background-color: #fff;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 22px;
	font-weight: 700;
	color: #292f36;
	font-family: 'Playfair Display', serif;
}

.main-nav ul {
	display: flex;
	gap: 30px;
	list-style: none;
}

.main-nav a {
	color: #292f36;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.main-nav a:hover {
	color: #cda274;
}

.hero {
	height: 110vh;
	background: url('./images/room.webp') center/cover no-repeat;
	display: flex;
	align-items: center;
	position: relative;
}

.hero-overlay {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.hero-content {
	color: #fff;
	max-width: 600px;
	padding: 0 20px;
}

.hero h1 {
	font-size: 58px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero h1 span {
	display: block;
}

.hero .lead {
	font-size: 18px;
	margin-bottom: 30px;
	color: #292f36;
}

.btn-get-started {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: #cda274;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	padding: 14px 34px;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-get-started:hover {
	background-color: #292f36;
	transform: translateY(-3px);
}

.btn-get-started .arrow {
	transition: transform 0.3s ease;
}

.btn-get-started:hover .arrow {
	transform: translateX(6px);
}
.services {
	margin: 100px auto;
}

.services-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.service-card {
	text-align: center;
	padding: 40px 20px;
	border-radius: 20px;
	transition: background-color 0.3s ease;
}

.service-card:hover {
	background-color: #f4f0ec;
}

.service-card h4 {
	font-size: 25px;
	margin-bottom: 12px;
}

.service-card p {
	color: #4d4d4d;
	margin-bottom: 15px;
}

.small-link {
	color: #292f36;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.small-link:hover {
	color: #cda274;
}

.about {
	margin: 100px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text h2 {
	font-size: 50px;
	line-height: 1.3;
	margin-bottom: 20px;
}

.about-text p {
	color: #4d4d4d;
	margin-bottom: 30px;
}

.contact-box {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
	margin-bottom: 40px;
}

.phone {
	display: flex;
	align-items: center;
	gap: 12px;
}

.phone i {
	background: #f4f0ec;
	color: #cda274;
	padding: 16px;
	border-radius: 50%;
	font-size: 20px;
}

.phone-info .number {
	font-weight: 600;
	font-size: 18px;
}

.phone-info small {
	color: #666;
	display: block;
	margin-top: 4px;
}

.about-image img {
	width: 100%;
	border-radius: 20px;
}

.client-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	padding: 40px 0 10px;
	flex-wrap: wrap;
}

.client-logos img {
	max-height: 70px;
	opacity: 0.9;
	filter: grayscale(100%);
	transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.client-logos img:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: translateY(-4px);
}
.projects {
	padding: 90px 0;
	text-align: center;
	background-color: #fff;
}

.projects .section-title {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 32px;
	margin-bottom: 10px;
}

.projects .section-subtitle {
	color: #4d5053;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	max-width: 580px;
	margin: 0 auto 60px;
	line-height: 1.6;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.project-card {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.project-card:hover {
	transform: translateY(-6px);
}

.project-card img {
	width: 100%;
	height: auto;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
}

.project-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 24px;
	font-family: 'Playfair Display', serif;
}

.project-info h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}

.project-info p {
	font-size: 14px;
	color: #4d5053;
}

.project-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #f4f0ec;
	color: #292f36;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 14px;
	transition: all 0.25s ease;
}

.project-btn:hover {
	background: #292f36;
	color: #fff;
}

.testimonials {
	background-color: #f4f0ec;
	padding: 100px 0;
	text-align: center;
}

.testimonials h3 {
	font-size: 40px;
	margin-bottom: 50px;
	text-align: center;
}

.test-cards {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.test-card {
	background-color: #fff;
	border-radius: 20px;
	padding: 40px;
	max-width: 340px;
	text-align: left;
}

.test-card img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin-right: 15px;
	display: inline-block;
	vertical-align: top;
}

.test-card h5 {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
  margin: 0;
}

.test-card small {
	color: #666;
	font-size: 14px;
}

.test-card p {
	color: #4d4d4d;
	margin-top: 20px;
}

.client-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 48px;
	padding: 40px 0 10px;
	flex-wrap: wrap;
}

.client-logos img {
	max-height: 40px;
}

.stats {
	background-color: #f4f0ec;
	padding: 80px 0;
}

.stats-grid {
	display: flex;
	justify-content: space-around;
	text-align: center;
	flex-wrap: wrap;
	gap: 40px;
}

.stat {
	font-family: 'Playfair Display', serif;
}

.stat .num {
	font-size: 46px;
	font-weight: 700;
	display: block;
	color: #cda274;
}

.stat small {
	color: #4d4d4d;
	font-weight: 500;
}

.blogs {
	margin: 100px auto;
	text-align: center;
}

.blogs-title {
	font-size: 38px;
	margin-bottom: 12px;
}

.blogs .muted {
	color: #666;
	max-width: 500px;
	margin: 0 auto 60px;
}

.blogs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
}

.blog-card {
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-5px);
}

.blog-image-wrapper {
	position: relative;
}

.blog-image-wrapper img {
	width: 100%;
	display: block;
}

.blog-image-wrapper .tag {
	position: absolute;
	bottom: 15px;
	left: 15px;
	background: #fff;
	color: #292f36;
	font-weight: 600;
	font-size: 14px;
	padding: 6px 12px;
	border-radius: 8px;
}
.blog-body {
	padding: 25px;
	text-align: left;
	
}

.blog-body h4 {
	font-size: 20px;
	margin-bottom: 20px;
}

.blog-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #666;
}

.blog-footer a {
	color: #cda274;
	font-size: 18px;
}

.cta {
	background-color: #292f36;
	color: #fff;
	padding: 100px 0;
	text-align: center;
	border-radius: 40px;
}
.cta-box {
	background-color: var(--color-secondary);
	border-radius: 50px;
	padding: 80px 20px;
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.cta-box h3 {
	font-size: 38px;
	margin-bottom: 10px;
}

.cta-box p {
	font-size: 18px;
	color: #ddd;
	margin-bottom: 30px;
}
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: #cda274;
	color: #fff;
	padding: 14px 36px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s ease;
}

.btn-primary:hover {
	background-color: #292f36;
	transform: translateY(-3px);
}

.site-footer {
	background: #f4f0ec;
	padding: 80px 0 30px;
	color: #292f36;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
}

.footer-about p {
	color: #4d4d4d;
	margin: 15px 0;
}

.socials a {
	color: #292f36;
	font-size: 16px;
	margin-right: 10px;
	transition: color 0.3s ease;
}

.socials a:hover {
	color: #cda274;
}

.footer-links h5,
.footer-contact h5 {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	margin-bottom: 15px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 8px;
}

.footer-links a {
	text-decoration: none;
	color: #4d4d4d;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #cda274;
}

.footer-contact address {
	color: #4d4d4d;
	font-style: normal;
	line-height: 1.6;
}

.footer-contact a {
	color: #cda274;
	text-decoration: none;
}

.copyright {
	text-align: center;
	color: #666;
	font-size: 14px;
	margin-top: 40px;
	border-top: 1px solid #ddd;
	padding-top: 20px;
}

@media (max-width: 992px) {
	.about-grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 768px) {
	.header-inner {
		flex-direction: column;
		gap: 20px;
	}

	.main-nav ul {
		gap: 15px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero {
		height: 60vh;
	}

	.hero h1 {
		font-size: 40px;
	}
}

@media (max-width: 576px) {
	.hero-content {
		padding: 0 15px;
	}

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

	.client-logos {
		justify-content: center;
	}
}
a {
	color: #292f36;
	text-decoration: none;
	transition: color 0.3s ease;
}
a:hover {
	color: #CDA274;
}
