/* style.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f0f8ff;
    color: #333;
}

header {
    background-color: #1F0161;
    color: white;
    padding: 20px;
    text-align: center;
    background-image: url('images/pet-background.jpg'); /* Add background image */
    background-size: cover;
    background-position: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffeb3b;
}

.book-preview {
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

.book-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1F0161;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}

.btn:hover {
    background-color: #1F0161;
}

.features {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.feature img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.cta {
    background-color: #1F0161;
    color: white;
    padding: 40px;
    margin: 20px 0;
    border-radius: 10px;
}

footer {
    background-color: #1F0161;
    color: white;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

footer nav ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer nav ul li a {
    color: white;
    text-decoration: none;
}

footer nav ul li a:hover {
    text-decoration: underline;
}

/* Additional Pages */
.page-content {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}
