body {
  overflow-x: hidden;
}

.banner {
  position: relative; /* or just remove 'position: fixed' entirely */
  width: 100%;
  background-color: #092b0b;
  z-index: 999; /* optional, can remove if not overlapping anything */
}

.banner-items {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  max-width: 1800px;
  margin: 0 auto;
  height: 45px;
}

.banner-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.banner-left,
.banner-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-left {
  justify-content: flex-start;
}

.banner-right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.item-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon {
  width: 18px;
  height: 18px;
}

.item {
  position: relative;
  text-decoration: none;
  color: white;
  font-size: 16px;

  transition: color 0.3s ease;
  letter-spacing: 1px;
  display: inline-block;
}

.item:hover {
  color: #ffcccc;
  cursor: pointer;
}

/* Underline hover animation */
.item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: white;
  transform: translateX(-50%);
  transition: width 0.1s ease-out;
}

.item:hover::after {
  width: 100%;
}
.item.no-underline::after {
  display: none;
}
.item.no-underline:hover {
  color: white; /* or whatever the default is */
  cursor: default;
}

.firewood-cta {
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  background-color: #ffffff33;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease;
  margin-right: 50px;
  letter-spacing: 0.5px;
}

.firewood-cta:hover {
  background-color: #7fc70be8;
  color: black;
}

.navbar {
  position: fixed;
  top: 45px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s ease-in-out;
}

.navbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

/* Center the nav-links absolutely */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
  list-style: none;
  padding: 0px;
  padding-right: 30px;
}

.logo {
  position: absolute;
  left: 50px;
}

.navbar.scrolled {
  top: 0;
  padding: 15px 0;
  background-color: rgba(0, 0, 0, 0.975);
}

.logo img {
  height: 115px;
  transition: height 0.4s ease;
}
.navbar.scrolled .logo img {
  height: 80px;
  margin-top: 3px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  font-weight: 600;
}

.nav-links li a:hover {
  color: #f0a500;
}

.phone-email {
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  color: white;
  align-self: flex-end;
  margin-left: auto;
  margin-right: 100px;
}
.email-main,
.phone-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 25px;
}

.email-main a,
.phone-main a {
  text-decoration: none;
  color: white;
  transition: color 0.4s ease;
}

.email-main:hover a,
.phone-main:hover a {
  color: #f0a500;
}

#email-icon-nav {
  padding: 5px;
  padding-bottom: 2px;
}
#phone-icon-nav {
  padding: 5px;
}

.phone-email.visible {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 1.8s ease;
}

.services-heading {
  height: 250px;
  background: conic-gradient(
    from 135deg at 36% 50%,
    #0a3d0a 0deg 180deg,
    #000000 180deg 360deg
  );
  width: 100%;
}

.services-heading-text {
  font-size: 80px;
  color: white;
  text-transform: uppercase;
  font-style: italic;
  display: flex;
  align-items: end;
  height: 100%;
}
.mobile-navbar,
.mobile-menu-overlay {
  display: none;
}

/* Prevent background scroll when menu open */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 850px) {
  body {
    padding-top: 65px;
  }
  .services-heading {
    display: none;
  }
  .banner {
    display: none;
  }
  .navbar {
    display: none;
  }
  .mobile-navbar {
    display: flex;
    background: #070707;
    padding: 12px 16px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    border-bottom: 1px solid rgb(80, 80, 80);
  }

  .mobile-navbar-inner {
    display: flex;
    align-items: center;
    width: 100%;
  }

  /* Hamburger left */
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }
  .menu-toggle span {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  /* Logo right */
  .mobile-logo {
    margin-right: auto;
    display: inline-flex;
  }
  .mobile-logo img {
    height: 55px;
    display: block;
  }

  /* Overlay that reveals via circular clip-path from top-right */
  .mobile-menu-overlay {
    display: block; /* visible in DOM but visually hidden until opened */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 1);
    z-index: 4000;

    /* Key part: start as a tiny circle at top-right (100% 0) */
    clip-path: circle(0 at 100% 0);
    opacity: 0;

    /* Smooth reveal */
    transition: clip-path 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.6s ease-out;
  }
  .mobile-menu-overlay.open {
    /* Grow to cover entire viewport */
    clip-path: circle(150% at 100% 0);
    opacity: 1;
  }

  /* Close (X) fixed at top-right */
  .close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 36px;
    line-height: 1;
    color: #fff;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 2;
  }

  /* Centered content */
  .mobile-menu-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* start hidden; will animate in after overlay begins */
    pointer-events: none; /* re-enabled when open */
  }

  .mobile-menu-overlay.open .mobile-menu-content {
    pointer-events: auto;
  }

  .mobile-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-menu-links li {
    margin: 14px 0;
  }

  .mobile-menu-links a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.25s ease;
    opacity: 0;
    transform: translateY(8px);
  }
  .mobile-menu-links a:hover {
    color: #f0a500;
  }

  /* Contact block below links */
  .mobile-contact {
    margin-top: 28px;
  }
  .contact-link {
    display: block;
    margin: 8px 0;
    color: #7fc70b; /* green */
    text-decoration: none;
    font-size: 18px;
  }
  .mobile-contact .contact-link:hover {
    text-decoration: underline;
  }

  .mobile-contact p {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
    gap: 5px;
    opacity: 0;
    transform: translateY(8px);
  }

  /* Staggered fade-up once overlay starts expanding */
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-menu-overlay.open .mobile-menu-links li:nth-child(1) a {
    animation: fadeUp 0.45s ease-out 0.2s forwards;
  }
  .mobile-menu-overlay.open .mobile-menu-links li:nth-child(2) a {
    animation: fadeUp 0.45s ease-out 0.32s forwards;
  }
  .mobile-menu-overlay.open .mobile-menu-links li:nth-child(3) a {
    animation: fadeUp 0.45s ease-out 0.44s forwards;
  }
  .mobile-menu-overlay.open .mobile-menu-links li:nth-child(4) a {
    animation: fadeUp 0.45s ease-out 0.56s forwards;
  }
  .mobile-menu-overlay.open .mobile-contact p:nth-child(1) {
    animation: fadeUp 0.45s ease-out 0.74s forwards;
  }
  .mobile-menu-overlay.open .mobile-contact p:nth-child(2) {
    animation: fadeUp 0.45s ease-out 0.86s forwards;
  }
  body {
    overflow-x: hidden;
  }
  .service-title {
    font-size: 46px;
    margin-bottom: 30px;
  }
  .service-content {
    margin-top: 0px;
  }
}
@media (max-width: 390px) {
  .service-title {
    font-size: 40px;
  }
}
