.books h1{
    font-size:72px;      /* About 3x larger */
    font-weight:700;
    margin-bottom:30px;
    color:#222;
}



/*
Theme Name: ScottLynn Publishing
Author: OpenAI
Version: 1.0
*/

/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#fff;
    color:#222;
}

/* ==========================
   HEADER
========================== */

.top-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#000;
    height:70px;
    display:flex;
    align-items:center;
    padding:0 35px;
}

.logo img{
    height:58px;
    width:auto;
    display:block;
}

.main-menu{
    margin-left:40px;
}

.main-menu ul{
    display:flex;
    list-style:none;
    gap:60px;
}

.main-menu a{
    font-family:'Alfa Slab One',serif;
    color:#fff;
    text-decoration:none;
    font-size:18px;
}

.main-menu a:hover{
    color:#d4af37;
}

/* ==========================
   PAGE
========================== */

.container{
    max-width:1400px;
    margin:auto;
    padding:30px;
}

/* ==========================
   BOOK GRID
========================== */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    gap:30px;
    justify-items:center;
    align-items:start;
}

/* Every book occupies the same size */

.book{
    width:200px;
    height:300px;
    display:block;
    overflow:hidden;
    border-radius:10px;
    box-shadow:0 10px 20px rgba(0,0,0,.25);
    transition:transform .3s ease;
}

.book:hover{
    transform:translateY(-8px);
}

/* Every cover is identical size */

.book img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    border-radius:10px;
}

/* Coffee book */
.coffee-book{
    width:200px;
    height:300px;
}

.coffee-book img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

/* ========================================
   PROMOTION SECTION
======================================== */

.promotion-section{
    width:100%;
    text-align:center;
    margin:80px auto 60px;
    padding:60px 20px;
    clear:both;
}

.promotion-section h2{
    font-size:72px;          /* About 3x larger */
    font-weight:800;
    line-height:1.2;
    color:#111;
    text-align:center;
    margin:0 auto 50px;
    max-width:1200px;
}

.promotion-section h2 br{
    display:block;
}


/* ==========================================
   AUDIBLE SECTION
========================================== */

.audible-section{
    width:100%;
    text-align:center;
    padding:80px 20px;
    background:#fff;
}



.audible-section h2{
    font-size:54px;
    font-weight:700;
    margin-bottom:45px;
    color:#222;
}

.audible-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:35px;
    max-width:1400px;
    margin:0 auto;
    justify-items:center;
}

.audible-grid a{
    display:block;
    width:180px;
    text-decoration:none;
}

.audible-grid img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    transition:all .3s ease;
}

.audible-grid img:hover{
    transform:translateY(-10px) scale(1.08);
    box-shadow:0 18px 40px rgba(0,0,0,.35);
}


/* ===========================================
   PREMIUM AUDIBLE SHOWCASE
=========================================== */

.audible-section{

    padding:100px 0;

    text-align:center;

    background:#fff;

}

/* Audible Logo */

.audible-logo img{
    display:block;
    width:800px;
    max-width:95%;
    height:auto;
    margin:0 auto 50px;
}



/* Blue Showcase */

.audible-showcase{

    position:relative;

    width:900px;

    height:700px;

    margin:0 auto;

    border-radius:25px;

    overflow:hidden;

    background:
        radial-gradient(circle at center,
        rgba(74,170,255,.20) 0%,
        rgba(0,0,0,0) 45%),

        radial-gradient(circle at 78% 70%,
        rgba(255,200,60,.10) 0%,
        rgba(0,0,0,0) 40%),

        linear-gradient(180deg,
        #0B1C2E 0%,
        #07121D 45%,
        #05080D 100%);

    box-shadow:
        0 25px 70px rgba(0,0,0,.45);

}

/* Shared Book Style */

.audible-showcase .book{

    position:absolute;

    display:block;

    transition:.35s;

}

.audible-showcase img{

    display:block;

    width:180px;

    height:180px;

    border-radius:20px;

    object-fit:cover;

    box-shadow:
        0 20px 45px rgba(0,0,0,.60);

}

.audible-showcase .book:hover{

    transform:scale(1.12) !important;

    z-index:99;

}

/* ===========================
   INDIVIDUAL POSITIONS
=========================== */

/* Left Large */

.book1{

    top:110px;

    left:70px;

    transform:rotate(-18deg);

}

/* Center Top Largest */

.book2{

    top:40px;

    left:360px;

    transform:rotate(3deg) scale(1.15);

}

/* Upper Right */

.book3{

    top:90px;

    right:80px;

    transform:rotate(-10deg) scale(.88);

}

/* Bottom Left */

.book4{

    bottom:70px;

    left:110px;

    transform:rotate(-8deg) scale(.82);

}

/* Center Bottom */

.book5{

    bottom:55px;

    left:330px;

    transform:rotate(-6deg);

}

/* Right Center */

.book6{

    top:300px;

    right:90px;

    transform:rotate(2deg);

}


/* ==========================
   Kindle Promotional Banner
========================== */

.kindle-section {
    padding: 40px 0;
    text-align: center;
    background: transparent;
}

.kindle-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.kindle-banner {
    display: block;
    width: 100%;
    max-width: 1000px;   /* Same width as Audible banner */
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.kindle-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}



/*=============================
 Kindle Section
==============================*/

.kindle-promo{

    background:linear-gradient(180deg,#07111d 0%,#0b2b58 100%);
    padding:70px 20px 90px;
    text-align:center;
    overflow:hidden;
    position:relative;

}

.kindle-promo::after{

    content:'';
    position:absolute;
    left:-10%;
    bottom:-120px;
    width:120%;
    height:220px;
    background:#fff;
    border-radius:50%;
}

.kindle-logo img{

    width:180px;
    margin-bottom:25px;

}

.kindle-promo h2{

    color:#fff;
    font-size:54px;
    font-weight:800;
    margin-bottom:70px;

}

.kindle-books{

    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:20px;
    position:relative;
    z-index:2;

}

.kindle{

    background:#222;
    border-radius:14px;
    padding:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.45);
    transition:.35s;
    overflow:hidden;

}

.kindle img{

    width:150px;
    display:block;
    border-radius:4px;

}

.kindle:hover{

    transform:translateY(-12px);

}

.left2{

    transform:rotate(-8deg);

}

.left1{

    transform:rotate(-4deg);

}

.back{

    transform:translateY(-25px);
    z-index:1;

}

.center{

    transform:translateY(-55px);
    background:#5b1d20;
    z-index:10;
    box-shadow:0 0 50px rgba(50,150,255,.45);

}

.center img{

    width:180px;

}

.right1{

    transform:rotate(4deg);

}

.right2{

    transform:rotate(8deg);

}

/* Reflection */

.kindle-books::after{

    content:'';
    position:absolute;
    bottom:-45px;
    left:50%;
    transform:translateX(-50%);
    width:80%;
    height:45px;
    background:rgba(255,255,255,.10);
    filter:blur(18px);
    border-radius:50%;

}

/* Responsive */

@media(max-width:992px){

.kindle-books{

    flex-wrap:wrap;

}

.kindle{

    transform:none!important;

}

.center{

    order:-1;

}

.kindle-promo h2{

    font-size:38px;

}

}

@media(max-width:768px){

.kindle img{

    width:105px;

}

.center img{

    width:130px;

}

.kindle-logo img{

    width:140px;

}

.kindle-promo h2{

    font-size:30px;

}

}


