.hero-bg {
  background: linear-gradient(135deg, rgba(6,95,70,0.8) 0%, rgba(4,120,87,0.8) 50%, rgba(5,150,105,0.8) 100%), 
  url('/assets/solar-panels-hero.webp');
  background-size: cover;
  background-position: center;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Menu Hamburger Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #374151;
  margin: 3px 0;
  transition: 0.3s;
}

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background-color: white;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  transition: left 0.3s ease;
  z-index: 1000;
  padding-top: 80px;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu a {
  display: block;
  padding: 15px 20px;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.3s;
}

.mobile-menu a:hover {
  background-color: #f3f4f6;
  color: #059669;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
}

.mobile-overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}
