<style>


html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

 :root {
         --book-grid-width: 450px;  
         --book-cover-width: 650px;
                    
  }

* {
    box-sizing: border-box;
}
        
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

        body {
            font-family: Arial, sans-serif;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px;
            text-align: center;
            line-height: 1.6;
            background-color: #050505;
            color: #D1D5DB;
        }

.tagline {
   
 color: #d4af37;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
   
    letter-spacing: 0;
    font-size: clamp(24px, 5vw, 60px);


}
        
h2, h3 {
    color: #C9A24A;
}

h2 {
    font-size: 2.25rem;
}

h4 {
    color: #D1D5DB;
    margin-top: 0;
    font-size: clamp(18px, 3vw, 24px);
   

}

h5 {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #C9A24A;
}

h5 {
   font-size: 1.75rem;
}
        
.contact-email {
    color: #E5E7EB;
    font-size: 1.25em;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.contact-email:hover {
    color: #C9A24A;
    transform: translateY(-2px);
}

.author-banner {
    margin: 40px 0;
}

.author-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
        
.author-banner img {
    transition: transform 0.3s ease;
}

.author-banner img:hover {
    transform: scale(1.01);
}

        
a {
    color: #C9A24A;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
}
        
.banner {
    margin-bottom: 0px;
    width: 100%;
    margin: 0;
}

.banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
        
.book:hover img {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(212,175,55,.3);
}
        
        .books {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .book {
            width: 300px;
        }

        .book img {
            height: var(--book-grid-width);
            width: auto;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
         
         .book-cover {
            text-align: center;
        }

         .book-cover img {
            height: var(--book-cover-width);
            width: auto;
            max-width: 100%;
            border-radius: 8px;
            margin-bottom: 20px; 
            box-shadow: 0 3px 10px rgba(0,0,0,.2);
       }
         .featured-book img {

            height: var(--book-cover-width);
            width: auto;
            display: block;
            margin: 0 auto;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,.2);

      }
       
        .button {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            border: 1px solid #C9A24A;
            background-color: #0b0b0b;
            color: #fff;
            text-decoration: none;
            border: 1px solid #C9A24A;
            box-shadow: 0 0 8px rgba(201,162,74,.25);
            border-radius: 8px;
            font-weight: bold;
            transition: all .25s ease;
        }

        .button:hover {
            background-color: #C9A24A;
            color: #000;
        }
         .nav-button {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            border: 1px solid #C9A24A;
            background-color: #0b0b0b;
            color: #fff;
            text-decoration: none;
            border: 1px solid #C9A24A;
            box-shadow: 0 0 8px rgba(201,162,74,.25);
            border-radius: 8px;
            font-weight: bold;
            transition: all .25s ease;
        }
        
        hr {
            border: 0;
            height: 1px;
            background-color: #C9A24A;
            margin: 50px 0;
        }
            
        .article-link {
            color: #C9A24A;
            text-decoration: none;
}
 
        @media (max-width: 768px) {


            
           :root {
                --book-grid-width: 375px;
                --book-cover-width: 425px;
                }

                       
            body {
                padding: 20px;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .books {
                gap: 30px;
            }
            .featured-book img {
                width: 100%;
                max-width: 350px;
                height: auto;
            }
            .book {
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
            }
            
            .nav-button {
                padding: 8px 12px;
                font-size: 0.9em;
                margin-top: 5px;
            }
        
            .button {
                display: block;
                width: 100%;
                box-sizing: border-box;
                padding: 14px;
            }
        
             .banner img,
             .author-banner img {
               width: 100%;
               max-width: 100%;
           }

}

       
    </style>
