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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #0a0e1a;
    color: #f1fc04;
    line-height: 1.6;
}

.navbar {
    background-color: #0a0e1a;
    padding: 1.5rem 0;
    border-bottom: 2px solid #00e89e;
}

footer.navbar {
    border-bottom: none;
    border-top: 2px solid #00e89e;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.nav-content.breadcrumb {
    justify-content: center;
    gap: 0.75rem;
}

.breadcrumb-separator {
    color: #d0eefd;
    font-size: 1.3rem;
    font-weight: 600;
}

.breadcrumb-current {
    color: #d0eefd;
    font-size: 1.3rem;
    font-weight: 600;
}

.nav-link {
    color: #d0eefd;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00e89e;
}

.praise-section {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.praise-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d0eefd;
    margin-bottom: 2rem;
}

.praise-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.praise-quote {
    padding: 1.5rem 0;
    text-align: left;
    margin: 0;
    border-bottom: 1px solid #00e89e;
}

.praise-quote:last-child {
    border-bottom: none;
}

.quote-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #d0eefd;
    margin-bottom: 1rem;
}

.quote-citation {
    font-size: 1.3rem;
    color: #d0eefd;
    font-style: normal;
}

.quote-citation a {
    color: #d0eefd;
    text-decoration: underline;
}

.reviews-section {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.reviews-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d0eefd;
    margin-bottom: 2rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.book-cover {
    display: flex;
    justify-content: center;
    align-items: center;
}

#cover-image {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.book-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.book-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d0eefd;
    line-height: 1.2;
}

.logline {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #d0eefd;
}

.book-links {
    padding: 0;
    margin-top: 1rem;
}

.book-links h2 {
    color: #d0eefd;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.book-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.book-links li {
    margin: 0;
}

.book-links a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #d0eefd;
    background-color: transparent;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    border: 2px solid #00e89e;
    transition: background-color 0.3s ease;
    text-align: center;
}

.book-links a:hover {
    background-color: #00e89e;
    color: #0a0e1a;
}

@media (max-width: 768px) {
    footer .nav-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .home-container {
	align-items: center;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .book-title {
        font-size: 2.5rem;
    }

    .nav-content {
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .book-links ul {
        grid-template-columns: 1fr 1fr;
    }
}
