/* ==========================================
        ABOUT THE AUTHOR PAGE
        SABRE DE PLEIADES
========================================== */

/* ==========================
        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,
h5 {
  font-family: "Cinzel", serif;
}

p {
  color: #d9d9d9;

  line-height: 1.9;
}

/* ==========================
        HERO SECTION
========================== */

.author-hero {
  min-height: 100vh;

  display: flex;

  align-items: center;

  padding: 130px 8% 80px;

  position: relative;

  overflow: hidden;
}

/* Galaxy Background */

.author-hero::before {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(circle at top, #4b2a7d, #111b4b 45%, #050b1c 90%);

  z-index: -2;
}

/* Stars */

.author-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.2;

  animation: starsMove 80s linear infinite;

  z-index: -1;
}

@keyframes starsMove {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-300px);
  }
}

/* Author Image */

.author-image {
  width: 450px;

  height: 450px;

  object-fit: cover;

 

  border: 4px solid #d4af3700;

  box-shadow: 0 0 40px rgba(212, 175, 55, 0.35);

  transition: 0.5s;
}

.author-image:hover {
  transform: scale(1.05);
}

/* Hero Text */

.author-hero h5 {
  color: #ffd76a;

  letter-spacing: 3px;

  text-transform: uppercase;

  margin-bottom: 20px;
}

.author-hero h1 {
  font-size: 55px;

  color: white;

  margin-bottom: 30px;

  line-height: 1.3;
}

.author-hero p {
  font-size: 18px;

  max-width: 650px;
}

/* ==========================
        SECTIONS
========================== */

.author-section {
  padding: 100px 8%;
}

.author-section h2 {
  text-align: center;

  color: #ffd76a;

  font-size: 42px;

  margin-bottom: 50px;
}

/* Biography Box */

.author-box {
  max-width: 950px;

  margin: auto;

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 20px;

  padding: 45px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.author-box p {
  font-size: 17px;

  margin-bottom: 20px;
}

/* ==========================
        DARK SECTION
========================== */

.dark {
  background: #091126;
}

/* ==========================
        CREATIVE CARDS
========================== */

.author-card {
  height: 100%;

  padding: 35px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(15px);

  transition: 0.4s;
}

.author-card:hover {
  transform: translateY(-10px);

  border-color: #d4af37;

  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.author-card h3 {
  color: #ffd76a;

  margin-bottom: 20px;

  font-size: 22px;
}

.author-card p {
  font-size: 16px;
}

/* ==========================
        MESSAGE SECTION
========================== */

.message-section {
  padding: 100px 8%;
}

.message-box {
  max-width: 900px;

  margin: auto;

  padding: 50px;

  text-align: center;

  background: rgba(255, 255, 255, 0.06);

  border-radius: 25px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(15px);
}

.message-box h2 {
  color: #ffd76a;

  margin-bottom: 30px;
}

.message-box p {
  font-size: 20px;

  font-style: italic;

  line-height: 2;
}

.message-box h5 {
  color: #ffd76a;

  margin-top: 30px;
}

/* ==========================
        FOOTER
========================== */

footer {
  background: #030711;

  padding: 40px;

  text-align: center;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
  color: #999;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 992px) {
  .author-hero {
    text-align: center;
  }

  .author-image {
    width: 260px;

    height: 260px;

    margin-bottom: 40px;
  }

  .author-hero h1 {
    font-size: 40px;
  }

  .author-section h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .author-hero h1 {
    font-size: 32px;
  }

  .author-hero p {
    font-size: 16px;
  }

  .author-box,
  .message-box {
    padding: 25px;
  }

  .author-section h2 {
    font-size: 28px;
  }
}


.col-lg-7 p {
    text-align: justify;
     text-indent: 2em;
}



