/* Base styles */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Header */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e2d24;
  padding: 1rem 2rem;
  color: white;
}

.logo {
  display: flex;
  align-items: center; /* vertical centering */
  gap: 1rem;
  flex-wrap: nowrap;
}

.logo a {
  display: flex;
  align-items: center; /* vertical centering */
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  max-height: 80px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 1.75rem;
  color: white;
  line-height: 1.2;
  white-space: nowrap;
  display: flex;
  align-items: center; /* ensures vertical centering */
}

.logo2 {
  display: flex;
  align-items: center; /* vertical centering */
  gap: 1rem;
  flex-wrap: nowrap;
}

.logo2-img {
  display: block;
  margin: 1rem auto;
  max-width: 130px; /* Optional: scale image if needed */
  height: auto;
}

.logo2-text {
  font-size: 1.75rem;
  color: white;
  line-height: 1.2;
  white-space: nowrap;
  display: flex;
  align-items: center; /* ensures vertical centering */
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
}

.nav-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  display: none !important; /* force hidden on desktop */
}


/* Hero */
.hero {
  background: url('hero-image.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-button {
  background-color: #c24600;
/*  background-color: #ff6b00; */
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #1e2d24;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .logo-img {
    max-height: 48px;
  }

  .logo-text {
    font-size: 1.1rem;
    text-align: left;
    white-space: normal;
  }

  .nav-toggle {
    display: block !important;
  }

  .nav-menu.show {
    display: flex !important;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  margin-bottom: 3rem;
}

section:not(:last-of-type) {
  margin-bottom: 3rem;
}

section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mission, .events, .join {
  background-color: #fff;
  margin: 2rem 0;
  border-top: 4px solid #1e2d24;
  padding: 2rem 0;
}

.mission-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #444;
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid #ff6b00;
}

.event-list {
  display: none;
}

/* .event-list {
  list-style: none;
  padding: 0;
}
*/

.event-list li {
  margin-bottom: 1.5rem;
  background-color: #f0f0f0;
  padding: 1rem;
  border-left: 4px solid #ff6b00;
}

.join .cta-button {
  display: inline-block;
  margin-top: 1rem;
}

.join ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.join h3 {
  margin-top: 2rem;
  color: #1e2d24;
}

.about {
  background-color: #fff;
  margin: 2rem 0;
  border-top: 4px solid #1e2d24;
  padding: 2rem 0;
}

.about h3 {
  margin-top: 2rem;
  color: #1e2d24;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form button {
  align-self: start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.support {
  background-color: #fff;
  margin: 2rem 0;
  border-top: 4px solid #1e2d24;
  padding: 2rem 0;
}

.support h3 {
  margin-top: 2rem;
  color: #1e2d24;
}

.support a {
  color: #006699;
  text-decoration: underline;
}

.support .cta-button {
  display: inline-block;
  margin-top: 1rem;
}

.support a.cta-button {
  background-color: #c24600;
/*  background-color: #ff6b00; */
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
}

address {
  font-style: normal;
  line-height: 1.6;
  margin-top: 1rem;
}

.not-found {
  background-color: #fff;
  margin: 2rem 0;
  border-top: 4px solid #ff6b00;
  padding: 2rem 0;
  text-align: center;
}

.not-found h2 {
  font-size: 2rem;
  color: #1e2d24;
}

.not-found p {
  margin: 1rem 0;
}

.not-found-img {
  display: block;
  margin: 2rem auto;
  max-width: 320px;
  height: auto;
}

img.not-found-img {
  display: block;
  margin: 2rem auto;
  max-width: 320px;
  width: 100%;
  height: auto;
}

footer {
  background-color: #1e2d24;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

footer p {
  margin: 0.5rem 0;
}

footer a {
  color: #ff6b00;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-donate-button {
  display: inline-block;
  background-color: #c24600;
/*  background-color: #ff6b00; */
  color: #fff;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

/* .footer-donate-button:hover {
  background-color: #e65c00;
}
*/

.legal-notice {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  margin-top: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.social-links a:hover img,
.social-links a:focus img {
  transform: scale(1.1);
}
