/* Homepage Specific Styles */

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2B1A3D 0%, #0D0D0D 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(74, 27, 92, 0.3) 0%, rgba(13, 13, 13, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-8) var(--space-4);
  max-width: 800px;
}

.hero-title {
  font-size: var(--text-5xl);
  font-weight: var(--weight-black);
  color: var(--cream-warm);
  margin-bottom: var(--space-4);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--cream);
  margin-bottom: var(--space-8);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 0;
}

.hero-image-left,
.hero-image-right {
  position: absolute;
  width: 300px;
  height: 400px;
  opacity: 0.4;
}

.hero-image-left {
  left: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
}

.hero-image-right {
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
}

.hero-image-left img,
.hero-image-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
}

@media (min-width: 1024px) {
  .hero-images {
    display: block;
  }
  
  .hero-title {
    font-size: var(--text-6xl);
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

/* ===== PRICING QUICK ===== */
.pricing-quick {
  background-color: var(--black-soft);
}

.price-large {
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  color: var(--gold-classic);
  margin: var(--space-4) 0;
  font-family: var(--font-heading);
}

/* ===== FEATURES ===== */
.features {
  background: linear-gradient(180deg, var(--black-true) 0%, var(--purple-dark) 100%);
}

.feature-card {
  text-align: center;
  padding: var(--space-6);
}

.feature-icon {
  font-size: 3rem;
  color: var(--gold-classic);
  margin-bottom: var(--space-4);
}

.feature-card h3 {
  color: var(--cream-warm);
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--cream);
  line-height: var(--leading-relaxed);
}

/* ===== SERIES SHOWCASE ===== */
.series-showcase {
  background-color: var(--black-true);
}

.series-card {
  background-color: var(--black-soft);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-base);
}

.series-card:hover {
  transform: translateY(-8px);
}

.series-acotar {
  border: 2px solid var(--purple-medium);
}

.series-fourthwing {
  border: 2px solid var(--red-dark);
}

.series-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: var(--black-charcoal);
}

.series-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.series-card:hover .series-image img {
  transform: scale(1.05);
}

.series-content {
  padding: var(--space-6);
}

.series-content h3 {
  font-size: var(--text-2xl);
  color: var(--gold-classic);
  margin-bottom: var(--space-3);
}

.series-content p {
  color: var(--cream);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.series-options {
  list-style: none;
  margin-bottom: var(--space-5);
}

.series-options li {
  color: var(--cream-muted);
  padding: var(--space-2) 0;
  font-size: var(--text-base);
}

.series-acotar .series-options li {
  color: var(--purple-light);
}

.series-fourthwing .series-options li {
  color: var(--red-ruby);
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: linear-gradient(180deg, var(--purple-dark) 0%, var(--black-true) 100%);
}

.trust-item {
  text-align: center;
  padding: var(--space-5);
}

.trust-icon {
  font-size: 3rem;
  color: var(--gold-classic);
  margin-bottom: var(--space-4);
  filter: drop-shadow(var(--glow-gold));
}

.trust-item h4 {
  color: var(--cream-warm);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.trust-item p {
  color: var(--cream-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--red-burgundy) 100%);
  padding: var(--space-12) var(--space-4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: var(--text-4xl);
  color: var(--cream-warm);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  font-size: var(--text-xl);
  color: var(--cream);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .cta-banner h2 {
    font-size: var(--text-3xl);
  }
  
  .cta-banner p {
    font-size: var(--text-base);
  }
}
