body {
  margin-top: 20px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  font-family: arial;
  background: linear-gradient(to left, #ff6a00, #ffb347);
}


/*      ---     Start of Menu     ---     */

.menu-block {
  height: 80px;
  background: linear-gradient(90deg, rgba(224, 93, 0, 0.97) 0%, rgba(255, 170, 50, 0.97) 100%);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
  padding: 0 32px;
  justify-content: space-between;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.13);
}

.logo {
  width: 64px;
  transition: transform 0.18s;
}

.logo:hover {
  transform: scale(1.07) rotate(-2deg);
}

.menu-container {
  display: flex;
  gap: 8px;
}

.menu-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 48px;
  text-decoration: none;
  color: #fff;
}

.menu-container a:hover, .menu-container a:active {
  color: #d53d29;
}

/* Hide burger by default, show on mobile */
.burger-icon {
  display: none;
}

@media screen and (max-width: 853px) {
  .menu-block {
    position: relative;
    justify-content: center;
    align-items: center;
  }
  .burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 30px;
    cursor: pointer;
    position: absolute;
    left: 10%;
    z-index: 1100;
  }
  .burger {
    background: #fff;
    width: 26px;
    height: 3px;
    margin: 3px 0;
    border-radius: 2px;
    transition: background 0.18s;
  }
  .menu-container {
    display: none;
    flex-direction: column;
    width: auto;
    background: #f49f4b;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;
    padding: 0;
    text-align: left;
  }
  .menu-container a {
    justify-content: left;
    padding-left: 39px;
    padding-right: 39px;
  }
  .menu-container.responsive {
    display: flex;
  }
}


/*      ---     Intro Block     ---     */

.home-intro {
  background: #ddd;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: 'Segoe UI', sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 70%;
  margin: 64px auto;
  border-radius: 12px;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.intro-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 1;
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.3);
}

.intro-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  height: 100%;
  z-index: 1;
  padding: 20px 30px 20px 30px;
}

.intro-logo {
  width: 120px;
  margin-bottom: 16px;
  opacity: 0.95;
}

.intro-txt p {
  padding: 8px 16px;
  margin: 0;
}

.intro-txt p:first-child {
  font-weight: bold;
  font-size: 21px;
  color: #ffb347;
}

/* 📱 Responsive stacking for smaller screens */
@media (max-width: 1030px) {
  .home-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-logo {
    width: 100px;
  }

  .intro-txt p {
    padding: 16px;
  }
}



.home-nav-block {
  background-image: url("images/home_nav_bg.webp");
  background-size: cover;
  background-position: center;
  padding: 40px 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  justify-items: center;
  align-items: stretch;
  min-height: 300px;
}


.home-nav-block a {
  text-decoration: none;
  display: block;
  height: min-content;
}


.home-nav {
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.13), 0 1.5px 4px 0 rgba(213, 61, 41, 0.10);
  padding: 24px 20px 20px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.18s cubic-bezier(.4, 0, .2, 1), box-shadow 0.18s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  min-height: 260px;
}

.home-nav:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(213, 61, 41, 0.18), 0 2px 8px 0 rgba(0, 0, 0, 0.13);
}



.home-nav-bar {
  height: 6px;
  width: 48px;
  background-color: #d53d29;
  border-radius: 3px;
  margin-bottom: 18px;
  margin-left: 0;
}


.home-nav-title {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 20px;
  color: #d53d29;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  text-align: left;
}


@media screen and (max-width: 900px) {
  .home-nav-block {
    grid-template-columns: 1fr 1fr;
    gap: 19px;
    padding: 24px 4px;
  }
}

@media screen and (max-width: 600px) {
  .home-nav-block {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px 2px;
  }

  .home-nav {
    padding: 16px 10px 14px 10px;
    min-height: 180px;
  }
}

.firewood-section {
  background-color: #f5f2ec;
  color: #fff;
}

.firewood-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  width: 70%;
  margin: 64px auto;
  padding: 48px 32px;
  gap: 32px;
  border-radius: 12px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 800px) {
  .firewood-container {
    grid-template-columns: 1fr;
  }
}

.firewood-text {
  background: rgba(0, 0, 0, 0.7);
  padding: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

.firewood-text h2 {
  font-size: 40px;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

.firewood-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-button {
  background: linear-gradient(to right, #ff6a00, #ffb347);
  color: #000;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: box-shadow 0.3s ease;
}

.cta-button:hover {
  box-shadow: 0 0 10px #ffb347;
}

.firewood-video {
  display: flex;
  height: 100%;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
}

.firewood-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 600px) {
  .firewood-video video {
    max-height: none;
    width: 100%;
  }
}


.footer {
  background-color: #1a1a1a;
  color: #f0f0f0;
  padding: 32px 16px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-left: 50px;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer h3 {
  color: #ff6a00;
  margin-bottom: 16px;
  font-size: 19px;
}

.footer p,
.footer a {
  font-size: 15px;
  line-height: 1.6;
  color: #f0f0f0;
  text-decoration: none;
}

.footer a:hover {
  color: #ffcd70;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  margin-bottom: 8px;
}

.badge {
  margin-top: 16px;
  width: 120px;
  border-radius: 4px;
  background: #fff;
  padding: 8px;
}

.copyright {
  text-align: center;
  font-size: 13px;
  margin-top: 32px;
  border-top: 1px solid #333;
  padding-top: 16px;
}

.branding {
  font-size: 13px;
  color: #333;
  padding: 16px 0 8px 0;
  text-align: center;
}

.branding a {
  color: #00dade;
  text-decoration: none;
  font-weight: bold;
}

.branding a:hover {
  text-decoration: underline;
}