/* =====================================================
   GLOBAL RESET & BASE
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  color: #2e3d2f;
  background-color: #f9fff6;
}

a {
  color: #2e7d32;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  margin-bottom: 12px;
  color: #1b5e20;
}

p {
  margin-bottom: 12px;
}

.justify {
  text-align: justify;
}

.center {
  text-align: center;
}

/* =====================================================
   HEADER (AS IS – DEEP GREEN)
===================================================== */
.topbar {
  background: #1f3d2b;
  color: #e8f5e9;
  padding: 18px 20px;
}

.topbar-container.center-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand {
  text-align: center;
}

.brand-title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #c8e6c9;
}

.brand-sub {
  font-size: 13px;
  opacity: 0.9;
}

/* =====================================================
   SECTIONS
===================================================== */
.section {
  padding: 50px 20px;
}

.section.yellow {
  background: #fffde7;
}

.section.green {
  background: #e8f5e9;
}

.section h2 {
  text-align: center;
  margin-bottom: 25px;
}

.section h3 {
  margin-bottom: 15px;
}

/* =====================================================
   HERO VIDEO
===================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   LISTS
===================================================== */
ul {
  margin-left: 18px;
  margin-bottom: 15px;
}

ul li {
  margin-bottom: 8px;
}

/* =====================================================
   CARDS
===================================================== */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  padding: 18px;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* =====================================================
   FORMS
===================================================== */
form {
  max-width: 500px;
  margin: 0 auto;
}

form label {
  display: block;
  margin: 12px 0 5px;
  font-weight: 600;
}

form input[type="text"],
form input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #c8e6c9;
  border-radius: 4px;
}

form input[type="checkbox"] {
  margin-right: 6px;
}

form button {
  margin-top: 20px;
  width: 100%;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-block;
  background: #2e7d32;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #1b5e20;
  text-decoration: none;
}

/* =====================================================
   NOTES
===================================================== */
.note {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 10px;
}

/* =====================================================
   FOOTER (DESKTOP – UNCHANGED)
===================================================== */
.site-footer {
  background: #1f3d2b;
  color: #e8f5e9;
  padding: 22px 20px 14px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.footer-brand,
.footer-links-group,
.footer-contact {
  flex: 1 1 200px;
}

.footer-brand h3 {
  color: #c8e6c9;
  margin-bottom: 6px;
}

.footer-brand p,
.footer-contact p {
  font-size: 13px;
  line-height: 1.5;
}

.footer-links-group h4 {
  font-size: 14px;
  color: #a5d6a7;
  margin-bottom: 6px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 14px;
}

.footer-links li a {
  color: #e8f5e9;
  font-size: 13px;
}

.footer-links li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 12px;
  padding-top: 8px;
  text-align: center;
  font-size: 12px;
}

/* =====================================================
   MOBILE FOOTER – FINAL COMPACT FIX
===================================================== */
@media (max-width: 768px) {

  .site-footer {
    padding: 14px 12px 8px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  /* BRAND */
  .footer-brand {
    margin-bottom: 6px;
  }

  .footer-brand h3 {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .footer-brand p {
    font-size: 12px;
    margin: 0;
  }

  /* LINKS + POLICIES AS COMPACT GRIDS */
  .footer-links-group {
    margin: 0 auto;
  }

  .footer-links-group h4 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .footer-links.two-column {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 6px 20px;
  }

  .footer-links li a {
    font-size: 13px;
  }

  /* CONTACT */
  .footer-contact {
    font-size: 12px;
    margin-top: 6px;
  }

  /* FOOTER BOTTOM */
  .footer-bottom {
    margin-top: 8px;
    padding-top: 6px;
    font-size: 11px;
  }
}


/* =====================================================
   SEE DRAGONCROWN™ UP CLOSE (RESPONSIVE – APPENDED ONLY)
===================================================== */

.upclose {
  padding: 40px 20px;
}

.upclose h2 {
  margin-bottom: 24px;
}

/* Laptop / Desktop: 4 images in one row */
.upclose-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.upclose-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* Mobile: stack images vertically */
@media (max-width: 768px) {
  .upclose {
    padding: 30px 16px;
  }

  .upclose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

