/* ==========================================
        SABRE DE PLEIADES BOOK PAGE
========================================== */

/* ==========================
        GLOBAL
========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;

  background: #050b1c;

  color: white;

  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Cinzel", serif;
}

p {
  color: #d9d9d9;

  line-height: 1.9;
}

section {
  position: relative;
}

/* ==========================
        HERO SECTION
========================== */

.book-hero {
  min-height: 100vh;

  display: flex;

  align-items: center;

  padding: 120px 8% 80px;

  overflow: hidden;
}

.book-hero::before {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(circle at top, #4b2a7d, #111b4b 45%, #050b1c 90%);

  z-index: -2;
}

/* Stars */

.book-hero::after {
  content: "";

  position: absolute;

  inset: 0;

  background-image:
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(#ffd76a 1px, transparent 1px);

  background-size:
    90px 90px,
    150px 150px;

  opacity: 0.18;

  animation: moveStars 80s linear infinite;

  z-index: -1;
}

@keyframes moveStars {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-300px);
  }
}

.book-hero h5 {
  color: #ffd76a;

  letter-spacing: 3px;

  text-transform: uppercase;

  margin-bottom: 20px;
}

.book-hero h1 {
  font-size: 65px;

  color: white;

  margin-bottom: 25px;
}

.book-hero p {
  font-size: 18px;

  max-width: 600px;
}

/* Book Cover */

.book-cover {
  width: 380px;

  border-radius: 20px;

 

  transition: 0.5s;
}

.book-cover:hover {
  transform: translateY(-15px);
}

/* ==========================
        BUTTON
========================== */

.gold-btn {
  display: inline-block;

  margin-top: 30px;

  padding: 15px 40px;

  border-radius: 50px;

  background: linear-gradient(135deg, #ffd76a, #d4af37);

  color: #111;

  text-decoration: none;

  font-weight: 600;

  transition: 0.4s;
}

.gold-btn:hover {
  transform: translateY(-5px);

  box-shadow: 0 0 35px rgba(212, 175, 55, 0.5);

  color: #111;
}

/* ==========================
        SECTIONS
========================== */

.section {
  padding: 100px 8%;
}

.section h2 {
  text-align: center;

  color: #ffd76a;

  font-size: 42px;

  margin-bottom: 50px;
}

.section > .container > p {
    max-width: 900px;
    margin: auto;
    text-align: justify;
    text-indent: 2em;
    font-size: 17px;
}

/* Dark Sections */

.dark {
  background: #091126;
}

/* ==========================
        CHARACTER CARDS
========================== */

.character-card {
  height: 100%;

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 20px;

  overflow: hidden;

  transition: 0.4s;
}

.character-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.2);
}

.character-card img {
  width: 100%;

  height: 300px;

  object-fit: cover;
}

.character-card h3 {
  color: #ffd76a;

  padding: 20px 25px 0;
}

.character-card p {
  padding: 0 25px 30px;
}

/* ==========================
        WORLD BUILDING
========================== */

.world-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.world-grid div {
  background: rgba(255, 255, 255, 0.06);

  border-radius: 20px;

  padding: 35px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  transition: 0.4s;
}

.world-grid div:hover {
  border-color: #d4af37;

  transform: translateY(-8px);
}

.world-grid h3 {
  color: #ffd76a;

  margin-bottom: 20px;
}

/* ==========================
        TIMELINE
========================== */

.timeline {
  max-width: 800px;

  margin: auto;
}

.timeline p {
  background: rgba(255, 255, 255, 0.06);

  padding: 25px;

  margin-bottom: 20px;

  border-left: 4px solid #d4af37;

  border-radius: 10px;
}

/* ==========================
        REVIEWS
========================== */

.review {
  max-width: 800px;

  margin: 30px auto;

  padding: 35px;

  text-align: center;

  background: rgba(255, 255, 255, 0.06);

  border-radius: 20px;

  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review p {
  font-size: 18px;

  font-style: italic;
}

.review h5 {
  margin-top: 20px;

  color: #ffd76a;
}

/* ==========================
        FOOTER
========================== */

footer {
  background: #030711;

  padding: 40px;

  text-align: center;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
  color: #aaa;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 992px) {
  .book-hero {
    text-align: center;
  }

  .book-hero h1 {
    font-size: 45px;
  }

  .book-cover {
    margin-top: 50px;

    width: 280px;
  }

  .world-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .book-hero h1 {
    font-size: 35px;
  }

  .section h2 {
    font-size: 30px;
  }

  .character-card img {
    height: 250px;
  }
}






















