html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
body {
    min-height: 100vh;
    min-width: 100vw;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f5f5f5;
    box-sizing: border-box;
}
/* ================= HEADER/NAV ================= */
/* ========= DESKTOP NAVBAR ========= */
header {
  background: #fff;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px 0 0;  /* No vertical padding, only space on ends */
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  box-sizing: border-box;
  z-index: 20;
  min-height: 160px; /* Forces header to be as tall as logo, no extra space */
  border-bottom: 3px solid #F1CE3B
; /* or adjust thickness/color as desired */
}

.logo {
  margin-left: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: 160px;   /* Your specified "big" logo */
  width: auto;
  display: block;
  margin-left: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  line-height: 160px; /* Vertically center links to logo in nav */
  display: inline-block;
  padding: 0; /* No vertical padding—tight to logo */
  transition: color 0.15s;
  background: none;
}

/* Active/hover underline effect */
.nav-links a.active,
.nav-links a:hover {
  color: var(--purple);
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  margin: 0 auto;
  background: var(--purple);
  border-radius: 2px;
  margin-top: 2px;
}

/* Hamburger (hidden by default, shown on mobile/tablet) */
.nav-toggle {
  display: none;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: auto;
  margin-right: 28px;
  color: var(--dark);
  background: none;
  border: none;
}

/* ================= TABLET BREAKPOINT =============== */
@media (max-width: 900px) {
  header {
    min-height: 68px;           /* Shrink nav bar for tablet */
    padding: 0 5vw 0 0;
    position: fixed;
    z-index: 999;
  }
  .logo img {
    height: 60px;              /* Shrink logo for tablet */
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 74vw;
    max-width: 320px;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 8px 18px rgba(60,40,80,0.10);
    padding: 24px 0 10px 0;
    z-index: 1001;
    font-size: 1rem;
    gap: 18px;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links a {
    font-size: 17px;
    line-height: 1.4;
    padding: 8px 0;
    display: block;
  }
  .nav-toggle {
    display: block;
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 1002;
    font-size: 2.1rem;
  }
}

/* ================ MOBILE BREAKPOINT ================ */
@media (max-width: 600px) {
  header {
    min-height: 42px; 
    padding: 0 2.5vw 0 0 !important;
  }
  .logo img {
    height: 32px;
  }
  .nav-links {
    width: 94vw;
    right: 0;
    max-width: 98vw;
    border-radius: 0 0 8px 8px;
    font-size: 0.98rem;
    padding-top: 12px;
    gap: 11px;
  }
  .nav-links a {
    font-size: 16px;
    line-height: 1.2;
    padding: 7px 0;
  }
  .nav-toggle {
    top: 7px;
    right: 9px;
    font-size: 1.7rem;
  }
}

/* OPTIONAL: Slight tweak to ensure nav links fit perfectly alongside logo at all widths */
@media (min-width: 901px) {
  .nav-links a {
    line-height: 160px;
  }
}
@media (max-width: 900px) and (min-width: 601px) {
  .nav-links a {
    line-height: 60px;
  }
}


/* Full width container */
.nature-container {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    background: #fff;
    box-sizing: border-box;
    padding: 0;
}

/* Header row: Logo | Bar | Headline */
.header-row {
    display: flex;
    align-items: center;
    padding: 64px 4vw 32px 4vw; /* top, right, bottom, left */
    gap: 26px;
}

.logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.yellow-bar {
    height: 90px;
    width: 11px;
    background: #FFD600;
    margin-right: 18px;
}

.headline {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.save-the {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #222;
    font-size: 55px;
    font-weight: bold;
    text-transform: lowercase;
    margin-right: 4px;
    vertical-align: bottom;
}

.nature-outline {
    font-family: 'Bebas Neue', Arial, sans-serif;
    color: transparent;
    font-size: 67px;
    letter-spacing: 2px;
    -webkit-text-stroke: 1px #7c50b3;
    text-stroke: 2px #7c50b3;
    text-transform: uppercase;
}

/* Main content */
.content {
    padding-left: 4vw;
    padding-top: 20px;
    /* max-width can be set if you like */
}

.lorem-text {
    font-size: 15px;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #222;
    line-height: 1.7;
    letter-spacing: 0.04em;
    font-weight: 400;
}

@media (max-width: 900px) {
    .header-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 4vw 16px 4vw;
        gap: 14px;
    }
    .yellow-bar, .logo-image {
        height: 64px;
    }
    .nature-outline {
        font-size: 36px;
    }
}
.headline {
    display: flex;
    align-items: baseline;  /* <--- change this from flex-end */
    gap: 12px;
}
.program-row {
    display: flex;
    align-items: center;
    margin-top: 36px;   /* adjust as needed */
    gap: 22px;          /* spacing between image/text */
}

.program-image {
    width: 80px;        /* adjust size as needed */
    height: 80px;
    object-fit: cover;
    border-radius: 8px; /* optional for rounded corners */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* optional */
}

.program-text {
    font-size: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #222;
    font-weight: 500;
}
/* Header and logo from previous code - keep as is */

.big-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 3.2rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-left: 4vw;
    margin-bottom: 32px;
    margin-top: 0;
    line-height: 1.08;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.big-title-solid {
    color: #111;
    /* Thicken using stroke and shadow if desired: */
    -webkit-text-stroke: 1.1px #111;
    text-stroke: 1.1px #111;
    text-shadow: 0.5px 0 #111, 0 0.5px #111, -0.5px 0 #111, 0 -0.5px #111;
}

.big-title-outline {
    color: transparent;
    -webkit-text-stroke: 1px #111;  /* This matches the purple in your image */
    text-stroke: 2px #111;
    /* Remove text-shadow and fill */
    margin-left: 12px;
}
/* Layout for image and program text */
.program-row {
    display: flex;
    align-items: center;
    margin-top: 32px;
    gap: 32px;
}

.program-image {
    width: auto;
    height: 400px;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.09);
}

.program-text {
    max-width: 450px;   /* Adjust this number for your page width */
    text-align: justify;  /* Optional: Justifies the text */
    font-size: 1rem;
    color: #222;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .big-title {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }
    .program-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .program-image {
        width: 100px;
        height: 100px;
    }
    .program-text {
        font-size: 1rem;
    }
}
.crest-logo-bg {
    position: absolute;
    top: 325px;     /* Adjust based on header height; tweak as needed */
    right: 0;
    width: 370px;   /* Adjust as needed for your design */
    opacity: 0.13;  /* Faintness; tweak for desired effect */
    pointer-events: none; /* Don't block mouse */
    user-select: none;
    z-index: 1;     /* Ensure it's below all text/images, except background */
}

/* Make sure the container is positioned for absolute children */
.nature-container {
    position: relative;
    overflow-x: hidden;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 20;
  background: #fff;
  /* ...rest of your styles... */
}

/* Add space below the fixed header */
.page-header-space {
  height: 160px; /* Should match your header's height on desktop */
}

@media (max-width: 900px) {
  .page-header-space {
    height: 68px; /* match your header's height at this breakpoint */
  }
}
@media (max-width: 600px) {
  .page-header-space {
    height: 42px;
  }
}
.leaf-top-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    width: 110px;    /* Adjust size as needed */
    /* Optionally add a little spacing */
    margin-top: 16px;  /* Pushes leaves further down; tweak as needed */
    margin-right: 24px;
    pointer-events: none;
    user-select: none;
}
.leaf-top-right {
    position: absolute;
    top: 160px;         /* Exactly the header height on desktop! */
    right: 24px;
    z-index: 10;
    width: 400px;
    height: auto;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 900px) {
  .leaf-top-right {
      top: 68px;       /* header height on tablet */
      width: 70px;
  }
}
@media (max-width: 600px) {
  .leaf-top-right {
      top: 42px;       /* Mobile header height */
      width: 50px;
  }
}