.btn {
	padding: 0.8rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background-color: var(--gold);
	color: var(--dark-blue);
}

.btn-primary:hover {
	background-color: #e6c158;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-donate {
	margin-top: 2rem;
}

.footer-donate-btn {
	display: flex;
	width: 100%;
	justify-content: center;
	text-align: center;
}

footer {
	background: var(--dark-blue);
	color: var(--white);
	padding: 3rem 0 1.5rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-column h3 {
	color: var(--gold);
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: var(--white);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--gold);
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	text-decoration: none;
	border-radius: 50%;
	color: var(--white);
	transition: all 0.3s;
}

.social-links a:hover {
	background: var(--gold);
	color: var(--dark-blue);
	transform: translateY(-3px);
}

.copyright {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

.email{
	cursor: pointer;
}

.email:hover {
	text-decoration: underline;
	color: var(--gold);
}

@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr;
	}

	.footer-donate-btn {
		
		align-items: center;
	}

		footer .container {
		padding: 0 12px;
	}
}
