* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
}

img {
  max-width: 100%;
}

a {
  color: #006633;
}

a:hover {
  color: #d62828;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}

.logo {
  width: 65px;
  height: 65px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text h1 {
  font-size: 1.5rem;
  color: #006633;
  line-height: 1.2;
}

.logo-text p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.3;
}

/* Mobile menu */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  font-size: 1.8rem;
  color: #006633;
  cursor: pointer;
  user-select: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #006633;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #d62828;
}

/* Hero / banners */
.hero {
  background: linear-gradient(rgba(0, 102, 51, 0.68), rgba(0, 102, 51, 0.68)),
              url('images/hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 110px 20px;
}

.hero h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.hero p {
  max-width: 760px;
  margin: auto;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-banner {
  background: #006633;
  color: white;
  text-align: center;
  padding: 55px 20px;
}

.page-banner h2 {
  font-size: 2.1rem;
}

/* Sections */
.section {
  padding: 70px 0;
}

.section h3 {
  color: #006633;
  margin-bottom: 20px;
  font-size: 1.7rem;
  text-align: center;
}

.section p {
  margin-bottom: 15px;
  text-align: center;
}

.light {
  background: #f7f7f7;
}

.center {
  text-align: center;
}

.btn {
  display: inline-block;
  background: #d62828;
  color: white;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #b71f1f;
  transform: translateY(-1px);
  color: white;
}

/* Cards */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  flex: 1;
  min-width: 260px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.card h4 {
  color: #d62828;
  margin-bottom: 12px;
}

.card p,
.card ul {
  text-align: left;
}

.card ul {
  padding-left: 20px;
}

/* Simple gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.gallery a {
  display: block;
}

.gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery a:hover img,
.gallery a:focus img {
  transform: scale(1.02);
  opacity: 0.92;
}

/* Advanced gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.gallery-card {
  background: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.gallery-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-card a:hover img,
.gallery-card a:focus img {
  transform: scale(1.02);
  opacity: 0.94;
}

.gallery-caption {
  padding: 15px;
  text-align: center;
  font-size: 0.95rem;
  color: #333;
}

.zoom-note {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666;
  text-align: center;
}

/* Contact / content */
.contact-box {
  max-width: 650px;
  margin: auto;
  background: #f7f7f7;
  padding: 30px;
  border-radius: 8px;
}

.contact-box p {
  text-align: left;
  margin-bottom: 12px;
}

.privacy-content {
  max-width: 900px;
}

.privacy-content h3 {
  text-align: left;
  margin-top: 25px;
  margin-bottom: 12px;
}

.privacy-content p,
.privacy-content ul {
  text-align: left;
  margin-bottom: 15px;
}

.privacy-content ul {
  padding-left: 20px;
}

.google-form {
  max-width: 900px;
  margin: 30px auto 0;
  background: #f7f7f7;
  padding: 15px;
  border-radius: 8px;
}

.google-form iframe {
  width: 100%;
  border: 0;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  padding: 30px 20px;
  text-align: center;
}

.lightbox:target {
  display: block;
}

.lightbox-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.lightbox p {
  color: white;
  margin-top: 15px;
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -15px;
  right: 0;
  background: #d62828;
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
}

.lightbox-close:hover {
  background: #b71f1f;
  color: white;
}

/* Footer */
footer {
  background: #006633;
  color: white;
  margin-top: 30px;
}

.footer-inner {
  padding: 24px 0;
  text-align: center;
}

.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle-label {
    display: block;
    margin-left: auto;
  }

  nav {
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding-top: 12px;
  }

  .nav-toggle:checked + .nav-toggle-label + nav ul {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.8rem;
  }

  .page-banner h2 {
    font-size: 1.7rem;
  }

  .lightbox-content {
    top: 0;
    transform: none;
    margin-top: 60px;
  }

  .lightbox-close {
    top: -45px;
    right: 0;
  }

  .logo-text p {
    font-size: 0.85rem;
  }
}