/* ==========================================
   THE POWER OF A HOLY NO!
   Bradley Hobbs
   Global Stylesheet
========================================== */

/* ==========================================
   ROOT
========================================== */

:root{

--bg:#0b0907;

--panel:#1a1511;

--panel-light:#241d18;

--gold:#c99732;

--gold-light:#e3bc63;

--gold-soft:#f0d18c;

--text:#f5ead5;

--muted:#cdb89c;

--shadow:#050403;

--forest:#172012;

--forest-light:#28331f;

}

/* ==========================================
   RESET
========================================== */

*{

margin:0;

padding:0;

box-sizing:border-box;

}

/* ==========================================
   BODY
========================================== */

body{

background:

linear-gradient(

180deg,

#080706 0%,

#12100d 35%,

#1a1713 100%

);

font-family:Georgia,serif;

color:var(--text);

line-height:1.9;

min-height:100vh;

}

/* ==========================================
   LINKS
========================================== */

a{

text-decoration:none;

color:inherit;

transition:.3s;

}

/* ==========================================
   MANUSCRIPT CONTAINER
========================================== */

.manuscript{

max-width:900px;

margin:60px auto;

padding:60px;

background:

linear-gradient(

180deg,

rgba(35,28,22,.97),

rgba(24,19,15,.98)

);

border:1px solid rgba(201,151,50,.18);

border-radius:20px;

box-shadow:

0 30px 70px rgba(0,0,0,.55),

0 0 40px rgba(201,151,50,.08);

}

/* ==========================================
   BOOK TITLE
========================================== */

.book{

font-size:clamp(2.5rem,5vw,4rem);

text-align:center;

color:var(--gold-light);

letter-spacing:2px;

text-transform:uppercase;

text-shadow:

0 2px 8px rgba(0,0,0,.6),

0 0 18px rgba(201,151,50,.25);

margin-bottom:20px;

}

/* ==========================================
   CHAPTER
========================================== */

.chapter{

text-align:center;

font-size:2rem;

color:var(--gold);

margin-bottom:12px;

}

/* ==========================================
   SUBTITLE
========================================== */

.subtitle{

text-align:center;

font-style:italic;

font-size:1.25rem;

color:var(--muted);

margin-bottom:50px;

}

/* ==========================================
   PARAGRAPHS
========================================== */

p{

font-size:1.15rem;

color:var(--text);

margin-bottom:28px;

text-align:justify;

}

/* ==========================================
   CENTER TEXT
========================================== */

.center{

text-align:center;

}

/* ==========================================
   PRAYER / QUOTES
========================================== */

.prayer{

text-align:center;

font-style:italic;

font-size:1.2rem;

color:var(--gold-soft);

}

/* ==========================================
   FINAL WORD
========================================== */

.final-word{

margin-top:60px;

text-align:center;

font-size:clamp(1.7rem,4vw,2.4rem);

font-weight:700;

line-height:1.45;

letter-spacing:.5px;

color:var(--gold-light);

text-shadow:

0 0 10px rgba(201,151,50,.25);

max-width:850px;

margin-left:auto;

margin-right:auto;

}

@media(max-width:600px){

.final-word{

font-size:1.5rem;

line-height:1.5;

letter-spacing:.25px;

}

}

/* ==========================================
   HORIZONTAL RULE
========================================== */

hr{

border:none;

height:1px;

background:rgba(201,151,50,.25);

margin:50px 0;

}

/* ==========================================
   IMAGES
========================================== */

img{

max-width:100%;

display:block;

margin:auto;

border-radius:12px;

}


/* ===================================
   HERO
=================================== */

.hero{

width:100%;

max-width:1300px;

margin:25px auto 10px;

padding:0 20px;

}

.hero img{

display:block;

width:100%;

height:auto;

border-radius:20px;

object-fit:cover;

box-shadow:

0 20px 50px rgba(0,0,0,.45);

}

/* ==========================================
   CHAPTER NAVIGATION
========================================== */

.chapter-nav{

display:flex;

justify-content:space-between;

align-items:center;

gap:20px;

flex-wrap:wrap;

margin:60px 0 40px;

padding-top:35px;

border-top:1px solid rgba(201,151,50,.20);

}

.chapter-nav a{

display:inline-block;

padding:12px 20px;

border-radius:30px;

color:var(--gold);

font-weight:600;

background:rgba(255,255,255,.02);

border:1px solid rgba(201,151,50,.20);

transition:.3s;

}

.chapter-nav a:hover{

background:rgba(201,151,50,.10);

color:var(--gold-light);

transform:translateY(-2px);

box-shadow:0 5px 20px rgba(0,0,0,.25);

}

/* ==========================================
   TABLE OF CONTENTS
========================================== */

.contents-list{

display:flex;

flex-direction:column;

gap:20px;

margin:50px 0;

}

.contents-item{

display:block;

padding:22px 28px;

background:

linear-gradient(

180deg,

rgba(36,29,24,.95),

rgba(24,19,15,.98)

);

border:1px solid rgba(201,151,50,.18);

border-left:6px solid var(--gold);

border-radius:16px;

box-shadow:

0 10px 30px rgba(0,0,0,.22);

transition:.3s;

}

.contents-item:hover{

transform:translateX(8px);

border-color:var(--gold-light);

box-shadow:

0 15px 35px rgba(0,0,0,.30),

0 0 15px rgba(201,151,50,.12);

}

.contents-number{

display:block;

font-size:.9rem;

letter-spacing:2px;

text-transform:uppercase;

color:var(--gold-soft);

margin-bottom:6px;

}

.contents-title{

display:block;

font-size:1.4rem;

font-weight:700;

color:var(--text);

margin-bottom:4px;

}

.contents-subtitle{

display:block;

font-size:.95rem;

color:var(--muted);

}

.contents-home{

margin:40px 0;

text-align:center;

}

.contents-home a{

display:inline-block;

padding:14px 30px;

border-radius:30px;

border:1px solid rgba(201,151,50,.20);

background:rgba(255,255,255,.02);

color:var(--gold);

font-weight:600;

transition:.3s;

}

.contents-home a:hover{

background:rgba(201,151,50,.10);

color:var(--gold-light);

}

/* ==========================
   TABLETS
========================== */

@media(max-width:900px){

.hero{

padding:0 15px;

margin:20px auto 10px;

}

.hero img{

border-radius:16px;

}

}

/* ==========================
   PHONES
========================== */

@media(max-width:600px){

.hero{

padding:0 10px;

margin:15px auto 5px;

}

.hero img{

border-radius:12px;

}

}

/* ==========================
   LARGE SCREENS
========================== */

@media(min-width:1500px){

.hero{

max-width:1500px;

}

}

/* ==========================================
   FOOTER
========================================== */

.book-footer{

margin-top:100px;

padding:70px 20px 60px;

background:

linear-gradient(

180deg,

rgba(22,18,14,.95),

rgba(12,10,8,.98)

);

border-top:1px solid rgba(201,151,50,.18);

text-align:center;

}

/* ==========================================
   FOOTER TITLE
========================================== */

.footer-title{

font-size:1.5rem;

font-weight:700;

letter-spacing:4px;

text-transform:uppercase;

color:var(--gold-light);

margin-bottom:20px;

}

/* ==========================================
   FOOTER LINKS
========================================== */

.footer-links{

display:flex;

justify-content:center;

align-items:center;

gap:50px;

flex-wrap:wrap;

margin:35px 0;

}

.footer-links a{

color:var(--gold);

font-size:1rem;

font-weight:600;

padding:6px 10px;

transition:.3s;

}

.footer-links a:hover{

color:var(--gold-soft);

text-shadow:0 0 10px rgba(227,188,99,.4);

}

/* ==========================================
   FOOTER AUTHOR
========================================== */

.footer-author{

color:var(--muted);

font-size:.95rem;

letter-spacing:1px;

}

/* ==========================================
   SELECTION
========================================== */

::selection{

background:var(--gold);

color:#111;

}

/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#120f0c;

}

::-webkit-scrollbar-thumb{

background:var(--gold);

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--gold-light);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:900px){

.manuscript{

margin:30px 15px;

padding:40px 30px;

}

.book{

font-size:2.2rem;

}

.chapter{

font-size:1.7rem;

}

.subtitle{

font-size:1.1rem;

}

p{

font-size:1.05rem;

}

.footer-links{

gap:20px;

}

.chapter-nav{

flex-direction:column;

gap:15px;

}

.chapter-nav a{

width:100%;

text-align:center;

}

.final-word{

font-size:2.3rem;

}

}
