/*
Theme Name: Avanielle Fixed Child Theme
Template: twentytwentyone
Version: 1.0
Description: Fixed child theme for Avanielle Greene – Paranormal Romance
*/

/* -------------------- Global -------------------- */
body {
    font-family: 'Georgia', serif;
    color: #f5f5f5;
    background-color: #111;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    color: #c0392b;
}

/* -------------------- Header -------------------- */
.site-header {
    background: linear-gradient(to bottom, #000000, #1a1a1a);
    text-align: center;
    padding: 30px 0 10px 0;
    border-bottom: 1px solid #444;
}

.site-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
}
.site-title::before {
    content: "🖤 ";
}
.site-description {
    color: #ccc;
    margin-top: 5px;
    font-size: 0.95rem;
    font-style: italic;
}

/* -------------------- Navigation -------------------- */
.primary-navigation {
    background: #000;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    text-align: center;
}
.primary-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    gap: 30px;
}
.primary-navigation a {
    font-weight: bold;
    color: #fff;
    padding: 10px;
    display: block;
}
.primary-navigation a:hover {
    color: #e74c3c;
}

/* -------------------- Hero Section -------------------- */
.hero-section {
    background: #1a1a1a;
    padding: 80px 20px;
    text-align: center;
}
.hero-section h1 {
    font-size: 2.5rem;
    color: #f5f5f5;
    margin-bottom: 20px;
}
.hero-section p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* -------------------- Section Blocks -------------------- */
.section-dark {
    background: #111;
    padding: 60px 20px;
    text-align: center;
}

.section-light {
    background: #fff;
    color: #333;
    padding: 60px 20px;
    text-align: center;
}

.section-light h2 {
    color: #a52a2a;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding-bottom: 5px;
}

/* -------------------- Featured Books -------------------- */
.featured-books {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.book-card {
    background: #111;
    border: 1px solid #444;
    border-radius: 6px;
    width: 280px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}
.book-card:hover {
    transform: scale(1.05);
}
.book-card img {
    max-width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}
.book-card h3 {
    color: #fff;
    margin-bottom: 10px;
}
.book-card p {
    color: #ccc;
}

/* -------------------- Newsletter / Subscribe -------------------- */
.subscribe-section {
    background: #111;
    padding: 50px 20px;
    text-align: center;
}
.subscribe-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #444;
    display: inline-block;
    padding-bottom: 5px;
}
.subscribe-section input[type="email"] {
    padding: 10px;
    width: 250px;
    margin-right: 10px;
    border: 1px solid #444;
    border-radius: 4px;
}
.subscribe-section button {
    padding: 10px 20px;
    background: #c0392b;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}
.subscribe-section button:hover {
    background: #e74c3c;
}

/* -------------------- Contact -------------------- */
.contact-section {
    background: #fff;
    color: #333;
    padding: 60px 20px;
    text-align: center;
}
.contact-section h2 {
    color: #a52a2a;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding-bottom: 5px;
}

/* -------------------- Footer -------------------- */
.site-footer {
    background: #000;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    padding: 15px 0;
    border-top: 1px solid #444;
}
