/*
Theme Name: Aris Organics
Author: Sameer
Version: 1.0
Description: Export-grade organic agro landing theme
*/

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --green: #6FBC32;
  --dark: #000;
  --light: #f8f8f8;
  --primary-text: #2E2B2B;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Urbanist", sans-serif;
  line-height: 1.6;
  color: var(--primary-text);
}

/* GLOBAL CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* CENTER TEXT */
.center {
  text-align: center;
}

section {
  padding: 80px 0;
}

h1, h2, h3 {
  font-weight: 700;
}

/* Typos */
.text-dark {
    color: var(--dark);
}

.main-heading {
    font-size: 64px !important;
    font-weight: 800 !important;
    line-height: 1.2;
}

.title {
    font-size: 40px !important;
    font-weight: 700 !important;
}

.sub-title {
  font-size: 24px !important;
  font-weight: 600 !important;
}

.caption-label {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.description-text {
    font-size: 18px !important;
    font-weight: 400 !important;
}

@media (max-width: 1024px) {
  .main-heading {
    font-size: 48px !important;
  }

  .title {
    font-size: 32px !important;
  }

  .sub-title {
    font-size: 22px !important;
  }

  .caption-label {
    font-size: 17px !important;
  }

  .description-text {
    font-size: 17px !important;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 34px !important;
  }

  .title {
    font-size: 28px !important;
  }

  .sub-title {
    font-size: 20px !important;
  }

  .caption-label {
    font-size: 16px !important;
  }

  .description-text {
    font-size: 16px !important;
  }
}



/* Typos */

/* helpers */
.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.mt-4 {
    margin-top: 16px;;
}

.mt-40 {
    margin-top: 40px;
}
/* helpers */

.btn {
  background: var(--green);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  height: 40px;
  gap: 10px;
}


/* HEADER */
/* ============================= */
/* HEADER RESPONSIVE FIX */
/* ============================= */

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo img {
  height: 68px;
}

/* Desktop Menu */
.main-nav {
  display: flex;
}

.main-nav .menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.main-nav .menu li a:hover {
  color: var(--green) !important;
}

.main-nav .menu li a {
  text-decoration: none;
  color: var(--primary-text);
  font-weight: 500;
  z-index: 2;
}


/* CTA */
.header-cta {
  display: block;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-text);
  margin: 4px 0;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 991px) {

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    border-top: 1px solid #eee;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav .menu {
    flex-direction: column;
    gap: 0;
  }

  .main-nav .menu li {
    border-bottom: 1px solid #eee;
  }

  .main-nav .menu li a {
    padding: 16px 20px;
    display: block;
  }

  .header-cta {
    display: none;
  }
}

/* CTA BUTTON */
.btn-primary {
  background: #6BBE45;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #5aa937;
}


/* HERO SECTION */

.hero {
  color: #fff;
  padding: 140px 0;
}

.hero-content {
  width: 100%;
}

.text-center {
    text-align: center;
}
/* CHECKLIST */
.checklist li {
  list-style: none;
  margin-bottom: 10px;
}

/* GRID 2 COLUMNS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* GRID 5 COLUMNS */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* CARD STYLE */
.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

/* SECTION LIGHT BACKGROUND */
.light {
  background-color: #F6F6F6;
}

/* RESPONSIVE MEDIA QUERIES */

/* Tablets / small screens */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .grid-5 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .header-container, .grid-2 img, .grid-5 .card {
    width: 100%;
  }
}

/* Mobile screens */
@media (max-width: 576px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-5 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}



/* Products */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image */
.product-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Content */
.product-content .title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-content .highlight {
  color: var(--green);
}

.product-subtitle {
  margin-bottom: 40px;
}

/* Feature cards */
.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  background: #fff;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}

.feature-card img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.feature-card h4 {
  margin: 0 0 4px;
}

.feature-card p {
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-features {
    /* grid-template-columns: 1fr; */
    gap: 10px;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .product-content .title {
    font-size: 30px;
  }
}









/* ============================= */
/* SOLUTION SECTION */
/* ============================= */

#solution {
  background: linear-gradient(180deg, #F6F6F6 0%, rgba(250, 250, 250, 0) 100%);
}

.solution-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.solution-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.solution-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

/* ============================= */
/* QUALITY SECTION */
/* ============================= */

.quality-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.quality-list {
  list-style: none;
  padding: 0;
}

.quality-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 18px;
}

.quality-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
  .solution-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .solution-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .solution-card {
    padding: 20px 10px;
  }
}
















/* ============================= */
/* FOOTER */
/* ============================= */

#site-footer {
  /* position: relative; */
  background:
    url("./assets/footer-bg.webp") center/cover no-repeat;
  color: #fff;
}


/* .footer-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(64, 102, 23, 0.35) 0%,
      rgba(26, 43, 9, 0.85) 100%
    );
  z-index: 0;
} */


.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 80px 20px;
}

/* Brand */
.footer-logo {
  max-width: 160px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 420px;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}

.footer-contact img {
  width: 18px;
  height: 18px;
}

/* Links */
.footer-links h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.footer-socials img {
  width: 18px;
  height: 18px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-socials img:hover {
  opacity: 1;
}

.footer-link {
  color: #ffffff !important;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}












/* ============================= */
/* TRADE DISCUSSION */
/* ============================= */

.trade-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.trade-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid #e6e6e6;
  text-align: left;
  transition: all 0.3s ease;
}

.trade-card:hover {
  border-color: var(--green);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transform: translateY(-6px);
}

.trade-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}

.trade-card h3 {
  margin-bottom: 12px;
}

.trade-card p {
  margin-bottom: 28px;
  color: #555;
}

/* CTA button inside card */
.trade-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  height: 40px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
  .trade-options {
    grid-template-columns: 1fr;
  }

  .trade-card {
    padding: 30px;
  }
}















/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  max-width: 620px;
}

.about-content .sub-title {
  font-weight: 500;
  color: #444;
}

/* Curved image */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0 0 0 260px;
  object-fit: cover;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    border-radius: 20px;
  }

  .about-image::before {
    display: none;
  }
}












/* ============================= */
/* SCROLL REVEAL ANIMATIONS */
/* ============================= */

/* Base hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: transform, opacity;
}

/* When visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slight delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Faster text animation */
.reveal-text {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

/* Image reveal (subtle) */
.reveal-image {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal-image.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal,
.reveal-text,
.reveal-image {
  backface-visibility: hidden;
}











/* =============== GIF PRELOADER =============== */
/* FULLSCREEN OVERLAY */
#site-preloader {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  pointer-events: all;

}

/* LOGO CONTAINER */
.preloader-box {
  position: relative;
  padding: 0px; /* MAX padding */
  overflow: hidden;
  border-radius: 10000000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* FILL EFFECT */
.preloader-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--green); /* brand color */
  animation: fillUp 1.8s linear forwards;
  z-index: 1;
}

/* LOGO */
.preloader-gif {
  position: relative;
  width: 140px;
  max-width: 70%;
  z-index: 2;
}

/* FILL ANIMATION */
@keyframes fillUp {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

/* EXIT */
#site-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
