/* HOME PAGE STYLES */

/* Hero Overrides for Home */
.hero-btn-secondary {
  color: var(--color-white) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  background: transparent;
}
.hero-btn-secondary:hover {
  border-color: var(--color-white) !important;
  background: rgba(255, 255, 255, 0.1);
}

/* Stats Bar Styling */
.stats-bar {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.stat-card {
  text-align: center;
  padding: 1rem;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Home Pillars Grid */
.product-pillars-section {
  background-color: var(--color-background);
}
.home-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .home-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pillar Card Specifics */
.pillar-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.pillar-card__media {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.pillar-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.pillar-card:hover .pillar-card__media img {
  transform: scale(1.05);
}
.pillar-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pillar-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-forest);
}
.pillar-card__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.pillar-card__desc {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}
.pillar-card__link {
  font-weight: 600;
  color: var(--color-forest);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}
.pillar-card:hover .pillar-card__link {
  color: var(--color-gold);
}
.pillar-card:hover .pillar-card__link .btn__arrow {
  transform: translateX(4px);
}

/* Image Band with Parallax */
.image-band {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--color-white);
}
.image-band__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* Extra height for parallax */
  z-index: 1;
}
.image-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-band__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 38, 20, 0.6); /* Dark forest overlay */
  z-index: 2;
}
.image-band__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Dark Section Feature Cards */
.feature-card--dark {
  background: transparent;
  border: 1px solid rgba(247, 243, 237, 0.1);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: left;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.feature-card--dark:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 243, 237, 0.3);
  background: rgba(247, 243, 237, 0.02);
}
.feature-card--dark .feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  color: var(--color-gold);
}
.feature-card--dark .feature-card__title {
  font-size: 1.25rem;
  color: var(--color-ivory);
  margin-bottom: 1rem;
}
.feature-card--dark .feature-card__desc {
  color: rgba(247, 243, 237, 0.7);
  line-height: 1.6;
}

/* Margin Utility for Home */
.mb-16 {
  margin-bottom: 4rem;
}
