/* Footer Styles */
.footer {
	background-color: var(--bblue);
	color: white;
	padding: 20px;
	text-align: center;
	font-size: 0.9rem;
	width: 100%;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.footer-content span {
	font-size: 0.9rem;
}

.footer .socials a {
	font-size: 1.3rem;
	color: white;
	margin: 0 10px;
	text-decoration: none;
}

.footer .socials a i {
	margin-right: 8px; /* Add space between the icon and text */
}

.footer .socials a:hover {
	color: var(--hover); /* Change color on hover */
}

/* Responsive Design */
@media screen and (min-width: 768px) {
	.footer-content {
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
		margin: 0 auto;
	}
}
