/* General Resets */
body {
	font-family: 'DM Sans', Arial, sans-serif;
	color: #181818;
	background: #fcfcfd;
}

/* Navbar and logo */
.navbar {
	background: rgba(255,255,255,1);
	box-shadow: 0 1px 8px rgba(40,40,40,0.04);
}
.navbar-brand #navbarLogoSlot {
	display: inline-block;
	min-width: 120px;
	min-height: 44px;
	vertical-align: middle;
}

/* Morphing logo font sizes */
.nuvaire-logo {
	font-family: 'Playfair Display', Didot, serif;
	font-size: 4rem;
	letter-spacing: .23em;
	color: #181818;
	margin: 0;
	padding-bottom: 1em;
	transition: font-size 0.3s cubic-bezier(.75,0,.25,1), padding-bottom 0.3s cubic-bezier(.75,0,.25,1);
	font-weight: 700;
}
#navbarLogoSlot #nuvaireLogo {
	font-size: 1em !important;
	padding-bottom: 0 !important;
	letter-spacing: .1em;
	padding-top: 0.5em;
}

/* Hero section */
.hero {
	min-height: 76vh;
	padding-top: 60px;
	background: linear-gradient(120deg, #f7fafd 70%, #f2f2f8 100%);
}
.hero .container {
	padding-left: 2.5rem;
}
.hero-title,
.hero-desc {
	text-align: left !important;
}
.hero-title {
	margin-left: 0.25em;
}
.hero-desc {
	margin-top: -0.6rem;
	margin-bottom: 1rem;
	font-size: 1.2rem;
	max-width: 600px;
}
.btn-nuvaire {
	background: #2a2b2e;
	color: #fff;
	border-radius: 32px;
	letter-spacing: 0.07em;
	padding: 0.7em 2.1em;
	border: none;
	transition: background 0.2s;
	display: inline-block;
	margin-left: 0;
}
.btn-nuvaire:hover, .btn-nuvaire:focus {
	background: #494b50;
	color: #fff;
}

/* Services cards */
.service-card {
	border: none;
	box-shadow: 0 1px 12px rgba(20,20,20,0.07);
	border-radius: 1.6rem;
	transition: transform .18s, box-shadow .18s;
	background: #fff;
}
.service-card:hover {
	transform: translateY(-3px) scale(1.035);
	box-shadow: 0 8px 20px rgba(20,20,20,0.10);
}
.service-icon {
	font-size: 2.7rem;
	color: #222;
}

/* About */
.about ul {
	list-style: disc inside;
	font-size: 1.05rem;
	padding-left: 0.7em;
	margin-bottom: 0;
}

/* Contact */
#contactForm input, #contactForm textarea {
	border-radius: 10px;
	border: 1px solid #ddd;
}
#contactForm input:focus, #contactForm textarea:focus {
	border-color: #333;
	box-shadow: 0 1px 6px rgba(50,50,70,0.07);
}
#contactForm .btn {
	width: 100%;
	margin-top: 0.5rem;
}

/* Footer */
.footer {
	color: #78797a;
	background: transparent;
	font-size: 1rem;
	padding: 2rem 0 1rem 0;
	letter-spacing: 0.06em;
	border-top: 1px solid #ededed;
}

/* Responsive */
@media (max-width: 768px) {
	.hero .container {
		padding-left: 1rem;
	}
	.hero-title .nuvaire-logo {
		font-size: 2.2rem;
	}
	#navbarLogoSlot #nuvaireLogo {
		font-size: 1.1em !important;
	}
	.hero {
		padding-top: 30px;
	}
	.service-card {
		padding: 2em 1em;
	}
	.hero-title,
	.hero-desc {
		text-align: left !important;
		margin-left: 0;
	}
	.hero-desc {
		max-width: 100%;
	}
}
