/* ============================================
   GIZEE Homepage Styles
   ============================================ */

/* ---- Hero Section ---- */
.hero-section {
  background: var(--gradient-hero);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.hero-cta {
  font-size: 18px;
  padding: 16px 48px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-section {
    padding: 48px 0 40px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-cta {
    font-size: 16px;
    padding: 14px 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }
}

/* ---- Brand Section ---- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.brand-card .brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-dark);
  text-align: center;
}

.brand-card:hover .brand-name {
  color: var(--color-primary);
}

.brand-card .brand-count {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .brand-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }

  .brand-card {
    padding: 14px 8px;
  }

  .brand-card .brand-name {
    font-size: 14px;
  }
}

/* ---- Video Section ---- */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  background: #000;
}

.video-wrapper video {
  width: 100%;
  display: block;
}

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  color: #888;
  font-size: 18px;
}

/* ---- Recommend Section ---- */
.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.rec-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.rec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.rec-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--color-bg-warm);
}

.rec-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rec-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 12px;
}

.rec-btn {
  font-size: 13px;
  padding: 8px 20px;
}

/* ---- Story Section ---- */
.story-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.story-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.story-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .rec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .story-title {
    font-size: 22px;
  }
}