/* volunteer */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

h1, h2 {
    color: #2c3e50;
}

header {
    background-color: #2980b9;
    color: white;
    padding: 20px 0;
    text-align: center;
}


section {
    padding: 20px;
    margin: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2 {
    border-bottom: 2px solid #2980b9;
    padding-bottom: 10px;
}

section ul {
    padding-left: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
}

form input, form textarea, form select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background-color: #2980b9;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

form button:hover {
    background-color: #217dbb;
}

footer {
    background-color: #34495e;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-contact, .footer-social, .footer-donations {
    margin: 20px;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.footer-donations .donate-btn {
    background-color: #27ae60;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.footer-donations .donate-btn:hover {
    background-color: #219150;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .top-bar {
        flex-direction: column;
    }
    
    nav ul {
        flex-direction: column;
    }
}
.hamburger {
	display: none;
	font-size: 30px;
	cursor: pointer;
	padding: 15px;
}


/* Hide the menu on small screens */
@media (max-width: 768px) {
	nav {
		display: flex;
		justify-content: flex-end;
		/* Push the hamburger to the right */
	}

	nav ul {
		display: none;
		/* Hide the menu initially */
		flex-direction: column;
		align-items: flex-start;
		/* Align menu items to the left */
		width: 100%;
		background-color: #ffffff;
		position: absolute;
		/* Absolutely position the menu */
		top: 0;
		right: 0;
		/* Position the menu on the right side */
		z-index: 1000;
		padding: 0;
	}

	nav ul li {
		width: 100%;
		text-align: right;
		/* Align menu items to the right */
	}

	nav ul li a {
		padding: 15px;
		text-align: right;
		/* Align links to the right */
		font-size: 1rem;
		/* Adjust font size */
		color: #333333;
		/* Dark text for readability */
		text-decoration: none;
		/* Remove underline from links */
		transition: background-color 0.3s ease, color 0.3s ease;
		/* Smooth transition */
	}

	/* Hover effect for links */
	nav ul li a:hover {
		background-color: #fb8b23;
		/* Highlight on hover */
		color: #ffffff;
		/* Change text color on hover */
	}

	/* Show the menu when toggled */
	nav ul.show {
		display: flex;
		/* Show the menu when toggled */
	}

	.hamburger {
		display: block;
		/* Show hamburger icon */
	}
}

#menu {
	display: none;
}

.menu-toggle {
	display: block;
	/* Ensure the toggle is visible */
}

