@charset "utf-8";
/* CSS Document */

		  html {
  scroll-behavior: smooth;
}
	
.logo {
  width: 120px;
  height: 120px;
  object-fit: contain;  /* or 'cover' if you want it to fill the space */
}


@media (max-width: 600px) {
  .logo {
    width: 100px;
  }
}

  .banner {
    width: 100%;
	  height: 2.5rem;          
  line-height: 1rem;
    background-color: #f4f4f4;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 10px 0;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
  }

  .banner-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c5f2d;
  }

  .banner-text:hover {
    animation-play-state: paused;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  header {
    background-color: #2c5f2d;
    color: white;
    padding: 1rem;
    text-align: center;
  }

  nav {
    background-color: #97bc62;
    padding: 0.5rem;
    text-align: center;
  }

  nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
  }

  section {
    padding: 1.5rem;
  }

  footer {
    background-color: #2c5f2d;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .content-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .content-container > section {
    flex: 1;
    min-width: 300px;
  }



  .about-contact-map {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem;
  }

  .about-contact-map .left-column,
  .about-contact-map .right-column {
    flex: 1;
    min-width: 300px;
  }

  .map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
  }

  .info-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .info-container section {
    flex: 1;
    min-width: 250px;
  }

  .navbar {
    background-color: #97bc62;
    padding: 0.5rem;
    position: relative;
  }

/* global reset for your main nav */
#nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;           /* keep your desktop flex layout */
  justify-content: center;
  flex-wrap: wrap;
}
#nav-links li {
  margin: 0 15px;          /* your desktop spacing */
  padding: 0;
}
#nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}


  .menu-toggle {
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    display: none;
  }

.page-label {
  display: none;
  font-weight: bold;
  color: white;
  font-size: 1rem;
  margin-right: 10px;
  white-space: nowrap;
}

/* Mobile nav */
@media (max-width: 768px) {

  .page-label {
    display: inline-block;
    vertical-align: middle;
  }

  .navbar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 9999;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: 0;
    font-size: 1.8rem;
    color: #fff;
    margin-left: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  /* Dropdown container */
  #nav-links {
    list-style: none;
    margin: 0;
    padding: 0;

    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;

    width: 52vw;
    max-width: 220px;

    background-color: #97bc62;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);

    display: flex;
    flex-direction: column;
    text-align: left;

    /* Show/Hide */
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: auto;            /* scroll if too tall */
    transition: max-height 0.35s ease, opacity 0.35s ease;
  }

  #nav-links.show {
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
  }

  /* Tighter spacing between links */
  #nav-links li {
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  #nav-links li:last-child {
    border-bottom: 0;
  }

  #nav-links a {
    display: block;
    padding: 0.55rem 1rem;     /* tighter vertical padding */
    min-height: 42px;          /* still a decent tap target */
    line-height: 1.2;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
  }
}


/* ===========================
   Force desktop nav back
   (>768px) THIS IS BACKUPP NOT NEEDED (REDUNDANT)
   =========================== */
@media screen and (min-width: 769px) {
  #nav-links {
    position: static;
    top: auto;
    right: auto;
    width: auto;
    max-width: none;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    display: flex !important;
    max-height: none;
    opacity: 1;
  }
  #nav-links li {
    margin: 0 15px;
    padding: 0;
  }
}

/* =========================== =========================== */

:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --nav-color: #a4cf7c;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

nav {
  background-color: var(--nav-color);
}

body.dark-mode {
  --bg-color: #121212;
  --text-color: #ffffff;
  --nav-color: #1e1e1e;
}

.dark-toggle {
  background-color: transparent;
  border: 2px solid var(--nav-color);
  color: var(--text-color);
  border-radius: 50%;
  padding: 6px 10px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}

.dark-toggle:hover {
  background-color: var(--nav-color);
  color: #fff;
}

	body {
  transition: background-color 0.4s ease, color 0.4s ease;
}

	  .toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  margin-left: 10px;
  vertical-align: middle;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: 0.4s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

.toggle-switch input:checked + .slider {
  background-color: #121212;
}

.toggle-switch input:checked + .slider::before {
  transform: translateX(20px);
}

body.dark-mode {
  --bg-color: #121212;
  --text-color: #ffffff;
  --nav-color: #1e1e1e;
}

body.dark-mode .banner {
  background-color: #1e1e1e;
  border-top: 2px solid #444;
  border-bottom: 2px solid #444;
}

body.dark-mode .banner-text {
  color: #97bc62;
}

body.dark-mode footer {
  background-color: #1e1e1e;
  color: #ccc;
}

body.dark-mode footer a {
  color: #a4cf7c;
}
	
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem;
  background-color: #2c5f2d;
  color: #ccc;
  text-align: left;
}

.footer-column {
  flex: 1 1 300px;
  margin-bottom: 2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

	.footer-links a,
	.footer-info a {
  color: #fff;
  text-decoration: underline;
	font-size: 1.2rem;
}

.footer-links h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.footer-info p {
  margin: 0.5rem 0;
}

/* Seal container to align image neatly */
.seal-container img {
  max-width: 140px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-column {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }

  .footer-links ul {
    padding-left: 0;
  }
}
