/* navbar */
nav {
	display: flex;
	align-items: center;
	height: 100px;
	background-color: var(--primary-color);
}

.logo-wrapper img {
	width: 60px;
	margin-top: 5px;
	margin-left: 15px;
}

.logo-wrapper {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: var(--text-color);
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 10px;
	list-style: none;
	flex: 1;
}

.nav-links a {
	text-decoration: none;
	transition: color 0.5s;
	color: var(--text-color);
}

.nav-links i,
.nav-btns i {
	margin-top: 2px;
	margin-right: 1px;
}

.nav-links a:hover {
	color: var(--secondary-color);
}

.nav-btns {
	display: flex;
	gap: 10px;
}

.green-btn {
	padding: 0.5rem 1rem;
	background-color: var(--tertiary-color);
	color: var(--text-color);
	text-decoration: none;
	border-radius: 15px;
	font-weight: 500;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
	margin-right: 10px;
	transition: color 0.5s;
}

.green-btn:hover {
	background-color: var(--tertiary-hover);
}

/* imgbanner under nav */
.imgbanner {
	width: 100%;
	height: 250px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	background-color: var(--text-color);
}

.imgbanner img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}

/* footer */
footer {
	background-color: var(--primary-color);
	padding: 2rem 1rem 1rem;
	margin-top: 20px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem 4rem;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-content > section {
	flex: 1 1 250px;
}

.footer-wrapper {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.footer-wrapper img {
	width: 60px;
}

.footer-content > section:first-child p {
	color: var(--text-color);
	font-size: 0.8rem;
	font-weight: 50;
	margin-top: 0.5rem;
	line-height: 1.4;
}

.footer-content h2 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: var(--secondary-color);
}

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

.footer-content li {
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-content a {
	color: var(--text-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-content a:hover {
	color: var(--secondary-color);
}

.footer-content > section:last-child {
	flex-basis: 100%;
	text-align: center;
	margin-top: 2rem;
	border-top: 1px solid var(--text-color);
	padding-top: 1rem;
	font-size: 0.9rem;
	color: var(--text-color);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.footer-content i {
	font-size: 15px;
	margin-right: 10px;
}
