/* ===================================
   AGRO INDICO WEBSITE - MAIN STYLES
   =================================== */

/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-off-white);
}

/* Remove default list styles */
ul, ol {
  list-style: none;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
  color: var(--color-charcoal);
}

h1 { 
  font-size: var(--font-size-h1);
  letter-spacing: var(--letter-spacing-tight);
}

h2 { 
  font-size: var(--font-size-h2);
  letter-spacing: var(--letter-spacing-tight);
}

h3 { 
  font-size: var(--font-size-h3);
}

h4 { 
  font-size: var(--font-size-h4);
}

p {
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-normal);
  max-width: var(--max-width-text);
}

p.lead {
  font-size: 1.25rem;
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-relaxed);
}

strong, b {
  font-weight: var(--font-weight-bold);
}

em, i {
  font-style: italic;
}

small {
  font-size: var(--font-size-small);
}

/* Links */
a {
  color: var(--color-dark-green);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-forest-green);
}

a:focus-visible {
  outline: 2px solid var(--color-dark-green);
  outline-offset: 2px;
  border-radius: var(--radius-small);
}

/* Selection */
::selection {
  background-color: var(--color-light-green);
  color: var(--color-charcoal);
}

/* Focus States */
*:focus-visible {
  outline: 2px solid var(--color-dark-green);
  outline-offset: 2px;
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
