@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  /* Colors */
  --primary-green: #2e7d32;
  --dark-green: #1b5e20;
  --light-green: #e8f5e9;
  --white: #ffffff;
  --bg-gray: #f8f9fa;
  --heading-primary: var(--primary-green);
  --heading-secondary: var(--dark-green);
  --paragraph-color: #666666;
  --border-color: #e5e7eb;

  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Spacing & Layout */
  --spacing-section: 100px;
  --container-width: 1320px;

  /* Border Radius */
  --radius-card: 20px;
  --radius-btn: 12px;
  --radius-img: 20px;

  /* Transitions */
  --transition: all 0.3s ease;
}

html,
body {
  max-width: 100vw;
  background-color: var(--white);
  color: var(--paragraph-color);
  font-family: var(--font-body);
  line-height: 1.6;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--heading-primary);
  line-height: 1.2;
}

h3,
h4 {
  color: var(--heading-secondary);
}

p {
  font-size: 18px;
  color: var(--paragraph-color);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--spacing-section) 0;
}

.section-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--heading-primary);
}

.sub-heading {
  font-size: 32px;
  font-weight: 600;
  color: var(--heading-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: var(--primary-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: 2px solid var(--primary-green);
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

.btn-outline {
  background-color: var(--white);
  color: var(--primary-green);
}

.btn-outline:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-ghost {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-ghost:hover {
  background-color: var(--white);
  color: var(--primary-green);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navLinks {
  display: flex;
  gap: 32px;
  align-items: center;
}

.navLink {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--heading-secondary);
  position: relative;
  transition: var(--transition);
}

.navLink:hover {
  color: var(--primary-green);
}

.mobileMenuBtn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-green);
  font-size: 28px;
}

.mobileMenu {
  display: none;
  background-color: var(--white);
  border-bottom: 1px solid #eee;
  padding: 1rem 2rem;
  flex-direction: column;
  gap: 1rem;
}

.mobileMenu.active {
  display: flex;
}

@media (max-width: 992px) {
  .navLinks {
    display: none;
  }

  .mobileMenuBtn {
    display: block;
  }
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.animate-scale-up {
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-fade-up.visible,
.animate-fade-in.visible,
.animate-scale-up.visible {
  opacity: 1;
}

.animate-fade-up.visible {
  transform: translateY(0);
}

.animate-scale-up.visible {
  transform: scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* Blog Hero */
.hero {
  /* height comes from the shared banner rule in assets/css/common.css */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  /* no margin-bottom: the following section's own padding provides the gap,
     so every page keeps the same banner-to-content spacing */
}

.heroBackground {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 20, 15, 0.75), rgba(10, 20, 15, 0.85)), url('image/placeholder-factory.jpg') center/cover no-repeat;
  z-index: 0;
}

.heroContent {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 2rem;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.heroTitle {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(to right, #ffffff, #a5d6a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heroSubtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  margin: 0 auto;
}

/* Blog Layout */
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.blog-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  color: var(--heading-secondary);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.2);
}

.blogGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-bottom: var(--tatvant-section, 4rem);
}

.blog-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(46, 125, 50, 0.12);
}

.blog-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.blog-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-meta {
  color: var(--primary-green);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.blogGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-bottom: var(--tatvant-section, 4rem);
}

/* Featured Post (Spans 2 columns - Full width) */
.featuredPost {
  grid-column: span 2;
  display: flex;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.featuredPost:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(46, 125, 50, 0.25);
  border-color: rgba(46, 125, 50, 0.3);
}

.featuredImage {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.featuredImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featuredPost:hover .featuredImage img {
  transform: scale(1.05);
}

.featuredContent {
  width: 50%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Standard Post */
.standardPost {
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.standardPost:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(46, 125, 50, 0.25);
  border-color: rgba(46, 125, 50, 0.3);
}

.postImage {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.postImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.standardPost:hover .postImage img {
  transform: scale(1.05);
}

.postContent {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Typography & Elements */
.date {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.title {
  font-size: 28px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 16px;
  line-height: 1.3;
}

.featuredTitle {
  font-size: 36px;
  line-height: 1.2;
}

.excerpt {
  font-size: 16px;
  color: var(--paragraph-color);
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Expanded Text Animation */
.fullTextWrapper {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fullTextWrapper.expanded {
  max-height: 1000px;
  opacity: 1;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.fullText {
  font-size: 16px;
  color: var(--paragraph-color);
  line-height: 1.8;
}

.readMoreBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--primary-green);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  transition: gap 0.3s ease;
}

.readMoreBtn:hover {
  gap: 12px;
}

@media (max-width: 992px) {
  .blogGrid {
    grid-template-columns: 1fr;
  }
  .featuredPost {
    grid-column: span 1;
    flex-direction: column;
  }
  .featuredImage, .featuredContent {
    width: 100%;
  }
  .featuredImage {
    height: 300px;
  }
  .heroTitle {
    font-size: 48px;
  }
}


/* EXACT FOOTER CSS FROM NEXT.JS */
.footer {
  background-color: var(--dark-green);
  color: var(--white);
  padding: 80px 0 32px;
  margin-top: auto;
}

.footerGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}

.brandInfo {
  flex: 0 0 350px;
}

.brandInfo p {
  color: var(--light-green);
  font-size: 16px !important;
  margin-top: 24px;
  line-height: 1.8;
  margin-bottom: 0 !important;
}

.footer .logo {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.column h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
}

.column ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.column ul li {
  margin: 0;
  padding: 0;
}

.column a {
  font-size: 16px;
  color: var(--light-green);
  transition: var(--transition);
  text-decoration: none;
}

.column a:hover {
  color: var(--white);
}

.contactItem {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 16px;
  color: var(--light-green);
  align-items: flex-start;
}

.bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-green);
  font-size: 16px;
}

.viewAllTextLink {
  color: #000000 !important;
  font-weight: bold !important;
  font-size: 16px;
  margin-top: 8px;
  display: inline-block;
  transition: var(--transition);
}

.viewAllTextLink:hover {
  color: var(--white) !important;
}

@media (max-width: 992px) {
  .footerGrid {
    gap: 32px;
  }
  .brandInfo {
    flex: 0 0 100%;
  }
}
@media (max-width: 576px) {
  .column {
    flex: 0 0 100%;
  }
}
