* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  color: #222;
}

/*to prevent purple visited link*/
a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 10px 5vw;
  height: 80px;
  box-sizing: border-box;
}

.logo {
  height: 160px;
  transform: translateX(-30px);
  object-fit: contain;
}

.nav-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-size: 1rem;
  font-weight: 500;
}

/* Buttons on the right */
.nav-buttons {
  display: flex;
  align-items: center;
}

.nav-buttons .btn {
  margin-left: 0.75rem;
}

.btn {
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 16px;
  transition: background-color 0.3s;
}

.btn.yellow {
  background-color: #fdd835;
  color: #000;
}

.btn.yellow:hover {
  background-color: #fbc02d;
}

/*Hero Section */
.events {
background-color: #fff;
color: #fff;
text-align: center;
padding: 60px 20px;
}

.events h1 {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 30px;
}

.events .month {
color: #000;
}

.events .fancy {
font-family: 'Pacifico', cursive;
color: #000;
font-size: 2.5rem;
margin-left: 8px;
}

.events p {
font-size: 1.1rem;
margin: 10px 0;
}

/* Featured Section */
.featured-events {
  background-color: #000;
  text-align: center;
  padding: 40px 20px;
}

.featured-events h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #fdd835;
}
.event-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  flex-wrap: wrap;
  background: #f3f3f3;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.event-info {
  flex: 1;
  padding: 30px;
  min-width: 300px;
}

.event-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.event-info p {
  margin-bottom: 12px;
  font-size: 1rem;
}

.signup-btn {
  margin-top: 20px;
  padding: 12px 24px;
  background: #fdd835;
  color: #000;
  border: none;
  font-size: 1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.signup-btn:active {
  transform: scale(1.05);
}

.event-image {
  flex: 1;
  position: relative;
  min-width: 300px;
  
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50px;
}

/* Footer Base Styles */
.footer {
  background-color: #fff;
  color: #000;
  font-family: inherit;
  margin-top: 60px;
}

.footer-top {
  background-color: #f5d400;
  padding: 30px 20px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-main {
  text-align: center;
  padding: 40px 20px;
}

.footer-cta {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.volunteer-footer-btn {
  padding: 12px 25px;
  background-color: #f5d400;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-links div {
  text-align: left;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  margin: 10px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  /*background-color: #000;*/
  padding: 15px;
  border-radius: 50%;
  color: #000;
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
}

.whatsapp-float {
  width: 48px;
  height: 48px;
  color: green;
}


