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

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c2c2c;
    background: #faf8f5;
}

/* Header */
.header {
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8B4513;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    transition: color 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #8B4513;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 8rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-style: italic;
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    background: white;
    color: #8B4513;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-family: 'Segoe UI', sans-serif;
}

.cta-btn:hover {
    background: #faf8f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Books */
.books {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.books h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.book-card {
    background: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.book-card:hover {
    transform: translateY(-10px);
}

.book-cover {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #2c2c2c;
}

.book-card .year {
    padding: 0 1.5rem;
    color: #8B4513;
    font-size: 0.9rem;
}

.book-card .description {
    padding: 0.5rem 1.5rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.btn-secondary {
    margin: 0 1.5rem 1.5rem;
    padding: 0.6rem 1.5rem;
    background: #f0f0f0;
    color: #8B4513;
    border: 1px solid #ddd;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #8B4513;
    color: white;
    border-color: #8B4513;
}

/* About */
.about {
    background: white;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.awards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.award {
    background: #faf8f5;
    padding: 2rem;
    border-left: 4px solid #8B4513;
}

.award h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.award p {
    color: #999;
    margin: 0;
}

/* Blog */
.blog {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-post h3 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.blog-post .date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-post p {
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #A0522D;
}

/* Contact */
.contact {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .books h2,
    .about-content h2,
    .blog h2,
    .contact h2 {
        font-size: 2rem;
    }

    .books-grid,
    .blog-posts {
        grid-template-columns: 1fr;
    }
}