/* ==========================================================================
   Cursi Construction Inc. - Custom Styles (supplements Tailwind)
   ========================================================================== */

/* Custom colors available via Tailwind config in HTML head */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.2s;
}

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

  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #386656;
    flex-direction: column;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }

  header.nav-open .nav-links {
    display: flex !important;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
  }
}
