/* Color Palette */
:root {
  --primary-green: #2d5a27;
  --bright-green: #4caf50;
  --soft-white: #f9f9f9;
  --dark-text: #222;
  --muted-text: #555;
  --gold: #d4af37;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--soft-white);
  color: var(--dark-text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Hero Section --- */
.about-hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
 position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  /* Simple dark overlay, 50% opacity */
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

.hero-content-clean {
  text-align: center;
  color: #ffffff;
}

.hero-label {
  display: block;
  font-family: 'Jost', sans-serif;
  letter-spacing: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-title {
  font-family: 'Prosto One', cursive;
  font-size: 4rem;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-title .highlight {
  color: #4caf50; /* Green that matches the crop field */
}

.hero-line {
  width: 50px;
  height: 3px;
  background: #ffffff;
  margin: 15px auto 0;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* For Mobile screens */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .about-hero { height: 50vh; }
  .hero-overlay { padding-top: 40px; }
}
/* --- Intro Section --- */
.intro-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7fbf6 0%, #ffffff 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.sub-title {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #5fa44a;
  margin-bottom: 16px;
}

.intro-content h2 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f3d1b;
  margin-bottom: 24px;
}

.intro-content h2 span {
  color: #5fa44a;
}

.intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.intro-highlight {
  font-size: 16px;
  font-weight: 600;
  color: #2f5e2b;
}

/* RIGHT STATS */
.intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat-card h3 {
  font-size: 36px;
  color: #5fa44a;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .intro-content h2 {
    font-size: 32px;
  }

  .intro-stats {
    grid-template-columns: 1fr;
  }
}

/* --- Values Section --- */
.values-section {
  padding: 100px 0;
  background: #f9fbf8;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f3d1b;
}

.section-subtext {
  font-size: 16px;
  color: #666;
  margin: 12px 0 20px;
}

.header-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #5fa44a, #d6b44c);
  display: inline-block;
  border-radius: 10px;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.value-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1f3d1b;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ICON BOX */
.icon-box {
  width: 72px;
  height: 72px;
  margin: 0 auto 25px;
  border-radius: 50%;
  position: relative;
  background: #eef5ec;
}

.icon-box span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  border-radius: 4px;
}

/* ICON STYLES */
.icon-box.quality span {
  border: 3px solid #5fa44a;
  transform: rotate(45deg);
}

.icon-box.sustainability span {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 24px solid #5fa44a;
}

.icon-box.farmer span {
  border-radius: 50%;
  background: #5fa44a;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 30px;
  }
}


/* --- Vision Mission Section --- */
.vision-mission-section {
  padding: 100px 0;
   background: #f9fbf8;
}
.vm-card {
  background: #5B3A22;
  padding: 40px;
  border-radius: 18px;
  color: white;
  
  transition: .3s ease;
}

.vm-card:hover{
  transform: translateY(-8px);
}

.vm-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.vm-card h3 {
  font-family: 'Prosto One', cursive;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--bright-green);
}

.vm-card p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* --- Animations --- */
.fade-up {
  animation: fadeUp 1s ease forwards;
}
.fade-up-delay {
  animation: fadeUp 1s ease 0.3s forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text-container h1 { font-size: 2.2rem; }
  .vm-container { grid-template-columns: 1fr; text-align: center; }
  .about-hero { height: 400px; }
}

/* ===== OUR APPROACHES ===== */
.rinati-approach{
  padding:100px 20px;
  background:#f8fbf7;
  text-align:center;
}

.approach-title{
  font-size:40px;
  margin-bottom:60px;
  color:#1B5E20;
  font-family:"Prosto One";
  letter-spacing:2px;
}

.approach-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
  max-width:1200px;
  margin:auto;
}
/* ===== OUR APPROACHES ===== */

.approach-card{
  background:#fff;
  padding:40px 30px;
  border-radius:22px;
  text-align:left;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:all .4s ease;
  position:relative;
  overflow:hidden;
}

/* subtle top highlight bar */
.approach-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:4px;
  background:linear-gradient(90deg,#7BAF42,#2d5a27);
  transition:width .4s ease;
}

/* hover effect */
.approach-card:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 35px 70px rgba(0,0,0,0.18);
}

/* animate highlight bar */
.approach-card:hover::before{
  width:100%;
}
.approach-card h3{
  color:#2d5a27;
  margin-bottom:14px;
  font-family:"Prosto One";
  transition:color .3s ease;
}

.approach-card:hover h3{
  color:#7BAF42;
}

.approach-card p{
  color:#555;
  line-height:1.8;
  font-size:15px;
  transition:color .3s ease;
}

.approach-card:hover p{
  color:#333;
}

@media(max-width:900px){
  .approach-grid{
    grid-template-columns:1fr;
  }
}
