/* @import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/* Base style resets */
body {
  font-family: "Noto Sans", sans-serif;
  /* font-family: "Lora", Georgia, serif; */
  color: #1A1A1A;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Sans", sans-serif;
  /* font-family: "Public Sans", sans-serif; */
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #00371A;
}

/* Custom UI Components translated from @apply to standard CSS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  color: #ffffff;
  background-color: #00371A;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #1F5C3A;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  color: #00371A;
  background-color: #E7EFE9;
  border: 1px solid rgba(0, 55, 26, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.btn-secondary:hover {
  background-color: rgba(231, 239, 233, 0.8);
  transform: translateY(-2px);
}
.btn-secondary:active {
  transform: translateY(0);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  color: #ffffff;
  background-color: #B08A3E;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}
.btn-accent:hover {
  background-color: #977531;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-accent:active {
  transform: translateY(0);
}

.card-hover {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  border-color: rgba(0, 55, 26, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-link {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5B5B5B;
  transition: color 0.2s ease-in-out;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
}
.nav-link:hover {
  color: #00371A;
  border-color: #1F5C3A;
}

.nav-link-active {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #00371A;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #00371A;
}

/* Glassmorphism Background */
.bg-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Sprout Motif SVG wiggle animation */
.sprout-spin:hover .sprout-path {
  transform-origin: center;
  animation: sprout-wiggle 1.2s ease-in-out infinite;
}

@keyframes sprout-wiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-5deg) scale(1.05); }
  75% { transform: rotate(5deg) scale(1.05); }
}

html {
  scroll-behavior: smooth;
}
