:root {
	--cream: #f6f1e9;
	--yellow: #ffd93d;
	--orange: #ff9a00;
	--brown: #4f200d;
}

body {
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, "Helvetica Neue", Arial, sans-serif;
	background: var(--cream);
	color: var(--brown);
	line-height: 1.6;
	scroll-behavior: smooth;
}

.glass-nav {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.nav-link {
	color: var(--brown);
}

.nav-link.active {
	color: var(--orange);
	text-shadow: 0 0 10px var(--orange);
}

.hero-section {
	height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--yellow), var(--orange));
	position: relative;
}

.hero-title {
	font-size: 4rem;
	background: linear-gradient(90deg, #7d4f4f, var(--brown));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-tagline {
	font-size: 1.5rem;
	animation: fadeIn 2s ease;
}

.btn-glow {
	background: var(--brown);
	color: #fff;
	padding: 15px 30px;
	box-shadow: 0 0 20px var(--orange);
	transition: 0.3s;
}

.btn-glow:hover {
	box-shadow: 0 0 40px var(--orange);
}

.section-padding {
	padding: 100px 0;
}

.dark-bg {
	background: linear-gradient(135deg, var(--cream), #fff);
}

.service-card,
.testimonial-card {
	background: #fff;
	padding: 30px;
	border-radius: 15px;
	border: 2px solid var(--orange);
	box-shadow: 0 0 15px rgba(255, 154, 0, 0.4);
	transition: 0.3s;
}

.service-card:hover,
.testimonial-card:hover {
	transform: translateY(-10px);
}

.testimonial-card img {
	width: 70px;
	border-radius: 50%;
}

.stars {
	color: var(--orange);
	text-shadow: 0 0 10px var(--orange);
}

.footer-section {
	background: linear-gradient(135deg, var(--orange), var(--yellow));
	padding: 50px 0;
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: 1s;
}

.fade-in.show {
	opacity: 1;
	transform: none;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

#particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

.hero-section .container {
	z-index: 2;
}

.hero-tagline {
	min-height: 40px;
}

.navbar-logo {
	height: 43px;
	width: auto;
	/* max-width: 160px; */
}

@media (max-width: 576px) {
	.navbar-logo {
		height: 50px;
	}
}
