/* Modern Reset & Background */
body {
    font-family: 'Georgia', serif; /* A more literary font */
    background-color: #1a1c20; /* Deep Charcoal */
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.author-card {
    max-width: 450px;
    background-color: #24272d; /* Slightly lighter slate */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    text-align: center;
}

/* Author Styling */
.author-photo {
    width: 90px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #c5a059; /* Gold accent */
    margin-bottom: 15px;
}

h1 {
    font-size: 2.2rem;
    margin: 10px 0 5px;
    color: #fff;
}

.tagline {
    font-style: italic;
    color: #c5a059;
    margin-bottom: 20px;
}

.divider {
    border: 0;
    border-top: 1px solid #3d424a;
    margin: 20px auto;
    width: 50%;
}

/* Content Sections */
.bio-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #b0b0b0;
}

.book-showcase {
    margin: 30px 0;
}

.label {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #c5a059;
    margin-bottom: 15px;
}

.book-cover {
    width: 200px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-radius: 2px;
}

.book-showcase h3 {
    /* margin-top: 15px; */
    font-weight: normal;
}

.book-showcase h4 a {
    margin-top: 5px;
    font-weight: normal;
    color: #e2bc74;
    text-decoration: none;
}

/* Button Styling */
.subscribe-btn {
    background-color: #c5a059;
    color: #1a1c20;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.subscribe-btn:hover {
    background-color: #e2bc74;
    transform: translateY(-2px);
}

.author-logo-section {
    margin: 10px 0;
}

.author-logo {
    width: 100px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-radius: 2px;
}
