/* agri-inputs/css/style.css */

.agri-page {
  font-family: 'Inter', sans-serif;
  background-color: #F5F0E8;
}

.agri-page h1,
.agri-page h2,
.agri-page h3,
.agri-page h4 {
  font-family: 'Playfair Display', serif;
}

/* Reveal on scroll */
.agri-page .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.agri-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Input card hover */
.agri-page .input-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
}

.agri-page .input-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(27, 67, 50, 0.15);
  border-color: #C9A84C;
}

/* Gold Lines */
.agri-page .gold-line {
  width: 48px;
  height: 3px;
  background-color: #C9A84C;
  margin: 12px auto 0;
}

.agri-page .gold-line-left {
  width: 48px;
  height: 3px;
  background-color: #C9A84C;
  margin: 12px 0 0;
}
html[dir="rtl"] .agri-page .gold-line-left {
  margin: 12px 0 0; 
  /* Left aligned in RTL shouldn't be strictly 'left' but 'start' */
  margin-inline-start: 0;
  margin-inline-end: auto;
}

/* Tabs */
.agri-page .tab-btn {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.agri-page .tab-btn.active {
  background-color: #1B4332;
  color: #fff;
}

.agri-page .tab-content {
  display: none;
}

.agri-page .tab-content.active {
  display: block;
}
