/* =========================
   COLOUR SYSTEM
========================= */
:root {
  --black: #0a0a0a;
  --green: #6fcf97;
  --green-dark: #2f6b3c;
  --yellow: #f2c94c;
  --white: #ffffff;
  --grey: #bdbdbd;
}

/* =========================
   BASE RESET
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.container.narrow {
  max-width: 800px;
}

.section {
  padding: 90px 0;
}

.section.light {
  background: #111;
}

.section.dark {
  background: var(--black);
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--yellow);
  margin-top: 10px;
}

p {
  margin-bottom: 20px;
  color: var(--grey);
}

.tagline {
  font-size: 1.5rem;
  margin: 1rem 0;
}

/* =========================
   NAVIGATION
========================= */
.nav {
  background: var(--black);
  border-bottom: 1px solid #1f1f1f;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo img {
  width: 150px;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--grey);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--green);
}

/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('cover copy.jpg') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-content {
  max-width: 1000px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 14px 26px;
  background: var(--green);
  color: var(--black);
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(111, 207, 151, 0.35);
}

.btn.ghost {
  background: transparent;
  border: 2px solid var(--green);
  margin-left: 10px;
}

.btn.small {
  padding: 8px 16px;
  background: var(--yellow);
  color: #000;
}

.btn.full {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* =========================
   GRIDS
========================= */
.grid-4, .grid-3 {
  display: grid;
  gap: 30px;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* =========================
   CARDS & PROJECTS
========================= */
.card, .project {
  background: #141414;
  border: 1px solid #1f1f1f;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all 0.25s ease;
  text-align: center;
}

.project {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.project:hover {
  transform: scale(1.05);
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(111, 207, 151, 0.15), 0 25px 50px rgba(0, 0, 0, 0.7);
}

.project h3 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.project p {
  color: var(--grey);
  font-size: 1rem;
}

/* =========================
   ABOUT GRID
========================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.award-photo img {
  width: 100%;
  border-radius: 10px;
}

/* =========================
   CHECK LIST
========================= */
.checks li {
  list-style: none;
  margin-bottom: 12px;
  color: var(--grey);
  position: relative;
  padding-left: 24px;
}

.checks li::before {
  content: "✓";
  color: var(--green);
  position: absolute;
  left: 0;
}

/* =========================
   CONTACT FORM
========================= */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: none;
  background: #141414;
  color: var(--white);
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #000;
  padding: 30px 0;
  color: var(--grey);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--green);
}

/* =========================
   MODAL - LARGE & IMMERSIVE
========================= */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  background-color: #141414;
  padding: 60px 50px;
  width: 90%;
  max-width: 1400px;
  height: auto;
  max-height: 95vh;
  overflow-y: auto;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.9);
  position: relative;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--grey);
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: var(--green);
}

#modal-hero {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 50px;
}

.modal-content h3 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

#modal-blurb {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.modal-content h4 {
  color: var(--green);
  font-size: 1.6rem;
  margin: 50px 0 25px;
  text-align: center;
}

.modal-images {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  margin: 40px 0;
  padding-bottom: 20px;
  justify-content: center;
}

.modal-images img {
  width: 450px;
  min-width: 450px;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#modal-species-list.checks {
  columns: 2;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

#modal-species-list.checks li {
  margin-bottom: 16px;
  font-size: 1.1rem;
  break-inside: avoid;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .modal-content {
    padding: 50px 40px;
  }
  #modal-hero {
    height: 400px;
  }
  .modal-images img {
    width: 380px;
    min-width: 380px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--black);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 4rem;
    transition: right 0.4s ease;
    gap: 2rem;
  }
  
  .nav-links.active { right: 0; }
  
  .nav-links a { font-size: 1.5rem; }
  
  .about-grid { grid-template-columns: 1fr; }
  
  .hero h1 { font-size: 2.5rem; }
  
  .modal-content {
    padding: 40px 20px;
  }
  
  #modal-hero {
    height: 300px;
  }
  
  .modal-images img {
    width: 100%;
    min-width: 300px;
    height: 250px;
  }
  
  #modal-species-list.checks {
    columns: 1;
  }
  
  .modal-content h3 {
    font-size: 2rem;
  }
}

.ghoul{
	margin-left: 5%; 
}






--
/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  z-index: 1000;
  box-sizing: border-box;
}

header img {
  height: 50px;
}

/* ── Desktop Navigation ─────────────────────────────────────── */
nav,
.desktop-nav {
  flex: 1;
  text-align: center;
}

.desktop-nav ul,
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 40px;
}

.desktop-nav a,
nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.desktop-nav a:hover,
nav a:hover {
  color: #d4af37;
}

/* ── Hamburger Menu ─────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ── Mobile Navigation ──────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background: rgba(0,0,0,0.98);
  padding-top: 100px;
  transition: right 0.4s ease;
  z-index: 999;
  text-align: center;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-nav li {
  margin: 40px 0;
  width: 100%;
}

.mobile-nav a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 10px 20px;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a:hover {
  color: #d4af37;
}

.mobile-nav li:last-child a {
  border-bottom: none;
}

.mobile-nav.active {
  right: 0;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ── Responsive Switches ────────────────────────────────────── */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  header {
    padding: 20px 30px;
  }
}

@media (min-width: 901px) {
  .hamburger,
  .mobile-nav {
    display: none;
  }
}



/* Hamburger Menu Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger animation when menu is open */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
}

@media (min-width: 901px) {
  .hamburger {
    display: none;
  }
}

--
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;           /* keeps everything vertically centered */
  justify-content: space-between; /* logo left ←→ hamburger right */
  padding: 15px 25px;            /* slightly tighter padding looks better on mobile */
  z-index: 1000;
  box-sizing: border-box;
}

/* Make sure logo doesn't shrink or push things weirdly */
.logo-container,
header > a,
header > img {
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* Hamburger - final polished version */
.hamburger {
  display: none;                    /* hidden by default */
  flex-direction: column;
  justify-content: center;          /* better vertical centering of the bars */
  width: 32px;                      /* slightly bigger = easier to tap */
  height: 32px;                     /* square touch target */
  cursor: pointer;
  z-index: 1001;
  padding: 4px;                     /* extra touch area without visual change */
}

/* The three lines */
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: all 0.35s ease;
  margin: 3.5px 0;                  /* tighter spacing looks more premium */
}

/* When menu is open */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Show on mobile only */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;                 /* ← this is what makes it appear */
  }
  header {
    padding: 15px 20px;            /* tighter on small screens */
  }
}

@media (min-width: 901px) {
  .hamburger,
  .mobile-nav {
    display: none;
  }
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: white;
}

header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  z-index: 100;
}

header img {
  height: 50px;
}

nav {
  flex: 1;
  text-align: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 40px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #d4af37; /* gold hover */
}

section {
  padding: 140px 10%;
  min-height: 80vh;
}

.hero2 {
  background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('new-land.jpg') center/cover no-repeat;
  text-align: center;
  padding: 220px 10%;
}

.hero2 h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #FFD83C;
	font-style: italic; 
}

.hero2 p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.hero2 button {
  background: #007cc3;
  border: none;
  padding: 15px 35px;
  border-radius: 8px;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.hero2 button:hover {
/*  background: #17a44d;*/
	background: #2da4f4 ; 
}

.services2, .process2, .work2, .contact2 {
  text-align: left;
}

.services2 h2, .process2 h2, .work2 h2, .contact2 h2 {
  color: white;
  margin-bottom: 40px;
  font-size: 1.55rem;
}

.service-cards2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.card2 {
  background: #111;
  padding: 30px;
  border-radius: 15px;
  width: 260px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card2:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #1db95455;
}

.process-steps2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px; /* More spacing between elements */
  max-width: 900px;
  margin: 0 auto;
}

.step2 {
  background: #111;
  padding: 40px;
  border-left: 5px solid #d4af37;
  border-radius: 10px;
  width: 100%;
}

.work2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  text-align: left;
  padding: 140px 15%; /* More empty space on sides */
}

.work-text2 {
  flex: 1;
}

.work-text2 h2 {
  text-align: left;
}

.work-images2 {
  flex: 1;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.work-images2 img {
  width: 48%;
  border-radius: 10px;
}

.contact2 form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 400px;
  margin: 0 auto;
}

input, textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
}

button.submit2 {
  background: #d4af37;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button.submit2:hover {
  background: #1db954;
  color: #fff;
}

footer {
  text-align: center;
  padding: 30px;
  background: #111;
  color: #999;
}

.journey2{
	
	color: #FFD83C
}

--

/*
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f7f7f5;
      color: #1b1b1b;
    }
*/

/*
    header {
      padding: 60px 20px;
      text-align: center;
      background: #0f2f1f;
      color: white;
    }
*/

    header h1 {
      font-size: 2.8rem;
      margin-bottom: 10px;
      font-weight: 600;
    }

    header p {
      font-size: 1.2rem;
      opacity: 0.85;
    }

    .offer-banner2 {
      background: #d9e8d0;
      padding: 15px;
      text-align: center;
      font-size: 1.1rem;
      font-weight: 600;
      color: #0f2f1f;
    }

    .catalogue-section2 {
      padding: 50px 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .catalogue-section2 h2 {
      text-align: left;
      font-size: 1.55rem;
      margin-bottom: 30px;
      color: white;
		padding-bottom: 5%; 
    }

    .catalogue-grid2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
	padding-bottom: 2%; 
    }

    .plant-card2 {
      background: white;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

.plant-card2:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px #50C878;
}

    .plant-card2 img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
      background: #e6e6e6;
    }

    .plant-card2 h3 {
      margin: 15px 0 8px;
      color: #0f2f1f;
    }

    .plant-card2 p {
      font-size: 0.95rem;
      opacity: 0.9;
      margin-bottom: 15px;
    }

    .coming-soon2 {
      font-size: 0.9rem;
      font-weight: bold;
      color: #FD0E35;
      font-style: italic;
      margin-bottom: 10px;
    }

    .order-btn2 {
      padding: 12px;
      background: #007cc3;
      color: white;
      text-align: center;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.2s;
    }

    .order-btn2:hover {
      background: #2da4f4 ;
    }
.about-tree2{
	color: black; 
}

/* Hamburger Menu */
.hamburger2 {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 101;
	color: red; 
}

.hamburger2 span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-nav2 {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  padding-top: 100px;
  transition: right 0.4s ease;
  z-index: 100;
  text-align: center;
}

.mobile-nav2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav2 li {
  margin: 30px 0;
}

.mobile-nav2 a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  transition: color 0.3s;
}

.mobile-nav2 a:hover {
  color: #d4af37;
}

.mobile-nav2.active {
  right: 0;
}

.hamburger2.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger2.active span:nth-child(2) {
  opacity: 0;
}

.hamburger2.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 900px) {
  .desktop-nav2 {
    display: none;
  }

  .hamburger2 {
    display: flex;
  }

  header {
    padding: 20px 30px;
    justify-content: space-between;
  }
}

@media (min-width: 901px) {
  .mobile-nav2,
  .hamburger2 {
    display: none;
  }
}

/* Optional: larger CTA button */
.catalogue-cta2 .large2 {
  font-size: 1.2rem;
  padding: 15px 40px;
  margin-top: 20px;
  display: inline-block;
}
/*
    .timeline-list {
      max-width: 800px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }
*/

/*
    .timeline-list li {
      padding: 12px 0;
      font-size: 1.1rem;
      border-bottom: 1px solid #e3e3e3;
      color: #333;
    }
*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  z-index: 1000;
  box-sizing: border-box;
}

.logo-container2 {
  flex-shrink: 0;
}

header img {
  height: 50px;
}

/* Desktop Nav */
.desktop-nav2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 40px;
}

.desktop-nav2 a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.desktop-nav2 a:hover {
  color: #d4af37;
}

/* Hamburger */
.hamburger2 {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger2 span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-nav2 {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background: rgba(0,0,0,0.98);
  padding-top: 100px;
  transition: right 0.4s ease;
  z-index: 999;
  text-align: center;
}

.mobile-nav2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav2 li {
  margin: 30px 0;
}

.mobile-nav2 a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  transition: color 0.3s;
}

.mobile-nav2 a:hover {
  color: #d4af37;
}

.mobile-nav2.active2 {
  right: 0;
}

.hamburger2.active2 span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger2.active2 span:nth-child(2) {
  opacity: 0;
}

.hamburger2.active2 span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 900px) {
  .desktop-nav2 {
    display: none;
  }

  .hamburger2 {
    display: flex;
  }

  header {
    padding: 20px 30px;
  }
}

@media (min-width: 901px) {
  .hamburger2,
  .mobile-nav2 {
    display: none;
  }
}

/* Optional larger CTA button */
.catalogue-cta2 .large2 {
  font-size: 1.2rem;
  padding: 15px 40px;
  margin-top: 20px;
  display: inline-block;
}



/* Mobile Nav - Force Vertical Layout */
.mobile-nav2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: flex-start;
}

.mobile-nav2 li {
  margin: 40px 0 !important;  /* More generous vertical spacing */
  width: 100%;
}

.mobile-nav2 a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 1.6rem;         /* Slightly larger for easy tapping */
  font-weight: 600;
  padding: 10px 20px;
  transition: color 0.3s;
}

.mobile-nav2 a:hover {
  color: #d4af37;
}

--
.mobile-nav2 a {
  /* existing styles */
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav2 li:last-child a {
  border-bottom: none;
}

./* Add breathing room between CTA and plant catalogue grid */
.catalogue-cta2 {
  margin-bottom: 60px;  /* Main gap - adjust if you want more/less */
  text-align: center;
}

.catalogue-cta2 .large2 {
  font-size: 1.2rem;
  padding: 15px 40px;
  margin-top: 40px;
  display: inline-block;
}

/* Optional: extra spacing on mobile if it feels tight */
@media (max-width: 900px) {
  .catalogue-cta2 {
    margin-bottom: 50px;
  }
}

.padding-custom2{
	padding-bottom: 130px; 
	margin-bottom: 50px; 
}


/* CTA spacing */
.catalogue-cta2 {
  margin-bottom: 60px;
  text-align: center;
}

.catalogue-cta2 .large2 {
  font-size: 1.2rem;
  padding: 15px 40px;
  margin-top: 20px;
  display: inline-block;
}

@media (max-width: 900px) {
  .catalogue-cta2 {
    margin-bottom: 50px;
  }
}

/* Mobile Nav - Force clean vertical layout */
.mobile-nav2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: flex-start;
}

.mobile-nav2 li {
  margin: 40px 0 !important;
  width: 100%;
}

.mobile-nav2 a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 10px 20px;
  transition: color 0.3s;
}

.mobile-nav2 a:hover {
  color: #d4af37;
}

/* Contact info styling */
.contact-info2 {
  text-align: center;
  margin: 30px 0 40px;
  font-size: 1.1rem;
}

.contact-info2 p {
  margin: 12px 0;
}

.contact-info2 a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}

.contact-info2 a:hover {
  text-decoration: underline;
}

/* Footer contact links */
footer p {
  margin: 10px 0;
  font-size: 0.95rem;
  color: #aaa;
}

footer a {
  color: #d4af37;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}



#project-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.25s ease;
}

#project-modal.show {
  display: flex;
  opacity: 1;
}

.bam{
	padding-bottom: 2.5%; 
/*	margin-bottom: 5%; */
}

.special{
	padding-bottom: 0%; 
	margin-bottom: 0%; 
}


.logo{
	height: 70px; 
}

.space-add-on{
   height: 200px;
	width: 400px; 
  display: flex;
padding-left: 2%;
	padding-right: 2%; 
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
	background-color: black; 

 
}


.space-add-on:hover {
  transform: scale(1.05);
  border-color: green;
/*  box-shadow: 0 0 0 12px rgba(111, 207, 151, 0.15), 0 30px 50px rgba(0, 0, 0, 0.7);*/
	box-shadow: 0 0 0 2px #6fcf97, 0 30px 50px rgba(0, 0, 0, 0.7);
	border-radius: 7px; 
 
}

.space-add-on h3 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.space-add-on p {
  color: var(--grey);
  font-size: 1rem;
}

#space-add-on-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.25s ease;
}

#space-add-on-modal.show {
  display: flex;
  opacity: 1;
}

special-padding{
	padding-left: 5%; 
	margin-left: 5%; 
}

.herostorm {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('base-storm.jpg') center/cover no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--white);
}


.title{
	color: red; 
}

.paddingOfTwo{
	padding-top: 2%; 
}