
body {
font-family: 'Lora', serif; font-style: italic;
  background-color: #F9F7F1;
  color: #000000;
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: #1A4D2E;
}

.navbar .logo {
  height: 50px;
}

.navbar .menu-toggle {
  font-size: 1.8rem;
  color: #FFD700;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #FFD700;
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 1rem;
    background-color: rgba(26, 77, 46, 0.95);
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    width: 100%;
    padding: 0.5rem 0;
  }
}


.logo {
  height: 50px;
}

.hero {
  background: linear-gradient(rgba(26,77,46,0.6), rgba(26,77,46,0.6)), url('../images/cygnus005.jpg') center/cover no-repeat;
  color: #FFD700;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #FFD700;
  color: #1A4D2E;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  margin: 0.5rem;
  display: inline-block;
}

.btn:hover {
  background-color: #e6c200;
}

.btn.outline-gold {
  background: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.btn.outline-gold:hover {
  background-color: #FFD700;
  color: #1A4D2E;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.link-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
}

.link-card img {
  width: 100%;
  height: auto;
  border-bottom: 3px solid #FFD700;
}

.mission, .highlights {
  padding: 2rem;
  text-align: center;
}

.mission h2, .highlights h2 {
  color: #1A4D2E;
  margin-bottom: 1rem;
}

.highlights ul {
  list-style: none;
  padding: 0;
}

.highlights li {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

footer {
  background-color: #1A4D2E;
  color: #FFD700;
  text-align: center;
  padding: 1rem;
}

footer .social-links a {
  color: #FFD700;
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 600;
}

footer .social-links a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}


.mission {
  text-align: center;
  padding: 2rem;
  background-color: #ffffff;
}

.mission h2 {
  color: #1A4D2E;
  margin-bottom: 1rem;
}

.mission p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.link-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.link-card h3 {
  color: #1A4D2E;
  margin-top: 0.5rem;
}

.link-card p {
  font-size: 0.95rem;
  padding: 0 0.5rem 0.5rem 0.5rem;
}

.btn {
  display: inline-block;
  background-color: #1A4D2E;
  color: #FFD700;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #163e25;
}

.btn.outline-gold {
  background: none;
  border: 2px solid #FFD700;
  color: #1A4D2E;
}

.btn.outline-gold:hover {
  background-color: #FFD700;
  color: #1A4D2E;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #FFD700;
}

.hero-content p {
  font-size: 1.2rem;
  color: #ffffff;
}

.link-card img {
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.link-card h3 {
  font-size: 1.3rem;
  color: #1A4D2E;
  margin: 0.5rem 0;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.link-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.link-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.link-card h3 {
  font-size: 1.3rem;
  color: #1A4D2E;
  margin: 0.5rem 0;
}

.link-card p {
  font-size: 0.95rem;
  padding: 0 0.5rem 0.5rem 0.5rem;
}

.link-card .btn {
  margin: 0.5rem auto 1rem auto;
}

.cart-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
  padding: 1rem;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.cart-item img {
  border-radius: 8px;
  border: 2px solid #FFD700;
}

.cart-item h3 {
  margin: 0.2rem 0;
  font-size: 1.2rem;
  color: #1A4D2E;
}

.cart-item p {
  margin: 0.2rem 0;
  font-size: 0.95rem;
  color: #333;
}

#cart-total {
  font-weight: 600;
  color: #1A4D2E;
  margin-top: 1rem;
  text-align: center;
}

.mission .btn, .mission .btn.outline-gold {
  margin: 0.5rem;
  display: inline-block;
}


#calendar-container {
  max-width: 900px;
  margin: 2rem auto;
  border: 3px solid #1A4D2E;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.mission p {
  text-align: center;
  max-width: 700px;
  margin: 0.5rem auto;
  font-size: 1rem;
  color: #333;
}

.mission .btn {
  display: inline-block;
  margin: 1rem auto;
  padding: 0.8rem 1.5rem;
}

.mission ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 1rem auto;
}

.mission ul li {
  background: #ffffff;
  border-left: 6px solid #FFD700;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  font-size: 1rem;
  color: #1A4D2E;
}

.mission ul li strong {
  color: #000;
}

.mission a {
  color: #1A4D2E;
  font-weight: 600;
  text-decoration: underline;
}

.mission a:hover {
  color: #FFD700;
}

.mission h3 {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #1A4D2E;
}

.mission p {
  text-align: center;
  max-width: 700px;
  margin: 0.5rem auto;
  font-size: 1rem;
  color: #333;
}

.mission .btn {
  margin: 0.5rem;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.blog-post {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.blog-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-post h3 {
  font-size: 1.2rem;
  margin: 0.8rem;
  color: #1A4D2E;
}

.blog-post p {
  font-size: 0.95rem;
  margin: 0.5rem 0.8rem 1rem 0.8rem;
  color: #333;
}

.blog-post a {
  color: #FFD700;
  text-decoration: underline;
}

.blog-post a:hover {
  color: #1A4D2E;
}

.mission p {
  text-align: center;
  max-width: 700px;
  margin: 1rem auto;
  font-size: 1rem;
  color: #333;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.project-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.project-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-item h3 {
  font-size: 1.2rem;
  margin: 0.8rem;
  color: #1A4D2E;
}

.project-item p {
  font-size: 0.95rem;
  margin: 0.5rem 0.8rem;
  color: #333;
}

.project-item progress {
  width: 80%;
  height: 16px;
  margin: 0.5rem auto;
  display: block;
  appearance: none;
}

.project-item progress::-webkit-progress-bar {
  background-color: #eee;
  border-radius: 8px;
}

.project-item progress::-webkit-progress-value {
  background-color: #1A4D2E;
  border-radius: 8px;
}

.project-item progress::-moz-progress-bar {
  background-color: #1A4D2E;
  border-radius: 8px;
}

.mission p {
  text-align: center;
  max-width: 700px;
  margin: 1rem auto;
  font-size: 1rem;
  color: #333;
}


.contact-form {
  max-width: 500px;
  margin: 1.5rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1A4D2E;
  outline: none;
}

.contact-form .btn {
  background-color: #1A4D2E;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #145C36;
}

.map-container {
  max-width: 800px;
  margin: 1.5rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.social-links {
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
}

.social-links a {
  color: #1A4D2E;
  text-decoration: none;
  margin: 0 0.5rem;
}

.social-links a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.resources-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.resource-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.resource-item h3 {
  font-size: 1.2rem;
  color: #1A4D2E;
  margin: 0.5rem 0;
}

.resource-item p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
}

.resource-item .btn {
  background-color: #1A4D2E;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.resource-item .btn:hover {
  background-color: #145C36;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.4s ease;
  aspect-ratio: 4 / 3; /* maintain clean consistent sizing */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.paypal-container {
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering (if you want) */
    min-height: 200px;       /* optional: adjust for vertical centering */
}

#paypal-button-container {
    text-align: center; /* ensures the button is centered inside */
}
