/* Dark Fantasy Theme for Reader's Corner */

body {
    background: #0f0f0f;
    color: #e6e6e6;
}


/* Dark header */
.dark-header {
    background: rgba(0,0,0,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dark-header a {
    color: #ff4d4d;
}

.logo a {
    background: linear-gradient(135deg, #ff4d4d, #ff9966) !important;
    color: #ffffff !important;
}
/* Dark theme underline override */
.main-nav a::after {
    background: linear-gradient(135deg, #ff4d4d, #ff9966) !important;
}

.header-socials a i {
  color: #ff4d4d !important;   /* neon mint, matches your theme */
  font-size: 0.9rem;
}
.header-socials {
    display: flex;
    gap: 0.5rem;
}

.header-socials a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ff4d4d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    text-decoration: none;
    color: #ff4d4d;
}

h2{
    color: #ff4d4d;
}

/* PARALLAX HERO */
.reading-hero {
    position: relative;
    height: 60vh;
    background-image: url('../images/parallax/red-rising.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reading-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}

.reading-hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    padding: 0 1rem;
}

.reading-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff4d4d, #ff9966);
    -webkit-background-clip: text;
    color: transparent;
}

.reading-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ABOUT SECTION */
.reading-about {
    background: #141414;
    color: #cccccc;
}

.reading-about p {
    max-width: 700px;
    margin: 0 auto;
    color: #bbbbbb;
}

/* BOOK GRID */
.reading-books {
    background: #0f0f0f;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.book-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

.book-cover img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.book-info {
    margin-top: 1rem;
}

.book-info h3 {
    margin: 0 0 0.4rem 0;
    font-size: 1.1rem;
}

.book-info .author {
    color: #ff9966;
    font-size: 0.9rem;
}

.book-info .genre {
    color: #bbbbbb;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.book-btn {
    background: linear-gradient(135deg, #ff4d4d, #ff9966);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
}

/* Dark footer */
.dark-footer {
    background: #000000;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.dark-footer p {
    color: #888888;
}
