/* ============================================================
   THANK YOU: BOOK BONUS
   /thank-you/book-bonus/
   ============================================================ */

:root {
    --font-heading: 'sweet-sans-pro', sans-serif;
    --font-body: europa, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --delft-blue: #223759;
    --paynes-gray: #566573;
    --dark-navy: #1c2541;
    --cta-pink: #B80077;
    --calm-teal: #306373;
    --cream: #FDFBF7;
    --light-gray: #e9eef5;
    --body-text: #3a3a3a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--body-text);
    background-color: var(--cream);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--delft-blue);
    line-height: 1.3;
    margin-bottom: 1rem;
}

p { margin-bottom: 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cta-pink); }

.container { max-width: 760px; margin: 0 auto; padding: 0 20px; }

/* Hero */
.section-hero {
    padding: 60px 20px;
    text-align: center;
}

.section-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.sub-heading {
    font-size: 1.6rem;
    margin-top: 24px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 24px;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Community section */
.section-community {
    background: #e2e2e2;
    padding: 60px 20px;
}

.community-inner {
    max-width: 1000px;
    margin: 0 auto 30px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.community-content {
    flex: 1;
}

.community-content h2 {
    font-size: 1.8rem;
}

.community-content h3 {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--paynes-gray);
    margin-bottom: 16px;
}

.community-image {
    flex: 0 0 35%;
}

.community-image img {
    border-radius: 12px;
}

.community-cta-wrap {
    text-align: center;
    margin: 30px 0;
}

.btn-community {
    display: inline-block;
    padding: 15px 30px;
    background: #49afc1;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s ease;
    min-height: 48px;
}

.btn-community:hover {
    background: #3d9aa8;
    color: #fff;
}

.community-details {
    max-width: 760px;
    margin: 0 auto;
}

.community-details ul {
    margin: 16px 0 16px 24px;
}

.community-details li {
    margin-bottom: 10px;
}

/* Quote section */
.section-quote {
    padding: 60px 20px;
    text-align: center;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--delft-blue);
    font-weight: 600;
    margin-bottom: 30px;
}

.quote-sub {
    font-size: 1.2rem;
    margin-top: 24px;
}

/* Footer */
.section-footer {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--paynes-gray);
}

/* Mobile */
@media (max-width: 768px) {
    .section-hero h1 {
        font-size: 1.7rem;
    }

    .community-inner {
        flex-direction: column;
        gap: 24px;
    }

    .community-image {
        flex: none;
        order: -1;
    }

    .community-content {
        text-align: center;
    }
}
