body {
    background-color: #0f1f2e;
    color: white;
    font-family: Georgia, serif;
    max-width: 1000px;
    margin: auto;
    padding: 30px;
    line-height: 1.7;
}

nav {
    text-align: center;
    margin-bottom: 40px;
    padding: 15px;
    border-bottom: 1px solid #444;
}

nav a {
    color: #ff7777;
    text-decoration: none;
    font-weight: bold;
    margin: 0 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

nav a:hover {
    color: white;
}

h1 {
    text-align: center;
    font-size: 3rem;
}

h2 {
    color: #ff7777;
}

a {
    color: #ff7777;
}

hr {
    border: 1px solid #444;
    margin: 40px 0;
}
.button {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, #c49b3a, #e0b94f);
    color: #0b0f14;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    margin: 20px 0;
}

h1 {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.hero {
    text-align: center;
    padding: 120px 30px;
    margin-bottom: 70px;

background:
    linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.65)
    ),
    url("images/herobanner.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 15px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #ff2a2a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

.book {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
@media (max-width: 800px) {
    .book {
        flex-direction: column;
        text-align: center;
    }

    .book ul {
        text-align: left;
        }
    }
.book.featured {
    border: 2px solid #c49b3a;
}

.book.secondary {
    opacity: 0.9;
}
.book img {
    width: 220px;
    flex-shrink: 0;
    height: auto;
    display: block;
    margin: 0;
}
.book {
    margin-top: 60px;
    margin-bottom: 60px;
}
.trailer {
    text-align: center;
    margin: 80px 0;
}

.trailer iframe {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    max-width: 100%;
}
.trailer {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
}
.trailer iframe {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    max-width: 100%;
}
.book.secondary {
    opacity: 0.9;
    border: 2px solid #444;
}
.book div {
    flex: 1;
}
.about {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 60px;
}

.author-photo {
    width: 280px;
    border-radius: 15px;
    flex-shrink: 0;
}

.about-text {
    flex: 1;
}

@media (max-width: 800px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .author-photo {
        margin: auto;
    }
}
.reviews {
    margin: 100px 0;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 40px;
}

.review {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #c49b3a;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.review p {
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 0;
}

.review span {
    color: #c49b3a;
    font-weight: bold;
}
footer {
    text-align: center;
    margin-top: 100px;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #aaa;
}
nav a.active {
    color: #c49b3a;
}
.reviews {
    margin: 100px 0;
    padding-top: 40px;
    border-top: 1px solid #444;
}
.trailer .button {
    display: block;
    width: fit-content;
    margin: 25px auto 0 auto;
}
