/* ==========================================================
   THE FIRE MONK
   Premium Website Stylesheet
   Version : 1.0
   Part    : Foundation
   Author  : Nawneet Panjiyar
========================================================== */


/*==========================================================
    1. CSS VARIABLES
==========================================================*/

:root{

    --clr-bg:#F7F4EE;
    --clr-white:#FFFFFF;

    --clr-primary:#102848;
    --clr-secondary:#183B63;

    --clr-gold:#C79A2D;
    --clr-gold-light:#D9B65A;

    --clr-text:#4A4A4A;

    --clr-border:#E7E2D8;

    --shadow-sm:
        0 8px 18px rgba(0,0,0,.05);

    --shadow-md:
        0 18px 45px rgba(0,0,0,.10);

    --shadow-lg:
        0 35px 70px rgba(0,0,0,.16);

    --container:1280px;

    --transition:.35s ease;

}


/*==========================================================
    2. RESET
==========================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--clr-bg);

    color:var(--clr-text);

    font-family:'Lora',serif;

    font-size:18px;

    line-height:1.8;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}


/*==========================================================
    3. TYPOGRAPHY
==========================================================*/

h1,
h2,
h3,
h4{

    color:var(--clr-primary);

    font-family:'Montserrat',sans-serif;

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:5rem;

    letter-spacing:-2px;

}

h2{

    font-size:3rem;

}

h3{

    font-size:1.45rem;

}

p{

    margin-bottom:24px;

}

blockquote{

    font-family:'Lora',serif;

    font-size:2.2rem;

    font-style:italic;

    text-align:center;

    color:var(--clr-primary);

}


/*==========================================================
    4. GLOBAL LAYOUT
==========================================================*/

.container{

    width:min(92%, var(--container));

    margin-inline:auto;

}

section{

    padding:120px 0;

}

.section-heading{

    margin-bottom:70px;

    text-align:center;

}

.section-heading h2{

    position:relative;

    display:inline-block;

    padding-bottom:18px;

}

.section-heading h2::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:80px;

    height:3px;

    background:var(--clr-gold);

}


/*==========================================================
    5. HEADER
==========================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:rgba(247,244,238,.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,.05);

    z-index:999;

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;
    

 	
	margin:auto;
	height:88px;

}

/* ===========================
   Website Header Logo
=========================== */

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    
}

.header-logo{

    display:block;

    width:auto;
    height:64px;
   
    
   object-fit:contain;
 	
    transition:all .35s ease;

}

.logo:hover .header-logo{

    transform:scale(1.03);

}

/*==========================================================
    NAVIGATION
==========================================================*/

.navigation ul{

    display:flex;

    gap:48px;

}

.navigation a{

    position:relative;

    font-family:'Montserrat',sans-serif;

    font-size:.95rem;

    font-weight:600;

    color:var(--clr-primary);

    transition:var(--transition);

}

.navigation a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--clr-gold);

    transition:var(--transition);

}

.navigation a:hover{

    color:var(--clr-gold);

}

.navigation a:hover::after{

    width:100%;

}

.navigation a{
    color: var(--clr-primary);
}

/*==========================================================
    HERO
==========================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    align-items:center;

    gap:80px;

}

.hero-tagline{

    display:inline-block;

    margin-bottom:24px;

    padding:10px 18px;

    border-radius:30px;

    background:#EFE8DA;

    color:var(--clr-gold);

    font-family:'Montserrat',sans-serif;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.hero h1{

    margin-bottom:34px;

}

.hero-description{

    max-width:620px;

    font-size:1.18rem;

    color:#555;

}


/*==========================================================
    HERO BUTTONS
==========================================================*/

.hero-buttons{

    display:flex;

    gap:22px;

    margin-top:42px;

}

.btn-primary,
.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:210px;

    height:60px;

    border-radius:40px;

    font-family:'Montserrat',sans-serif;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary{

    background:var(--clr-primary);

    color:white;

    box-shadow:var(--shadow-sm);

}

.btn-primary:hover{

    transform:translateY(-4px);

    background:var(--clr-secondary);

    box-shadow:var(--shadow-md);

}

.btn-secondary{

    border:2px solid var(--clr-gold);

    color:var(--clr-gold);

}

.btn-secondary:hover{

    background:var(--clr-gold);

    color:white;

    transform:translateY(-4px);

}


/*==========================================================
    HERO BOOK
==========================================================*/

.hero-book{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-book img{

    width:100%;

    max-width:520px;

    border-radius:12px;

    box-shadow:var(--shadow-lg);

}


/*==========================================================
    SIMPLE UTILITIES
==========================================================*/

.text-center{

    text-align:center;

}

.gold{

    color:var(--clr-gold);

}

.mt-40{

    margin-top:40px;

}

.mt-60{

    margin-top:60px;

}

.mb-0{

    margin-bottom:0;

}
/* ==========================================================
   PART 2
   Quote • Book • Author • Philosophy • CTA • Footer
========================================================== */


/*==========================================================
    QUOTE SECTION
==========================================================*/

.quote-section{

    background:#FCFBF8;

    border-top:1px solid var(--clr-border);

    border-bottom:1px solid var(--clr-border);

    padding:140px 0;

}

.quote-section blockquote{

    max-width:980px;

    margin:auto;

    font-size:2.3rem;

    color:var(--clr-primary);

    line-height:1.55;

}

.quote-section blockquote::before{

    content:"“";

    color:var(--clr-gold);

    font-size:4rem;

    vertical-align:-18px;

    margin-right:12px;

}

.quote-section blockquote::after{

    content:"”";

    color:var(--clr-gold);

    font-size:4rem;

    vertical-align:-18px;

    margin-left:12px;

}



/*==========================================================
    BOOK SECTION
==========================================================*/

.book-section{

    background:var(--clr-bg);

}

.book-grid{

    display:grid;

    grid-template-columns:460px 1fr;

    gap:90px;

    align-items:center;

}

.book-grid img{

    width:100%;

    border-radius:14px;

    box-shadow:var(--shadow-lg);

}

.book-grid p{

    font-size:1.08rem;

    color:#565656;

}

.book-grid p:last-child{

    margin-bottom:0;

}



/*==========================================================
    AUTHOR
==========================================================*/

.author-section{

    background:white;

}

.author-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:90px;

    align-items:center;

}

.author-grid img{

    width:100%;

    border-radius:18px;

    box-shadow:var(--shadow-lg);

}

.author-grid h2{

    margin-bottom:30px;

}

.author-grid p{

    font-size:1.08rem;

}



/*==========================================================
    PHILOSOPHY
==========================================================*/

.philosophy-section{

    background:var(--clr-bg);

}

.cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:34px;

}

.card{

    background:white;

    border-radius:18px;

    padding:45px;

    border:1px solid var(--clr-border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-md);

}

.card h3{

    margin-bottom:18px;

    color:var(--clr-primary);

}

.card p{

    margin-bottom:0;

    color:#666;

}



/*==========================================================
    CALL TO ACTION
==========================================================*/

.cta-section{

    background:linear-gradient(135deg,
                var(--clr-primary),
                var(--clr-secondary));

    color:white;

    text-align:center;

}

.cta-section h2{

    color:white;

    margin-bottom:24px;

}

.cta-section p{

    max-width:720px;

    margin:0 auto 45px;

    color:#E9E9E9;

    font-size:1.1rem;

}

.cta-section .btn-primary{

    background:var(--clr-gold);

    color:white;

}

.cta-section .btn-primary:hover{

    background:#D6AC49;

}



/*==========================================================
    FOOTER
==========================================================*/

footer{

    background:#081726;

    color:#C9D0D7;

    text-align:center;

    padding:90px 0 55px;

}

footer img{

    width:85px;

    margin:auto;

    margin-bottom:28px;

}

footer h3{

    color:white;

    margin-bottom:18px;

    letter-spacing:2px;

}

footer p{

    margin-bottom:14px;

    color:#A8B1BC;

    font-size:.95rem;

}

footer p:last-child{

    margin-top:36px;

    font-size:.85rem;

    color:#7E8A97;

}



/*==========================================================
    SECTION FADE-IN PREPARATION
==========================================================*/

section{

    position:relative;

    overflow:hidden;

}



/*==========================================================
    PREMIUM DIVIDER
==========================================================*/

.section-heading{

    position:relative;

}

.section-heading::before{

    content:"";

    display:block;

    width:60px;

    height:2px;

    background:var(--clr-gold);

    margin:0 auto 22px;

}



/*==========================================================
    PREMIUM IMAGE STYLE
==========================================================*/

.book-grid img,
.author-grid img{

    transition:transform .45s ease,
               box-shadow .45s ease;

}

.book-grid img:hover,
.author-grid img:hover{

    transform:scale(1.02);

    box-shadow:
        0 40px 80px rgba(0,0,0,.18);

}



/*==========================================================
    TEXT SELECTION
==========================================================*/

::selection{

    background:var(--clr-gold);

    color:white;

}



/*==========================================================
    CUSTOM SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:11px;

}

::-webkit-scrollbar-track{

    background:#EFECE6;

}

::-webkit-scrollbar-thumb{

    background:var(--clr-gold);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#A98024;

}



/*==========================================================
    HOVER LINKS
==========================================================*/

a{

    transition:var(--transition);

}

a:hover{

    color:var(--clr-gold);

}



/*==========================================================
    FINAL SPACING POLISH
==========================================================*/

.hero,
.book-section,
.author-section,
.philosophy-section,
.quote-section,
.cta-section{

    position:relative;

}

.hero::after{

    content:"";

    position:absolute;

    right:-180px;

    top:120px;

    width:420px;

    height:420px;

    background:radial-gradient(circle,
                rgba(199,154,45,.08),
                transparent 70%);

    pointer-events:none;

}