/* Global styles */
:root {
    --primary-color: #36b3c7;
    --text-color: #333;
    --background-color: #f8f8f8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

/* Navigation */
nav {
    padding: 2rem;
    text-align: right;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Main content */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Profile section */
.profile-section {
    margin-bottom: 4rem;
}

.headshot {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bio p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* Newsletter section */
.newsletter-section {
    margin: 4rem 0;
}

.newsletter-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.subscribe-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.subscribe-button:hover {
    opacity: 0.9;
}

/* Social links */
.social-links {
    margin-top: 3rem;
}

.social-links a {
    margin: 0 1rem;
    opacity: 0.7;
}

.social-links img {
    width: 24px;
    height: 24px;
}

.social-links a:hover {
    opacity: 1;
}

/* Blog post styles */
.blog-post {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-post article {
    margin-bottom: 3rem;
}

.blog-post header {
    margin-bottom: 2rem;
}

.blog-post h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
}

.post-content {
    font-size: 1.1rem;
}

/* Markdown content styles */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content code {
    background-color: #f6f8fa;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 85%;
}

.post-content pre {
    background-color: #f6f8fa;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.post-content pre code {
    background-color: transparent;
    padding: 0;
    font-size: 0.9rem;
}

/* Blog list styles */
.blog-preview {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.blog-preview:last-child {
    border-bottom: none;
}

.blog-preview h2 {
    margin-bottom: 0.5rem;
}

.blog-preview h2 a {
    text-decoration: none;
    color: #333;
}

.blog-preview h2 a:hover {
    color: #0066cc;
}

.blog-preview time {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

/* Blog listing styles */
.blog-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    text-align: left;
}

.blog-section h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-preview {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.blog-preview:last-child {
    border-bottom: none;
}

.blog-preview h2 {
    margin: 0 0 0.5rem 0;
}

.blog-preview h2 a {
    color: var(--text-color);
    text-decoration: none;
}

.blog-preview h2 a:hover {
    color: var(--primary-color);
}

.blog-preview time {
    color: #666;
    font-size: 0.9rem;
}

/* Newsletter signup form */
.newsletter-signup {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
}

.bento-formkit {
    width: 100% !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    background: #fff !important;
    border: 1px solid #eee !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    font-family: inherit !important;
}

.bento-formkit-headline {
    font-size: 1.5rem !important;
    font-weight: bold !important;
    color: var(--text-color) !important;
    margin-bottom: 0.5rem !important;
}

.bento-formkit-subheader {
    font-size: 1rem !important;
    color: #666 !important;
    margin-bottom: 1.5rem !important;
}

.bento-formkit-input {
    display: block !important;
    width: 100% !important;
    background-color: #fff !important;
    border-radius: 4px !important;
    border: 1px solid #ddd !important;
    color: var(--text-color) !important;
    padding: 0.8rem 1rem !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    transition: border-color 0.2s ease !important;
}

.bento-formkit-input:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
}

.bento-formkit-button {
    width: 100% !important;
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    padding: 0.8rem 1rem !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: opacity 0.2s ease !important;
}

.bento-formkit-button:hover {
    opacity: 0.9 !important;
}

.bento-formkit-disclosure {
    font-size: 0.8rem !important;
    color: #666 !important;
    margin-top: 1rem !important;
    text-align: center !important;
}

/* Thank you page styles */
.thank-you-section {
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
}

.thank-you-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.thank-you-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.thank-you-section ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.thank-you-section ul li {
    margin: 1rem 0;
}

.thank-you-section ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.thank-you-section ul li a:hover {
    text-decoration: underline;
} 