/* Custom styles for 7A Farms */
/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid #d4912a;
  outline-offset: 2px;
}

/* Transition defaults */
a, button {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* Form input focus */
input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: none;
}

/* Prose styling for content pages */
.prose h2 {
  margin-top: 2rem;
}

.prose p + p {
  margin-top: 1rem;
}

.prose ul {
  margin-top: 0.5rem;
}

/* Mobile menu animation */
#mobile-menu {
  transition: max-height 0.3s ease;
}

/* Loading spinner animation (used in contact form) */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}

/* Grain texture overlay */
.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Hero entrance animation */
.hero-reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-up 0.7s ease forwards;
}

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Scroll reveal animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-track {
  animation: marquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Selection color */
::selection {
  background-color: #d4912a;
  color: #1b1b1b;
}

/*# sourceMappingURL=main.css.map */