/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background-color: #f9f6ff;
    color: #333;
    line-height: 1.6;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Header Styles */
header {
    background-color: #6a0dad;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Content Styles */
.content-section {
    padding: 2rem 0;
}

h1, h2, h3 {
    color: #4b0082;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.2rem;
    border-bottom: 2px solid #6a0dad;
    padding-bottom: 10px;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1rem;
}

blockquote {
    background-color: #f0e6ff;
    border-left: 5px solid #6a0dad;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: bold;
    color: #555;
}

/* Image Styles */
.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 1rem 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 2rem 0;
}

.image-gallery img {
    max-width: 300px;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background-color: #6a0dad;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 1rem 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #4b0082;
    transform: translateY(-3px);
}

/* Footer Styles */
footer {
    background-color: #4b0082;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    .image-gallery img {
        max-width: 100%;
    }
    
    .book-cover h1 {
        font-size: 2rem;
    }
}