/* ==========================================
   GROWINGMINDSET888
   STYLE.CSS
========================================== */

/* ==========================
   GOOGLE FONT
========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#faf8f5;

    color:#2d2d2d;

    line-height:1.8;

}

/* ==========================
   CONTAINER
========================== */

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

/* ==========================
   IMAGE
========================== */

img{

    width:100%;

    display:block;

}

/* ==========================
   LINK
========================== */

a{

    text-decoration:none;

    color:inherit;

}

/* ==========================
   LIST
========================== */

ul{

    list-style:none;

}

/* ==========================
   HEADING
========================== */

h1{

    font-size:54px;

    font-weight:700;

    line-height:1.2;

}

h2{

    font-size:38px;

    margin-bottom:20px;

}

h3{

    font-size:24px;

    margin-bottom:15px;

}

p{

    font-size:18px;

    color:#555;

}

/* ==========================
   BUTTON
========================== */

.btn{

    display:inline-block;

    margin-top:30px;

    padding:16px 34px;

    background:#b58b46;

    color:#fff;

    border-radius:8px;

    transition:.3s;

    font-weight:600;

}

.btn:hover{

    background:#926f37;

}

/* ==========================
   HEADER
========================== */

header{

    background:#ffffff;

    box-shadow:0 2px 15px rgba(0,0,0,.05);

    position:sticky;

    top:0;

    z-index:999;

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 0;

}

.logo{

    font-size:28px;

    font-weight:700;

    color:#b58b46;

}

nav ul{

    display:flex;

    gap:30px;

}

nav a{

    font-weight:500;

}

nav a:hover{

    color:#b58b46;

}

/* ==========================
   HERO
========================== */

#hero{

    padding:15px 0;

    text-align:center;

    background-color:#F8F5EF;

}

#hero h1{

    max-width:850px;

    margin:auto;

}

#hero p{

    max-width:1000px;

    margin:30px auto;

}

/* ==========================
   SECTION
========================== */

section{

    padding:30px 0;

}

/* ==========================
   BOOK GRID
========================== */

.book-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:40px;

    margin-top:40px;

}

.book-card{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.book-card:hover{

    transform:translateY(-8px);

}

.book-card img{

    height:1fr;

    object-fit:cover;

}

.book-card h3{

    padding:10px 20px;

}

.book-card p{

    padding:10px 20px;

}

.book-card li{

    padding:10px 20px;
}

.book-card a{

    display:block;

    margin:25px 20px 25px;

    color:#926f37;

    font-weight:600;

}

/* ==========================
   BLOG
========================== */

.blog-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:30px;

}

.blog-grid article{

    background:#fff;

    padding:30px;

    border-radius:10px;

    box-shadow:0 4px 15px rgba(0,0,0,.06);

}

/* ==========================
   CTA
========================== */

#cta{

    background:#b58b46;

    color:#fff;

    text-align:center;

}

#cta h2{

    color:#fff;

}

#cta .btn{

    background:#fff;

    color:#b58b46;

}

#cta .btn:hover{

    background:#f1f1f1;

}

/* ==========================
   FOOTER
========================== */

footer{

    background:#222;

    color:#ddd;

    text-align:center;

    padding:10px 0;

}

footer p{

    color:#ddd;

}

/* ==========================
   ANIMATION
========================== */


/* ==========================
   STICKY HEADER
========================== */

header.sticky{

    box-shadow:0 8px 25px rgba(0,0,0,.12);

    transition:.3s;

}

/* ==========================
   CONTACT
========================== */

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    margin-top:40px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px;

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

}

.contact-form textarea{

    resize:vertical;

}

.contact-form button{

    border:none;

    cursor:pointer;

}

/*sosmed ==============================*/

.social-proof{

    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 0;

}

.social-proof img{

    width:100%;
    max-width:1000px;
    border-radius:16px;
    transition:opacity .3s ease;
}

/*nav===================*/

#menu-toggle{

    display:none;

}

nav ul{

    display:flex;
    gap:30px;
    list-style:none;

}