
/* =====================================
   NTBG 2025 Header & Footer Redesign
   ===================================== */

/* =====================================
   CSS VARIABLES
   ===================================== */
:root {
  /* Primary Colors */
  --primaryntbggreenbg: #065629;
  --secondaryntbggreen: #98b53b;
  --gm-text: #98b53b;
  --gm-white: #ffffff;
  
  /* Garden Dot Colors */
  --c-limahuli: #2c9c47;
  --c-kahanu:   #1894b2;
  --c-allerton: #c7579c;
  --c-mcbryde:  #f2aa1e;
  --c-kampong:  #f47e39;
}

/* Hide old header and footer to prevent conflicts */
.site-header:not(.site-header-2025),
.header-top,
.header-bottom,
.header-inner {
  display: none !important;
}

.site-footer:not(.site-footer-2025) {
  display: none !important;
}

/* Override any conflicting theme button styles */
.site-header-2025 .btn,
.site-header-2025 a.btn {
  background: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  border-radius: 5px !important;
  font-family: inherit !important;
}

/* Ensure proper z-index for new header */
.site-header-2025 {
  position: relative;
  z-index: 1000;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

/* =====================================
   HEADER STYLES
   ===================================== */

.site-header-2025 {
  width: 100%;
  position: relative;
}

/* Top Thin Strip with Buttons */
.header-top-strip {
  background-color: #98b53b;
  width: 100%;
  padding: 6px 0;
}

.header-top-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 0 20px;
}

/* Header Action Buttons */
.header-actions-2025 {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Base button styles for 2025 header */
.header-top-strip .ntbg-2025-button {
  padding: 6px 14px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: opacity 0.2s;
  display: inline-block;
  font-size: 13px;
  line-height: normal;
  margin: 0;
  box-shadow: none;
  border: none;
  min-width: auto;
  margin-bottom: 0;
}

.header-top-strip .ntbg-2025-button:hover {
  opacity: 0.9;
  transform: none;
  box-shadow: none;
}

/* Book a Tour button */
.header-top-strip .ntbg-2025-button.btn-book-2025 {
  background: transparent;
  color: #065629;
}

/* Donate button */
.header-top-strip .ntbg-2025-button.btn-donate-2025 {
  background-color: var(--primaryntbggreenbg);
  color: #98b53b;
}

/* Main Header Area */
.header-main-area {
  background-color: var(--primaryntbggreenbg);
  width: 100%;
  position: relative;
}

.header-main-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  padding: 0 20px;
}

/* Header Left Side */
.header-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  padding-left: 0;
}

.header-logo {
  margin-bottom: 8px;
}

.header-logo .main-logo {
  height: 120px;
  width: auto;
  max-width: 480px;
  display: block;
}

.header-logo a {
  display: block;
  text-decoration: none;
}

/* Green Divider Line */
.header-divider {
  height: 2px;
  background-color: #98b53b;
  margin-bottom: 15px;
  width: 96%;
  max-width: 900px;
}

/* Desktop Navigation */
.header-2025-desktop-nav {
  display: flex;
  min-height: 30px;
}

.header-2025-main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}

.header-2025-main-menu li {
  margin: 0;
}

.header-2025-main-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: opacity 0.2s;
  display: block;
  line-height: normal;
  margin-bottom: 0;
}

.header-2025-main-menu a:hover {
  opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid white;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Gardens Strip - Right Side */
.gardens-strip {
  display: flex;
  align-items: stretch;
}

/* Inline gardens (shown on large screens) */
.gardens-strip-inline {
  display: flex;
  flex-shrink: 0;
}

/* Full-width gardens (hidden by default, shown on medium screens) */
.gardens-strip-full-width {
  display: none;
  width: 100%;
  justify-content: stretch;
}

.gardens-container {
  display: flex;
  align-items: stretch;
}

.garden-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  text-decoration: none;
  min-width: 140px;
  flex: 1;
}

.garden-link:hover {
  opacity: 0.8;
}

/* Garden Background Colors */
.garden-link.allerton {
  background-color: #722257;
}

.garden-link.kahanu {
  background-color: #01313C;
}

.garden-link.limahuli {
  background-color: var(--primaryntbggreenbg);
}

.garden-link.mcbryde {
  background-color: #ac3f28;
}

.garden-link.kampong {
  background-color: #6F2617;
}

.garden-logo {
  height: 140px;
  width: auto;
  max-width: 155px;
  display: block;
  object-fit: contain;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  background-color: #7A9B3D;
  width: 100%;
  padding: 0;
}

.mobile-nav.is-open {
  display: block;
}

.browse-gardens-toggle {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: white;
  padding: 15px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.header-2025-mobile-nav .header-2025-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-2025-mobile-nav .header-2025-mobile-menu li {
  margin: 0;
}

.header-2025-mobile-nav .header-2025-mobile-menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
}

/* Mobile Gardens Panel */
.mobile-gardens-panel {
  display: none;
  background-color: var(--primaryntbggreenbg);
  width: 100%;
}

.mobile-gardens-panel.is-open {
  display: block;
}

.mobile-garden-item {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-garden-item.allerton {
  background-color: #760160;
}

.mobile-garden-item.kahanu {
  background-color: #003140;
}

.mobile-garden-item.limahuli {
  background-color: #065629;
}

.mobile-garden-item.mcbryde {
  background-color: #ac3f28;
}

.mobile-garden-item.kampong {
  background-color: #802b19;
}

.mobile-garden-logo {
  height: 50px;
  width: auto;
}

/* =====================================
   FOOTER STYLES
   ===================================== */

.site-footer-2025 {
  width: 100%;
  background-color: var(--primaryntbggreenbg);
  color: white;
}

.footer-main-2025 {
  padding: 20px 0;
}

.footer-container-2025 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 80px;
  align-items: start;
}

/* Footer Logo Column */
.footer-logo-2025 {
  display: flex;
  align-items: flex-start;
}

.footer-main-logo-2025 {
  height: 280px;
  width: auto;
}

/* Footer Middle Column */
.footer-middle-2025 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.footer-sections-2025 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footer-section-2025 h3 {
  color: #83a72d;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.footer-section-2025 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section-2025 li {
  margin: 0;
}

.footer-section-2025 a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
  font-size: 14px;
  line-height: 1;
}

.footer-section-2025 a:hover {
  opacity: 0.8;
}

.footer-contact-2025 {
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact-2025 strong {
  color: #83a72d;
  font-size: 16px;
  font-weight: 600;
}

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

.footer-contact-2025 a:hover {
  opacity: 0.8;
}

/* Footer Right Column */
.footer-right-2025 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.newsletter-section-2025 h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0px 0px 6px 0px;
}

.newsletter-form-2025 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Mailchimp specific overrides for footer */
#mc_embed_signup {
  background: transparent !important;
  clear: none !important;
  font: inherit !important;
}

#mc_embed_signup form {
  padding: 0 !important;
  text-align: left !important;
}

#mc_embed_signup_scroll {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#mc_embed_signup .mc-field-group {
  padding: 0 !important;
  width: 100% !important;
  min-height: auto !important;
}

#mc_embed_signup .clear {
  clear: none !important;
}

.newsletter-inputs-2025 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.newsletter-inputs-2025 .mc-field-group:first-child {
  grid-column: 1 / -1;
}

.newsletter-form-2025 input,
.newsletter-input-2025 {
  padding: 12px !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
}

.newsletter-submit-2025 {
  background-color: #7A9B3D !important;
  color: white !important;
  border: none !important;
  padding: 12px 20px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: opacity 0.2s !important;
  align-self: flex-start !important;
  font-size: 14px !important;
  font-family: inherit !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.newsletter-submit-2025:hover {
  opacity: 0.9 !important;
}

/* Mailchimp response messages */
#mce-responses {
  margin-top: 10px;
}

#mce-error-response,
#mce-success-response {
  color: white;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 4px;
  margin: 5px 0;
}

#mce-error-response {
  background-color: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.5);
}

#mce-success-response {
  background-color: rgba(0, 255, 0, 0.2);
  border: 1px solid rgba(0, 255, 0, 0.5);
}

.social-section-2025 p {
  margin: 0;
  font-weight: 600;
  color: #83a72d;
}

.social-section-2025 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons-2025 {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-link-2025 img {
  width: 24px;
  height: 24px;
  transition: opacity 0.2s;
}

.social-link-2025:hover img {
  opacity: 0.8;
}

.footer-badges-2025 {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-badges-2025 .badge-2025 {
  height: 40px;
  width: auto;
}

/* Footer Gardens Strip */
.footer-gardens-strip-2025 {
  display: flex;
  width: 100%;
  background-color: transparent;
  min-height: 200px;
  border-top: 8px solid #7A9B3D;
}

/* Mobile footer gardens - hidden by default */
.footer-gardens-mobile-2025 {
  display: none;
  width: 100%;
}

.footer-garden-link-2025 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px;
  transition: opacity 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.footer-garden-link-2025:hover {
  opacity: 0.9;
}

.footer-garden-logo-2025 {
  width: auto;
  height: 200px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Garden specific background colors */
.footer-garden-link-2025.allerton-2025 {
  background-color: #722257;
}

.footer-garden-link-2025.kahanu-2025 {
  background-color: #01313C;
}

.footer-garden-link-2025.limahuli-2025 {
  background-color: var(--primaryntbggreenbg);
}

.footer-garden-link-2025.mcbryde-2025 {
  background-color: #ac3f28;
}

.footer-garden-link-2025.kampong-2025 {
  background-color: #6F2617;
}

/* Footer Bottom */
.footer-bottom-2025 {
  background-color: #7A9B3D;
  padding: 20px 0;
}

.footer-bottom-container-2025 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  font-size: 12px;
  color: var(--primaryntbggreenbg);
  font-weight: 500;
}

.footer-bottom-2025 p {
  margin: 5px 0;
}

.footer-bottom-2025 a {
  color: var(--primaryntbggreenbg);
  text-decoration: none;
}

.footer-bottom-2025 a:hover {
  opacity: 0.8;
}

/* =====================================
   RESPONSIVE STYLES
   ===================================== */

/* Medium screens - Gardens drop to third row */
@media (max-width: 1400px) and (min-width: 769px) {
  /* Hide inline gardens, show full-width gardens */
  .gardens-strip-inline {
    display: none !important;
  }
  
  .gardens-strip-full-width {
    display: flex !important;
  }
  
  /* Adjust garden logo size for medium screens */
  .gardens-strip-full-width .garden-link {
    padding: 20px 15px;
    min-height: 120px;
  }
  
  .gardens-strip-full-width .garden-logo {
    height: 120px;
    max-width: none;
  }
}

/* Smaller medium screens */
@media (max-width: 1200px) and (min-width: 769px) {
  .gardens-strip-full-width .garden-link {
    padding: 18px 12px;
    min-height: 110px;
  }
  
  .gardens-strip-full-width .garden-logo {
    height: 120px;
  }
}

/* Just above mobile breakpoint */
@media (max-width: 900px) and (min-width: 769px) {
  .gardens-strip-full-width .garden-link {
    padding: 15px 10px;
    min-height: 100px;
  }
  
  .gardens-strip-full-width .garden-logo {
    height: 100px;
  }
}

/* Desktop specific styles */
@media (min-width: 769px) {
  .mobile-nav-2025,
  .mobile-gardens-panel-2025,
  .mobile-menu-toggle-2025,
  .browse-gardens-toggle-2025,
  .mobile-only,
  .garden-color-strip-2025 {
    display: none !important;
  }
  
  .desktop-only {
    display: flex !important;
  }
}

/* Large screens - show inline gardens */
@media (min-width: 1401px) {
  .gardens-strip-inline {
    display: flex !important;
  }
  
  .gardens-strip-full-width {
    display: none !important;
  }
  
  /* Make header full width on large screens */
  .header-main-container {
    max-width: none;
    padding-left: 40px;
    padding-right: 0;
  }
  
  .header-left {
    padding-left: 0;
  }
  
  .gardens-strip-inline {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  /* Hide desktop elements on mobile */
  .header-2025-desktop-nav,
  .gardens-strip,
  .desktop-only {
    display: none !important;
  }
  
  /* Show mobile elements */
  .mobile-only {
    display: inline-block !important;
  }
  
  /* Hide Browse Gardens button wrapper on mobile - button is shown separately */
  .browse-gardens-toggle-2025.mobile-only {
    display: inline-block !important;
  }
  
  /* Top strip layout for mobile */
  .header-top-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding-right: 20px;
  }
  
  /* Browse Gardens button on mobile */
  .header-top-strip .browse-gardens-toggle-2025 {
    background: transparent !important;
    border: none !important;
    color: #065629 !important;
    font-weight: bold;
    font-size: 13px;
    padding: 0;
    cursor: pointer;
    white-space: nowrap;
    margin-left: auto;
  }
  
  /* Mobile header main area */
  .header-main-container {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }
  
  .header-left {
    flex: 1;
    padding: 0;
    display: flex;
    align-items: left;
  }
  
  .header-logo {
    margin-bottom: 0;
    flex: 1;
  }
  
  .header-logo .main-logo {
    height: 90px;
    max-width: 100%;
  }
  
  .header-divider {
    display: none;
  }
  
  /* Mobile Menu Toggle - on same line as logo */
  .mobile-menu-toggle-2025 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #98b53b;
    padding: 5px 0;
    cursor: pointer;
    gap: 3px;
    flex-shrink: 0;
  }
  
  .menu-text {
    font-weight: 500;
    font-size: 12px;
    color: #98b53b;
  }
  
  .hamburger-icon-2025 {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .hamburger-icon-2025 span {
    width: 29px;
    height: 4px;
    background-color: #98b53b;
    display: block;
    border-radius: 2px;
  }
  
  /* Garden Color Strip - Mobile Only */
  .garden-color-strip-2025 {
    display: flex;
    width: 100%;
    height: 10px;
  }
  
  .garden-color {
    flex: 1;
    height: 100%;
  }
  
  .garden-color.allerton-color {
    background-color: #c7579c;
  }
  
  .garden-color.kahanu-color {
    background-color: #1894b2;
  }
  
  .garden-color.limahuli-color {
    background-color: #2c9c47;
  }
  
  .garden-color.mcbryde-color {
    background-color: #f2aa1e;
  }
  
  .garden-color.kampong-color {
    background-color: #f47e39;
  }
  
  /* Show Browse Gardens button on mobile */
  .browse-gardens-toggle-2025 {
    display: block;
    background: none;
    border: none;
    color: var(--primaryntbggreenbg);
    font-weight: bold;
    font-size: 13px;
    padding: 6px 14px;
    cursor: pointer;
  }
  
  /* Top strip layout for mobile */
  .header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Mobile header main area */
  .header-main-container {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header-left {
    flex: 1;
    padding: 0;
  }
  
  .header-logo {
    margin-bottom: 0;
  }
  
 
  .header-divider {
    display: none;
  }
  
  /* Mobile Menu Toggle (Hamburger) */
  .mobile-menu-toggle-2025 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 2px solid #98b53b;
    color: #98b53b;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
  }
  
  .hamburger-icon-2025 {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  
  .hamburger-icon-2025 span {
    width: 20px;
    height: 2px;
    background-color: #98b53b;
    display: block;
  }
  
  /* Mobile Navigation Menu */
  .mobile-nav-2025 {
    display: none;
    background-color: white;
    width: 100%;
  }
  
  .mobile-nav-2025.is-open {
    display: block;
  }
  
  .header-2025-mobile-main-nav .header-2025-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .header-2025-mobile-main-nav .header-2025-mobile-menu li {
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .header-2025-mobile-main-nav .header-2025-mobile-menu a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 16px;
  }
  
  /* Mobile Gardens Panel */
  .mobile-gardens-panel-2025 {
    display: none;
    width: 100%;
  }
  
  .mobile-gardens-panel-2025.is-open {
    display: block;
  }
  
  .mobile-garden-item-2025 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .mobile-garden-item-2025.allerton {
    background-color: #722257;
  }
  
  .mobile-garden-item-2025.kahanu {
    background-color: #01313C;
  }
  
  .mobile-garden-item-2025.limahuli {
    background-color: var(--primaryntbggreenbg);
  }
  
  .mobile-garden-item-2025.mcbryde {
    background-color: #ac3f28;
  }
  
  .mobile-garden-item-2025.kampong {
    background-color: #6F2617;
  }
  
  .mobile-garden-logo-2025 {
    height: 60px;
    width: auto;
  }

  /* Footer Mobile Styles */
  .footer-container-2025 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-logo-2025 {
    justify-content: center;
  }
  
  .footer-main-logo-2025 {
    height: 400px;
  }
  
  .footer-sections-2025 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .newsletter-inputs-2025 {
    grid-template-columns: 1fr;
  }
  
  .footer-badges-2025 {
    justify-content: center;
  }
  
  .footer-garden-link-2025 {
    min-height: 140px;
    padding: 20px 15px;
  }
  
  .footer-garden-logo-2025 {
    height: 100px;
  }
  
  .footer-bottom-container-2025 {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 15px;
  }
  
  .footer-container-2025 {
    padding: 0 15px;
    text-align: center;
  }
  
  .footer-main-2025 {
    padding: 30px 0;
  }
  
  .footer-logo-2025 {
    justify-content: center;
  }
  
  .footer-main-logo-2025 {
    height: 300px;
    margin: 0 auto;
  }
  
  /* Center all footer sections on small mobile */
  .footer-middle-2025 {
    text-align: center;
  }
  
  .footer-section-2025 {
    text-align: center;
  }
  
  .footer-contact-2025 {
    text-align: center;
  }
  
  .footer-right-2025 {
    align-items: center;
  }
  
  .newsletter-section-2025 {
    text-align: center;
    width: 100%;
  }
  
  /* Tighten up newsletter form on small mobile */
  .newsletter-inputs-2025 {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .newsletter-form-2025 input,
  .newsletter-input-2025 {
    padding: 10px !important;
    font-size: 13px !important;
  }
  
  .newsletter-submit-2025 {
    padding: 10px 16px !important;
    font-size: 13px !important;
    width: 100%;
    align-self: stretch !important;
  }
  
  .social-section-2025 {
    justify-content: center;
  }
  
  /* Hide desktop footer gardens, show mobile version */
  .desktop-footer-gardens {
    display: none !important;
  }
  
  .mobile-footer-gardens {
    display: block !important;
  }
  
  .footer-garden-link-2025 {
    min-height: 120px;
    padding: 15px 10px;
  }
  
  .footer-garden-logo-2025 {
    height: 80px;
  }
  
  .footer-bottom-container-2025 {
    padding: 0 15px;
  }
  
  /* Garden Map Mobile Adjustments */
  .gm-map-label a {
    font-size: 13px !important; /* 4px smaller than 20px */
  }
  
  .gm-dot {
    width: 18px !important; /* 2px smaller than 20px */
    height: 18px !important;
    flex: 0 0 18px !important;
  }
  
  /* Adjust label positions for smaller screens */
  .gm-col--hawaii .gm-map-label.limahuli {
    top: 10% !important;
    left: -5% !important;
  }
  
  .gm-col--hawaii .gm-map-label.kahanu {
    top: 25% !important;
    right: 2% !important;
  }
  
  .gm-col--hawaii .gm-map-label.allerton {
    bottom: 26% !important;
    left: 3% !important;
  }
  
  .gm-col--hawaii .gm-map-label.mcbryde {
    bottom: 18% !important;
    left: 8% !important;
  }
  
  .gm-col--florida .gm-map-label.kampong {
    bottom: 15% !important;
    right: 17% !important;
  }
}

/* Garden Map Section Specific Styles */
/* Layout + Theme */
.garden-map-2025 {
  background: var(--primaryntbggreenbg);
  color: var(--gm-white);
  padding: 0;
  position: relative;
}

/* Color Bands at Top */
.gm-color-bands {
  display: flex;
  width: 100%;
  height: 14px;
}

.gm-band {
  flex: 1;
  height: 100%;
}

.gm-band--allerton {
  background-color: #c7579c;
}

.gm-band--kahanu {
  background-color: #1894b2;
}

.gm-band--limahuli {
  background-color: #2c9c47;
}

.gm-band--mcbryde {
  background-color: #f2aa1e;
}

.gm-band--kampong {
  background-color: #f47e39;
}

.garden-map-2025-inner {
  max-width: 1440px;     /* fixed total width on desktop */
  margin: 0 auto;
  padding: 32px 40px;       /* slight gutter inside 1600 */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-items: start;
}

/* Columns */
.gm-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Headline column */
.gm-title {
  margin: 92px 0 16px 0;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gm-text);
  font-size: clamp(28px, 3.4vw, 48px);
}
.gm-title span { display: block; }

/* Legend */
.gm-legend {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: grid;
  gap: 10px;
}
.gm-legend li {
  display: flex;
  align-items: center;
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--gm-white);
}

.gm-legend-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gm-white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.gm-legend-link:hover {
  opacity: 0.8;
}

/* Map cards */
.gm-subtitle {
  margin: 0 0 12px 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--gm-white);
}

.gm-map {
  width: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
}
.gm-map img { width: 100%; height: auto; display: block; }

/* Garden labels positioned on maps */
.gm-map-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gm-map-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.gm-map-label a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gm-white);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.gm-map-label a:hover {
  opacity: 0.8;
}

/* Position labels on Hawaii map */
.gm-col--hawaii .gm-map-label.limahuli {
  top: 13%;
  left: -3%;
}

.gm-col--hawaii .gm-map-label.kahanu {
  top: 27%;
  right: 4%;
}

.gm-col--hawaii .gm-map-label.allerton {
  bottom: 28%;
  left: 5%;
}

.gm-col--hawaii .gm-map-label.mcbryde {
  bottom: 20%;
  left: 10%;
}

/* Position label on Florida map */
.gm-col--florida .gm-map-label.kampong {
  bottom: 17%;
  right: 19%;
}

/* Labels under maps */
.gm-labels {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.gm-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 1.4vw, 18px);
}

.gm-label-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gm-white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.gm-label-link:hover {
  opacity: 0.8;
}

/* Dots (CSS-drawn so you might not need separate assets) */
.gm-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 20px;
}
.gm-dot--limahuli { background: var(--c-limahuli); }
.gm-dot--kahanu   { background: var(--c-kahanu); }
.gm-dot--allerton { background: var(--c-allerton); }
.gm-dot--mcbryde  { background: var(--c-mcbryde); }
.gm-dot--kampong  { background: var(--c-kampong); }

/* Responsive: stack on mobile & center align */
@media (max-width: 980px) {
  .garden-map-2025-inner {
    grid-template-columns: 1fr;
    max-width: 720px; /* keeps content nicely centered on tablets */
  }
  .gm-col { align-items: center; text-align: center; }
  .gm-legend, .gm-labels { justify-items: center; }
}
