
.book-showcase {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #000000, #111111);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 8%;
}

.book-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(243, 127, 45, 0.15), transparent 60%);
  z-index: 1;
}

.glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
}

.glow-1 {
  background: rgba(243, 127, 45, 0.35);
  top: -100px;
  left: -100px;
}

.glow-2 {
  background: rgba(255, 166, 0, 0.2);
  bottom: -100px;
  right: -100px;
}

.book-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.book-content {
  flex: 1;
}

.launch-tag {
  display: inline-block;
  background: rgba(243, 127, 45, 0.15);
  border: 1px solid rgba(243, 127, 45, 0.4);
  color: #f59e0b;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.book-content h1 {
  font-size: 4rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}

.book-content h1 span {
  color: #f59e0b;
}

.book-content p {
  color: #cfcfcf;
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 600px;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 16px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s ease;
  font-size: 1rem;
}

.primary-btn {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
  box-shadow: 0 10px 30px rgba(243, 127, 45, 0.4);
}

.primary-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.secondary-btn:hover {
  border-color: #f59e0b;
  color: #f59e0b;
  transform: translateY(-5px);
}

.book-images {
  flex: 1;
  position: relative;
  height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.author-circle {
  position: absolute;
  top: 10px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #f59e0b;
  box-shadow: 0 0 50px rgba(243, 127, 45, 0.6);
  z-index: 20;
  background: #111;
}


.author-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}


.book-card {
  position: absolute;
  width: 240px;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
}

.book-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-card:hover {
  transform: translateY(-15px) scale(1.05);
}

.left-book {
  left: 0;
  top: 180px;
  transform: rotate(-12deg);
  z-index: 5;
}

.center-book {
  width: 290px;
  z-index: 15;
  box-shadow: 0 0 50px rgba(243, 127, 45, 0.5);
}

.right-book {
  right: 0;
  top: 180px;
  transform: rotate(12deg);
  z-index: 5;
}

/* FLOATING ANIMATION */
.left-book,
.center-book,
.right-book {
  animation: floatBooks 5s ease-in-out infinite;
}

.center-book {
  animation-delay: 0.5s;
}

.right-book {
  animation-delay: 1s;
}

@keyframes floatBooks {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .book-container {
    flex-direction: column;
    text-align: center;
  }

  .book-content p {
    margin: auto auto 40px;
  }

  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .book-showcase {
    padding: 90px 18px;
    min-height: auto;
  }

  .book-container {
    gap: 40px;
  }

  .book-content h1 {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .book-content p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .cta-buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .book-images {
    height: 420px;
    width: 100%;
    position: relative;
  }

  .book-card {
    width: 130px;
  }

  .center-book {
    width: 165px;
  }

  .author-circle {
    width: 110px;
    height: 110px;
    top: 5px;
  }

  .left-book {
    left: 0;
    top: 140px;
  }

  .center-book {
    top: 120px;
  }

  .right-book {
    right: 0;
    top: 140px;
  }
}

@media (max-width: 480px) {
  .book-content h1 {
    font-size: 2rem;
  }

  .launch-tag {
    font-size: 12px;
    padding: 8px 18px;
  }

  .book-images {
    height: 360px;
  }

  .book-card {
    width: 105px;
  }

  .center-book {
    width: 140px;
  }

  .author-circle {
    width: 95px;
    height: 95px;
  }

  .left-book {
    top: 120px;
    left: 5px;
  }

  .right-book {
    top: 120px;
    right: 5px;
  }
}
