/* General Styles */
body {
    font-family: sans-serif; /* Placeholder, choose specific fonts later */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

section {
    padding: 40px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

h1, h2 {
    font-family: serif; /* Placeholder for heading font */
    color: #000080; /* Navy Blue */
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

a {
    color: #000080; /* Navy Blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header & Navigation */
header {
    background-color: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5em;
    font-weight: bold;
    color: #000080; /* Navy Blue */
    text-decoration: none;
}

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

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

nav ul li a {
    font-weight: bold;
}

/* Hero Section */
.hero {
    text-align: center;
    background-color: #e6e6fa; /* Light lavender - complement navy */
    padding: 60px 20px;
    border-radius: 8px;
}

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

.hero p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #000080; /* Navy Blue */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0000cd; /* Medium Blue */
    text-decoration: none;
}

/* Traits Overview */
.traits-overview ol {
    list-style: decimal inside;
    padding-left: 0;
    margin-top: 10px;
}

.traits-overview li {
    margin-bottom: 8px;
    font-size: 1.1em;
}

/* Feature Sections */
.main-book-feature,
.series-preview,
.consultation-cta,
.about-snippet {
    text-align: center;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 0 0 10px 0;
}

footer nav ul {
    justify-content: center;
}

footer nav ul li a {
    color: #fff;
}

/* Responsive Design (Basic Example) */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap; /* Allow wrapping on small screens */
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px; /* Adjust spacing for smaller screens */
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.7em;
    }
}

