/* 🌿 Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* 🌱 Header */
header {
  background-color: #4CAF50;
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  margin: 0.5rem 0 1rem;
  font-size: 1.2rem;
}

/* 🌐 Language Toggle */
#languageToggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background-color: white;
  border: 2px solid #4CAF50;
  color: #4CAF50;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#languageToggle:hover {
  background-color: #e6ffe6;
}

#languageToggle:focus {
  outline: 2px solid #81C784;
  outline-offset: 2px;
}

/* 🧱 Section Styles */
section {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: #4CAF50;
  margin-bottom: 1rem;
}

/* 📬 Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

input, textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button[type="submit"] {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #45a049;
}

button[type="submit"]:focus {
  outline: 2px solid #81C784;
  outline-offset: 2px;
}

/* 📧 Email CTA */
.cta {
  text-align: center;
  margin-top: 1rem;
}

#ctaText {
  margin-bottom: 1rem;
  font-weight: bold;
}

.emailBtn {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.emailBtn:hover {
  background-color: #45a049;
}

.emailBtn:focus {
  outline: 2px solid #81C784;
  outline-offset: 2px;
}

/* 📞 Call Button */
.callBtn {
  display: inline-block;
  background-color: #2e7d32;
  color: white;
  padding: 10px 16px;
  margin: 6px 0;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.callBtn:hover {
  background-color: #1b5e20;
}

/* 💳 Info Boxes */
.infoBox, .box-accent {
  background-color: white;
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 5px solid #4CAF50;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.infoBox h3 {
  margin-top: 1rem;
  color: #4CAF50;
}

.infoBox ul {
  list-style: none;
  padding-left: 0;
}

.infoBox li {
  margin-bottom: 0.5rem;
}

/* 🟢 Canvas Background */
canvas#backgroundCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* 📱 Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  #languageToggle {
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  section {
    padding: 1rem;
  }

  .emailBtn {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
  }

  .infoBox {
    padding: 1rem;
  }

  .popup-content {
    max-width: 95%;
    padding: 1.5rem;
  }

  .popup-title {
    font-size: 1.3rem;
  }

  .popup-text {
    font-size: 0.95rem;
  }

  .close-btn {
    font-size: 1.5rem;
    top: 8px;
    right: 12px;
  }
}

/* 🖤 Gradient Text */
.sub-gradient {
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(90deg, #000000, #333333, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
}

.sub-gradient i {
  margin-right: 6px;
  font-size: 1.2rem;
}

/* 🎁 Custom Box Styles */
.box-green {
  background: linear-gradient(135deg, #4CAF50, #81C784);
  color: #000000;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

/* 🖼️ Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

/* 🚛 Truck Gallery */
#gallery {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

#galleryTitle {
  color: #4CAF50;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* 🌿 Landscaping Gallery */
#landscapeGallery {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  background-color: #f0fff0;
  border-radius: 12px;
}

#landscapeGalleryTitle {
  color: #4CAF50;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* 🗑️ Junk Removal Gallery */
#junkGallery {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  background-color: #fff8f0;
  border-radius: 12px;
}

#junkGalleryTitle {
  color: #4CAF50;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* 🦶 Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #e8f5e9;
  font-size: 1rem;
}

/* 🌟 Popup Styles */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-content {
  position: relative;
  background: #fff;
  padding: 20px 30px;
 
#familyDesc {
  text-align: center;
}
/* 🌐 Top Navigation Styling */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  flex-direction: column;
}

.nav-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.instaBtn {
  background-color: #e1306c;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.instaBtn:hover {
  background-color: #c72c5d;
}
  
.insta-button {
  display: inline-block;
  background-color: #e1306c; /* Instagram pink */
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.insta-button:hover {
  background-color: #c72c5d;
  transform: translateY(-2px);
}
  
.brand-highlight {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #f0fdf4; /* Soft green tint */
  border-top: 1px solid #d1fae5;
}

.brand-graphic {
  max-width: 400px;
  width: 100%;
  height: auto;
}

