
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Baloo 2', cursive;
}

header {
    background-color: #6ec1e4;
    padding: 15px;
}

header nav a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
    font-weight: bold;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.book, .bio {
    background: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.placeholder-image {
    width: 150px;
    height: 220px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

form button {
    background-color: #6ec1e4;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
.book {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.book img {
    width: 160px;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.bio {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bio img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.site-header {
    background-color: #6ec1e4;
    padding: 15px 0;
}

.header-inner {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.8rem;
    color: white;
    margin: 0;
}
.main-nav a {
    margin-left: 20px;
    text-decoration: none;
    font-family: 'Baloo 2', cursive;
    color: white;
    font-size: 1.1rem;

    /* Important: reserve space for underline */
    padding-bottom: 6px;
    border-bottom: 3px solid transparent;
}

.main-nav a.active {
    border-bottom-color: white;
}
@media (max-width: 700px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }

    .main-nav a {
        margin: 10px;
        display: inline-block;
    }
}
.form-intro {
    max-width: 600px;
    margin-bottom: 25px;
    font-size: 1rem;
}
.contact-form {
    max-width: 600px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6ec1e4;
    outline: none;
}
.submit-button {
    background-color: #6ec1e4;
    color: white;
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    border: none;
    border-radius: 6px;
    padding: 12px 25px;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #58afcf;
}
.thank-you {
    max-width: 600px;
    background: #e9f6fc;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.thank-you h2 {
    font-family: 'Baloo 2', cursive;
    color: #3a8fb7;
    margin-bottom: 10px;
}
.site-footer {
    background-color: #f1f1f1;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 3px solid #6ec1e4;
}

.footer-inner {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    font-size: 0.95rem;
}

.footer-title {
    font-family: 'Baloo 2', cursive;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #3a8fb7;
}

.site-footer a {
    color: #3a8fb7;
    text-decoration: none;
    font-weight: 500;
}

.site-footer a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
}
