*{
    background-color: rgb(26, 26, 26);
    color: white;
}


.fixed-cta {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-button {
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

.cta-button.donate {
  background-color: #28a745;
}

.cta-button.donate:hover {
  background-color: #1e7e34;
}

/* Responsive styling for mobile */
@media (max-width: 600px) {
  .cta-button {
    font-size: 14px;
    padding: 8px 12px;
  }
}


#head {
  display: flex;
  width: 100%;
  height: 350px;
  background-image: url("logo.jpeg");
  background-size: 100% 100%;         /* Stretches image to fit fully */
  background-repeat: no-repeat;
  background-position: center;
                 /* Vertically center content */
  justify-content: center;           /* Horizontally center content */

  margin: 0 auto 0 auto;           /* Top, Right/Left auto-centered */
}

#menu_bar {
  background-color: rgb(104, 104, 104);
  padding: 15px 0;
  text-align: center;
}

.menu_links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;  /* space between links */
  flex-wrap: wrap;
}

.menu_links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.menu_links a:hover {
  text-decoration: underline;
  color: #ffcc00;
}

/* Optional: responsive tweaks */
@media screen and (max-width: 600px) {
  .menu_links {
    gap: 20px;
    font-size: 16px;
    flex-direction: column; /* stack links vertically on small screens */
  }
}


#about_us {
  margin-top: 60px;
  padding: 30px 20px;
  text-align: center;
  background-color: rgb(36, 36, 36);
  border-radius: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

#about_us h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffffff;
}

#about_us p {
  font-size: 18px;
  line-height: 1.8;
  color: #dddddd;
  text-align: justify;
}

@media screen and (max-width: 600px) {
  #about_us {
    padding: 20px 15px;
  }

  #about_us h1 {
    font-size: 28px;
  }

  #about_us p {
    font-size: 16px;
    line-height: 1.6;
  }
}

#gallery_section {
  padding: 40px 20px;
  text-align: center;
}

#gallery_section h1 {
  font-size: 32px;
  margin-bottom: 30px;
  color: white;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

#site_footer {
  background-color: #111;
  padding: 30px 20px;
  text-align: center;
  color: #ccc;
  font-size: 15px;
  margin-top: 80px;
  border-top: 1px solid #333;
}

.footer-content a {
  color: #ffcc00;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #ffffff;
}

/* Responsive: smaller font on phones */
@media screen and (max-width: 600px) {
  #site_footer {
    font-size: 13px;
    padding: 20px 10px;
  }
}
