/* Little Mike Books - Base Styles */
:root {
    --primary: #2d5a4a;
    --secondary: #f4a460;
    --accent: #e8d4a8;
    --bg: #fffaf0;
    --text: #333;
    --light-text: #666;
}

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

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Header & Nav */
header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

#page {
    scroll-margin-top: 80px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Buttons */
.cta-button, .link-button {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: transform 0.2s;
}

.cta-button:hover, .link-button:hover {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.testimonial {
    padding: 1.5rem;
    border-left: 3px solid var(--accent);
    margin-bottom: 1.5rem;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial cite {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Author Preview */
.author-preview {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to bottom, white, var(--bg));
}

.author-preview h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.author-preview p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer a {
    color: white;
    text-decoration: underline;
}

/* Page-specific styles */
.page-header {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to bottom, white, var(--bg));
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.about-content h2 {
    color: var(--primary);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.about-content h2:first-of-type {
    margin-top: 0;
}

.about-content p {
    margin-bottom: 1rem;
}

.about-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.about-content li {
    margin-bottom: 0.5rem;
}

.about-content a {
    color: var(--secondary);
}

/* Q&A Page */
.qa-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.qa-intro p {
    margin-bottom: 1rem;
}

.qa-intro ul {
    padding-left: 1.5rem;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq details {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq summary {
    padding: 1rem;
    cursor: pointer;
    font-weight: bold;
    background: white;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::before {
    content: "➕ ";
}

.faq details[open] summary::before {
    content: "➖ ";
}

.faq details[open] summary {
    border-bottom: 1px solid var(--accent);
    margin-bottom: 0;
}

.faq details p {
    padding: 1rem;
    background: var(--bg);
    margin: 0;
}

.contact-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to bottom, white, var(--bg));
    margin-top: 2rem;
    border-radius: 8px;
}

/* Blog */
.blog-placeholder {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.blog-placeholder ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.blog-placeholder li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--accent);
}

.blog-placeholder li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}
/* Book Cover */
.book-cover {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin: 0 auto 1rem;
    display: block;
}

.hero {
    text-align: center;
    padding: 3rem 1rem;
}
