/*
 * Luxe Hero V1 — Gradient
 * Theme: Thm-Teepublic / Luxe
 * Dark gradient background with gold accents
 */

.fl-luxe-hero-v1 {
  padding: 64px 48px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
  border: 1px solid #2A2A2A;
  border-radius: 16px;
}

.fl-luxe-hero-v1-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.fl-luxe-hero-v1-title {
  margin: 0 0 16px;
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  font-family: 'Georgia', serif;
}

.fl-luxe-hero-v1-tagline {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.8;
  color: #999999;
  font-family: 'Georgia', serif;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.fl-luxe-hero-v1-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}

.fl-luxe-hero-v1-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(185, 28, 28, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.15);
  border-radius: 10px;
}

.fl-luxe-hero-v1-benefit-icon {
  font-size: 20px;
  color: #C9A84C;
  flex-shrink: 0;
}

.fl-luxe-hero-v1-benefit-text {
  font-size: 14px;
  color: #CCCCCC;
  font-family: 'Georgia', serif;
}

.fl-luxe-hero-v1-cta {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #C9A84C, #E8D48B);
  color: #1A1A1A !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Georgia', serif;
  transition: all 0.2s ease;
}

.fl-luxe-hero-v1-cta:hover {
  background: linear-gradient(135deg, #E8D48B, #C9A84C);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

@media (max-width: 768px) {
  .fl-luxe-hero-v1 {
    padding: 48px 24px;
  }

  .fl-luxe-hero-v1-title {
    font-size: 32px;
  }

  .fl-luxe-hero-v1-benefits {
    grid-template-columns: 1fr;
  }
}
