/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
	padding-top: 150px;
	padding-bottom: 150px;
	display: flex;
	align-items: center;
	background-color: var(--secondary-color);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 4.5rem;
	margin-bottom: 20px;
	opacity: 0;
	animation: fadeInUp 1s 0.5s forwards;
}

.hero p {
	font-size: 1.3rem;
	margin-bottom: 30px;
	opacity: 0;
	animation: fadeInUp 1s 0.8s forwards;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	opacity: 0;
	animation: fadeInUp 1s 1.1s forwards;
}

.portfolio {
	background: var(--primary-color);
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 2.8rem;
	margin-bottom: 15px;
}

#services, #contact, footer {
	background-color: var(--primary-color);
}

#portfolio {
	background-color: var(--secondary-color);
}



.service-card-colored {
	background: var(--secondary-color);
}

body, html {
	background-color: var(--primary-color) !important;
}