body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #0b0f14;
  color: #e5e7eb;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  /* Slightly lighter overlay so text breathes */
  background: linear-gradient(rgba(5,10,15,0.70), rgba(5,10,15,0.70)), url('ditchwitch.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34,197,94,0.15), transparent 60%);
  animation: pulseGlow 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
  text-align: center;
  animation: fadeInUp 1.4s ease forwards;
  color: #f9fafb; /* Forces hero text to stay bright */
}

.hero-logo {
  max-width: 260px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 25px rgba(34,197,94,0.45));
  animation: logoFloat 6s ease-in-out infinite;
}

/* MAIN COMPANY NAME */
h1 {
  font-size: 3rem;
  margin: 0.5rem 0 1rem;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0,0,0,0.85); /* Makes text readable over image */
  font-weight: 700;
}

.hero-about {
  font-size: 1.35rem;
  line-height: 1.75;
  margin: 1.5rem auto 2.5rem;
  color: #e5e7eb;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #022c22;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(34,197,94,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(34,197,94,0.55);
}

/* CONTACT SECTION */
.contact {
  background: #020617;
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(34,197,94,0.2);
}

.contact h2 {
  margin-bottom: 1rem;
  color: #22c55e; /* Makes header stand out */
  font-size: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.contact a {
  color: #22c55e;
  font-size: 1.2rem;
  text-decoration: none;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* MOBILE */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  .hero-about { font-size: 1.1rem; }
  .hero-logo { max-width: 200px; }
}
