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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #1a1f3a;
    color: #f5eec2;
    line-height: 1.6;
}

.navbar {
    background-color: #1a1f3a;
    padding: 1.5rem 0;
    border-bottom: 2px solid #fe8a72;
}

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

.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: #f5eec2;
    font-size: 1.3rem;
    font-weight: 600;
}

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

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

.nav-link:hover {
    color: #fe8a72;
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.book-detail-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.media-kicker {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fe8a72;
}

.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-info .media-kicker {
    color: #f5eec2;
}

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

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

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

.book-links h2 {
    color: #f5eec2;
    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: #f5eec2;
    background-color: transparent;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    border: 2px solid #fe8a72;
    transition: background-color 0.3s ease;
    text-align: center;
}

.book-links a:hover {
    background-color: #fe8a72;
    color: #1a1f3a;
}

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

.profile-photo {
    display: flex;
    justify-content: center;
}

#profile-image {
    max-width: 100%;
    height: auto;
}

.biography h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #f5eec2;
}

.biography p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #f5eec2;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-container h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #f5eec2;
}

.press-section {
    margin-bottom: 3rem;
}

.press-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5eec2;
    margin-bottom: 2rem;
}

.press-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f5eec2;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.press-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f5eec2;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.press-section p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #f5eec2;
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list + .contact-list {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #fe8a72;
}

.contact-list li {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #f5eec2;
}

.contact-list a {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #f5eec2;
    text-decoration: underline;
}

.error-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: #fe8a72;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 2.5rem;
    font-weight: 600;
    color: #f5eec2;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.5rem;
    color: #f5eec2;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.error-link {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #2b7a8e;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: 2px solid #2b7a8e;
}

.error-link:hover {
    background-color: #1f5a6a;
    border-color: #1f5a6a;
}

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

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

    .about-container {
        padding: 2rem 1rem;
    }

    .contact-container {
        padding: 2rem 1rem;
    }

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

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

@media (max-width: 1024px) {

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-content {
        gap: 1.5rem;
    }

    .error-code {
        font-size: 5rem;
    }

    .error-message {
        font-size: 2rem;
    }

    .error-description {
        font-size: 1.2rem;
    }
}
