
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Poppins', sans-serif;
}

/* Hide scrollbars but keep scrolling */
body::-webkit-scrollbar, *::-webkit-scrollbar { display: none; }
body, * { -ms-overflow-style: none; scrollbar-width: none; }


#mobile-nav.hidden {
    display: none;
}

#mobile-nav {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8); /* Light overlay */
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
}

#mobile-nav.open { opacity: 1; pointer-events: auto; }

/* Make burger visible also on tablets (>=768px) even if Tailwind added md:hidden */
@media (min-width: 768px) {
  #burger-menu { display: inline-flex !important; }
}

/* Prevent content scroll under the overlay */
body.nav-open { overflow: hidden; }

/* Unique visual utilities available to the generator */

.gradient-text-brand {
  background: linear-gradient(135deg, #166534, #15803d, #22c55e); /* shades of green */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-bg {
  background-color: #14532d; /* dark green fallback */
  background-image:
    linear-gradient(rgba(255,255,255,.05) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,.05) 2px, transparent 2px),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position:-2px -2px, -2px -2px, -1px -1px, -1px -1px;
}

.shine {
  position: relative;
  overflow: hidden;
}
.shine::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.25), transparent 60%);
  transform: rotate(25deg) translateY(-50%);
  transition: transform 0.6s ease;
}
.shine:hover::after {
  transform: rotate(25deg) translateY(100%);
}

.float {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
