* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #333;
    background: white;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HEADER */
header {
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.logo {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 1px;
    text-decoration: none !important;
    color: inherit !important;
}

.logo:hover {
    color: inherit !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* MAIN SECTIONS */
main {
    padding: 6rem 0 6rem 0;
}

section {
    margin-top: 2rem;
    margin-bottom: 10rem;  /* More breathing room */
}

/* HERO */
.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.author-photo {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
    margin-left: auto;  /* Add this */
    margin-right: auto;
    max-width: 85%;  
}

.hero-subtitle strong {
    font-weight: 600;
    color: #333;
    font-style: normal;
}

/* SECTION HEADERS WITH RED ACCENT */
.section-header {
    border-left: 4px solid #c41e3a;
    padding-left: 1.5rem;
    margin: 0 0 4rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
}

/* BOOK SECTION */
.book-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.book-content-books {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.book-cover {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.book-info h3 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: -0.25rem;
    font-style: normal;
}

.book-subtitle {
    font-size: 1rem;
    color: #666;
    font-style: oblique;
    margin-bottom: 1.5rem;
}

.book-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 4px;
}

.book-status {
    color: #666;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.buy-links {
    margin: 2rem 0;
}

.buy-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;  /* Softer rounded corners */
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.buy-btn.primary {
    background: #c41e3a;  /* Red theme */
    color: white;
    border: 1px solid #c41e3a;
}

.buy-btn.primary:hover {
    background: #a01829;  /* Darker red on hover */
    border-color: #a01829;
}

.buy-btn.secondary {
    background: white;
    color: #c41e3a;  /* Red text */
    border: 1px solid #c41e3a;  /* Red border */
}

.buy-btn.secondary:hover {
    background: #f8f8f8;
    border-color: #a01829;
}

/* ABOUT ME SECTION (Homepage) */
.about-section {
    margin: 8rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.learn-more {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.learn-more:hover {
    text-decoration: underline;
}

/* SIMPLE ABOUT PAGE */

.simple-about {
    margin-top: 2rem;
}

.simple-about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-bio h1 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 2rem;
    color: #333;
}

.about-bio p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}
/* VISUAL BREAK IMAGE */
.visual-break {
    margin: 2.5rem 0;
    max-width: 66.67%;
}

.break-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* CONTINUING TEXT */
.continuing-text {
    max-width: 66.67%; /* Matches the width of your bio text column */
}

.continuing-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

/* NEWSLETTER */
.newsletter {
    text-align: center;
    max-width: 500px;
    margin: 8rem auto 6rem auto;  /* More breathing room */
}

.newsletter h3 {
    font-size: 1.3rem;  /* Slightly larger */
    font-weight: normal;
    margin-bottom: 2rem;  /* More space */
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);  /* Subtle shadow */
    border-radius: 6px;  /* Rounded corners */
    overflow: hidden;
}

.newsletter-subtitle {
    max-width: 400px;  /* Adjust this to match heading width */
    margin-top: -2rem;  /* Adjust this value as needed */
    /* Center the text block if desired */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-right: none;
    font-size: 0.9rem;
    font-family: inherit;
    border-radius: 0;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #c41e3a;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: 1px solid #c41e3a;  /* Red theme */
    background: #c41e3a;
    color: white;
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #a01829;
    border-color: #a01829;
}

/* Mailerlite Newsletter Form Styling */
.ml-form-embedContainer {
    text-align: center;
    max-width: 500px;
    margin: 8rem auto 6rem auto;
}

.ml-form-embedBody h3 {
    font-size: 1.25rem;
    font-family: Georgia, serif !important;
    color: #333;
    margin-bottom: 0.4rem;
}

.ml-form-embedBody p {
    color: #666;
    margin-bottom: 2rem;
}

.ml-form-formContent.horozintalForm {
    display: flex;
    justify-content: center;
}

.ml-form-horizontalRow {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ml-input-horizontal {
    display: flex;
    gap: 1rem;
}

.ml-input-horizontal input {
    width: 180px;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ml-button-horizontal button {
    min-width: 120px;
    padding: 0.75rem 2.5rem;
    background-color: #c41e3a;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FOOTER */
footer {
    padding: 3rem 0;
    border-top: 1px solid #eee;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* BOOKS PAGE */
.books-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.book-content-books {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.books-intro h1 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    color: #333;
}

.books-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.book-feature {
    margin-bottom: 8rem;
}

.book-feature:last-of-type {
    margin-bottom: 6rem;
}

.book-description {
    margin: 1.5rem 0 2rem 0;
}

.book-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* CONTACT PAGE */
.contact-section {
    max-width: 600px;
    margin: 0 auto 4rem auto;
    margin-top: 2.5rem;
    text-align: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

/* Contact page specific image centering */
.contact-section .visual-break {
    margin: 2rem auto; /* Auto centers the container */
    max-width: 70%;
    text-align: center; /* Ensures content is centered within container */
}

.contact-section h1 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: #333;
}

.contact-content {
    text-align: left;
}

.contact-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.email-link {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    text-decoration: underline;
}

.newsletter {
    margin-top: 2rem;  /* Increase this value to add more space */
    /* ...existing code... */
}

/* LAUNCH TEAM PAGE */
.launch-hero {
    margin-bottom: 6rem;
}

.hero-with-books {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text-center {
    flex: 1;
    text-align: center;
}

.book-cover-left,
.book-cover-right {
    flex-shrink: 0;
}

.hero-book-cover {
    width: 180px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hero-text-center h1 {
    font-size: 2.2rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: #333;
}

.hero-text-center .hero-subtitle {
    font-size: 1.2rem !important;
    color: #666 !important;
    font-style: italic !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

.hero-text-center p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* LAUNCH BENEFITS */
.launch-benefits {
    margin-bottom: 4rem;
}

.launch-benefits .section-header {
    margin-bottom: 2rem; /* Reduced from default 4rem */
}

.benefits-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
}

.benefits-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* SOCIAL PROOF */
.social-proof {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.social-proof p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* LAUNCH FORM */
/* Override MailerLite form top margin */
#mlb2-31411533.ml-form-embedContainer {
    margin-top: 2rem !important;
}
.launch-form-section {
    max-width: 600px;
    margin: 0 auto 6rem auto;
}

.launch-form-section h3 {
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 1rem;
    text-align: center;
    color: #333;
}

.launch-form-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.launch-form-container {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.form-row input:focus {
    outline: none;
    border-color: #c41e3a;
}

/* ACTIVITY OPTIONS */
.activity-options {
    margin-bottom: 2.5rem;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    cursor: pointer;
    line-height: 1.5;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.checkbox-option:hover {
    background: #f9f9f9;
    border-color: #c41e3a;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 1rem;
    margin-top: 0.2rem;
    transform: scale(1.2);
    accent-color: #c41e3a;
}

.checkbox-option strong {
    font-weight: 600;
    color: #333;
    margin-right: 0.5rem;
}

/* JOIN BUTTON */
.join-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #c41e3a;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background: #a01829;
}

.about-bio .about-image {
    display: none;  /* Mobile image hidden on desktop */
}

.simple-about-content > .about-image {
    display: block;  /* Desktop image visible on desktop */
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .logo {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .nav-links {
        gap: 2rem;
        font-size: 0.85rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    section {
        margin-bottom: 4rem;  /* Reduce from 10rem */
    }
    
    main {
        padding: 3rem 0;  /* Reduce from 6rem */
    }
    
    /* Prevent all images from causing overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .hero-content,
    .book-content,
    .book-content-books,
    .about-content,
    .simple-about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
    }
    
    .author-photo {
        margin: 0 auto;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .hero-text .hero-subtitle {
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
        text-align: center !important
    }
    
    .book-info h3 {
        margin-bottom: -0.25rem;
    }

    .about-section {
        margin: -2rem 0;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
        max-width: 100%;
    }
    
    .newsletter-form input {
        border-right: 1px solid #ddd;
        border-radius: 6px 6px 0 0;
        width: 100%;
    }
    
    .newsletter-form button {
        border-radius: 0 0 6px 6px;
        width: 100%;
    }
    
    .books-intro {
        margin-bottom: 4rem;
    }

    .book-feature {
        margin-bottom: 3rem;
    }
    
    .newsletter {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }

    .about-bio h1 {
        text-align: center;
    }

    /* Show mobile image, hide desktop image */
    .about-bio .about-image {
        display: block;
        text-align: center;
        margin: 2rem 0;
    }
    
    .simple-about-content > .about-image {
        display: none;
    }
    
    /* Second landscape image: full width */
    .visual-break {
        max-width: 100%;
        margin: 1rem 0;
    }
    
    /* All text same width */
    .about-bio p,
    .continuing-text p {
        max-width: 100%;
    }

    .about-bio p:last-child {
        margin-bottom: 1rem;  /* Reduced from 1.5rem */
    }

    .continuing-text {
        max-width: 100%;  /* Override the container */
    }

    /* General newsletter spacing on mobile */
    .ml-form-embedContainer {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
    
    /* Adjust spacing of sections that come BEFORE newsletter */
    .about-section {
        margin-bottom: 2rem; /* Reduced from 4rem */
    }
    
    .book-feature:last-of-type {
        margin-bottom: 2rem; /* Reduced from 4rem */
    }

    .contact-section {
        margin-top: 2rem;
        padding-bottom: 2rem;
    }

    .contact-section .visual-break {
        max-width: 100%;
    }

    .hero-with-books {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Hide book covers on mobile */
    .book-cover-left,
    .book-cover-right {
        display: none;
    }
    
    .hero-text-center h1 {
        font-size: 1.8rem;
        margin-top: 0;
    }

    .launch-form-section {
        max-width: 100%;
        padding: 0;  /* Remove any side padding */
    }
    
    .launch-form-container {
        padding: 1.5rem;  /* Reduce from 3rem */
        margin: 0;
    }
    
    .form-row {
        width: 100%;
        max-width: 100%;
    }
    
    .form-row input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .launch-benefits {
        margin-top: -2rem;
    }

    /* Fix MailerLite form on mobile */
    .ml-form-horizontalRow {
        flex-direction: column !important;
        width: 100%;
    }
    
    .ml-input-horizontal {
        flex-direction: column !important;
        width: 100%;
    }
    
    .ml-input-horizontal input {
        width: 100% !important;
    }
    
    .ml-button-horizontal button {
        width: 100% !important;
    }
}