/* Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#content {
	margin-top: 10px;
}

.btn-primary {
    font-size: large;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    background: rgb(0, 155, 114);
    cursor: pointer;
}

.btn-secondary {
    font-size: large;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    background: #e7cb2a;
    cursor: pointer;
}

.btn-primary:hover {
    color: #2A2D34;
}

.btn-secondary:hover {
    color: #2A2D34;
}

/* Navbar */
.navbar {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 20px 3px;
	background: #fff;
	width: 100%;
    max-height: 170px;
    height: 100%;
    z-index: 10;
    position: relative;
}

.navbar img {
	max-width: 180px;
    width: 100%;
    height: auto;
	margin-top: 30px;
}

.navbar ul {
	display: flex;
	gap: 2rem;
	list-style: none;
    align-items: center;
    font-size: medium;
    align-self: center;
    margin-top: 75px;
}

.navbar a {
	text-decoration: none;
	color: #2A2D34;
	font-weight: 600;
	transition: color .3s ease;
}

#mobileMenu {
    display: flex;
    z-index: auto;
}

#mobileMenu ul li:hover {
    transform: translateY(-5px);
}

#menuToggle {
    width: 30px;
    height: 30px;
    display: none;
    cursor: pointer;
    color: #fff;
}

.nav-donate-btn {
    padding: 1.25rem;
    border-radius: 20px;
    background: rgb(0, 155, 114);
}

.nav-donate-btn:hover {
    text-decoration: none;
}

/* Service Listings */
.events-wrapper {
  	padding: 40px 20px;
	border-radius: 10px;
}

.row {
  	display: flex;
  	flex-wrap: wrap;
  	gap: 20px;
}

.column {
  	flex: 1 1 30%;
  	min-width: 280px;
 	display: flex;
}

.card {
  	display: flex;
  	flex-direction: column;
  	justify-content: space-between;
  	width: 100%;
  	max-width: 350px;
  	height: 450px;
  	background: #fff;
  	border-radius: 12px;
  	overflow: hidden;
  	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card img {
  	width: 100%;
  	height: 200px;
  	object-fit: cover;
}

.service-events {
	padding: 15px;
  	flex: 1;
  	display: flex;
  	flex-direction: column;
  	justify-content: space-between;
}