/* Hero Sections */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background-color: var(--primary-dark);
  color: var(--off-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--gold-accent) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
  animation: bgScroll 15s linear infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: var(--spacing-sm);
  color: var(--off-white);
}

.hero-content .sub-headline {
  font-size: 1.25rem;
  color: rgba(248, 246, 240, 0.8);
  margin-bottom: var(--spacing-md);
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--gold-accent);
  flex-wrap: wrap;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Stacked books mockup */
.book-mockup-container {
  position: relative;
  width: 300px;
  height: 400px;
}

.book-stack {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1f2038 0%, #151525 100%);
  border: 2px solid var(--gold-accent);
  border-radius: 4px;
  box-shadow: 20px 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(201,168,76,0.1);
}

.bestseller-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--gold-accent);
  color: var(--primary-dark);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  font-family: var(--font-heading);
  line-height: 1.2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transform: rotate(15deg);
  z-index: 10;
}

/* Inner pages hero */
.hero-inner {
  min-height: 60vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-inner h1 {
  font-size: 3.5rem;
  color: var(--gold-accent);
}

.hero-inner p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}
