body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: #f8f8f8;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero img {
    width: 100%;
    height: auto;
    opacity: 0.7;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-text h1 {
    font-size: 3em;
    color: black;
}

.hero-text p {
    font-size: 1.5em;
    color: black;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.about, .book-preview {
    padding: 40px 20px;
    text-align: center;
    align-items: flex-end;
}

.photo img{
    margin: 10px;
    max-width: 400px;
    height: auto;
}

.book-preview .gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.book-preview .gallery img {
    margin: 10px;
    max-width: 300px;
    height: auto;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}

footer nav ul li {
    margin: 0 10px;
}

footer nav ul li a {
    color: white;
    text-decoration: none;
}


.book-details {
    padding: 40px 20px;
    text-align: center;
}

.book-details h1, .book-details h2 {
    margin-bottom: 20px;
}

.book-details p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.book-details .gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.book-details .gallery img {
    margin: 10px;
    max-width: 300px;
    height: auto;
}

.book-details .reviews {
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: left;
    font-style: italic;
}

.book-details .reviews p {
    margin-bottom: 10px;
}

.book-details .cta {
    margin-top: 20px;
}

.purchase {
    padding: 40px 20px;
    text-align: center;
}

.purchase h1 {
    margin-bottom: 20px;
}

.purchase p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.order-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.order-form input, .order-form textarea, .order-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.order-form textarea {
    resize: vertical;
    height: 100px;
}

.order-form button {
    width: 100%;
    padding: 15px;
    background: #ff6f61;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
}

