/* ===== HOMEPAGE LAYOUT - LIGHT THEME ===== */

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2a2a2a 100%);
  color: var(--neutral-100);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--neutral-200);
  margin-bottom: var(--space-8);
  line-height: 1.6;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* === CATEGORIES SECTION === */
.categories {
  padding: var(--space-16) 0;
  background: var(--content-bg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title {
  font-size: var(--text-4xl);
  color: var(--brand-black);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--content-light);
  max-width: 600px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.category-card {
  background: var(--content-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  border: 1px solid var(--neutral-200);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-gold);
}

.category-image {
  width: 100%;
  height: 200px;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-content {
  padding: var(--space-6);
  text-align: center;
}

.category-name {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: var(--space-2);
}

.category-count {
  color: var(--content-light);
  font-size: var(--text-sm);
}

/* === FEATURED PRODUCTS SECTION === */
.featured-products {
  padding: var(--space-16) 0;
  background: var(--content-offwhite);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

/* === BRAND STORY SECTION === */
.brand-story {
  padding: var(--space-16) 0;
  background: var(--content-bg);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-text h2 {
  color: var(--brand-black);
  margin-bottom: var(--space-6);
}

.story-text p {
  margin-bottom: var(--space-4);
  color: var(--content-text);
  line-height: 1.7;
}

/* === FEATURES SECTION === */
.features {
  padding: var(--space-16) 0;
  background: var(--content-offwhite);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
}

.feature-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--content-bg);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--brand-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: var(--text-2xl);
  color: var(--brand-black);
}

.feature-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: var(--space-2);
}

.feature-description {
  color: var(--content-light);
  font-size: var(--text-sm);
  line-height: 1.6;
}
/* === RESPONSIVE HOMEPAGE === */
@media (max-width: 768px) {
  .hero {
    padding: var(--space-12) 0;
  }
  
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .categories-grid,
  .products-grid,
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .section-title {
    font-size: var(--text-3xl);
  }
  
  .categories-grid,
  .products-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}