@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v24-latin-800.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-v24-latin-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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


html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    min-width: 100%;
}


body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-image: linear-gradient(135deg, #FFF8ED, #FFFEFE);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

p {
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
	line-height: 2.55rem;
}

/* Header Styles */
header {
    background-color: #210E3A;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
	letter-spacing: 1px;
}

.logo a:hover {
    opacity: 0.9;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Styles */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu li {
    display: inline;
}

.nav-menu li.separator {
    color: rgba(255, 255, 255, 0.5);
	font-weight: 600;
    padding: 0 0.05rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 0.3rem;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-menu a.active {
    font-weight: 600;
}

/* Main Content Styles */
main {
    flex: 1;
    padding: 3rem 0;
}

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

/* Footer Styles */
footer {
    background-color: #210E3A;
    color: white;
    padding: 2.5rem 0;
    margin-top: auto;
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5rem;
}

.footer-logo a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.footer-logo a:hover {
    opacity: 0.8;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
	padding-bottom: 0.25rem;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

.footer-subscribe {
    flex: 1;
    text-align: left;
}

.footer-subscribe a {
    font-weight: 600;
}

.footer-legal {
    flex: 1;
    text-align: center;
}

.footer-legal a {
	color: #999;	
	font-size: 0.8rem;
}

.footer-social {
    flex: 1;
    text-align: right;
}

.footer-social a {
    display: inline-block;
}

.footer-social svg {
    display: block;
    fill: white;
}

/* Book Feature Section */
.book-feature {
	margin-top: 1rem;
    margin-bottom: 2rem;
}

.book-feature-content {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.book-image img {
    width: 100%;
    max-width: 600px;
}

.book-info h1 {
    font-size: 2.8rem;
	line-height: 3.5rem;
	letter-spacing: -1px;
    color: #210E3A;
	font-weight: 800;
    margin-bottom: 1.5rem;
	margin-top: 2.5rem;
}

.book-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2.5rem;
	line-height: 1.5rem;
}

.book-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Praise Rotator */
.praise-rotator {
    background: rgba(43, 18, 74, 0.03);
	max-width: 80%;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 2px solid #210E3A;
    position: relative;
    min-height: 215px;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.praise-quote {
    display: none;
    animation: fadeIn 0.5s;
}

.praise-quote.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.quote-text {
	text-indent: -0.15em;
    font-size: 1.0rem;
    color: #210E3A;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.quote-author {
	font-size: 0.7rem;
    color: #210E3A;
    text-align: right;
}

.quote-author b {
    font-weight: 600;
	font-size: 0.9rem;
}

.rotator-dots {
    text-align: center;
    margin-top: 0.7rem;
}

.dot {
    height: 9px;
    width: 9px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: #210E3A;
}


/* === Preorder Callout Section === */
        
.preorder-callout {
    margin-top: 0;
    padding: 0rem 0;
}

.preorder-section {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 1rem;
}

.preorder-section h2 {
    font-size: 2rem;
    color: #210E3A;
	margin-top: 2rem;
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: 600;
}

.retailer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.btn-preorder {
    display: block; 
    text-decoration: none;
    border-radius: 5px; 
}

.btn-preorder img {
    width: 100%; 
    height: auto; 
    display: block;
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.btn-preorder:hover img,
.btn-preorder:focus img {
    transform: translateY(-2px); 
    box-shadow: 0 8px 12px rgba(0,0,0,0.1);
    border-color: #210E3A;
}

.btn-preorder:focus {
    outline: none; 
}
.btn-preorder:focus img {
    outline: 2px solid #3d1a65;
    outline-offset: 2px;
}

/*  What You'll Learn Section  */

.what-youll-learn {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(43, 18, 74, 0.1);
}

/* The h2.section-title is already styled, but let's tighten its margin */
.what-youll-learn .section-title {
    margin-bottom: 3rem;
}

.learn-content {
    /* Constrain the content to match the site's layout */
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem; /* Standard site padding */
}

.learn-content ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
    margin: 0;
}

.learn-content li {
    position: relative; /* Allows for absolute positioning of the icon */
    padding-left: 2.5rem; /* Creates space for the custom icon */
    margin-bottom: 1.75rem; /* Vertical spacing between items */
    font-size: 1.1rem; /* Matches other key paragraph text */
    line-height: 1.7;
    color: #333; /* Standard body text */
}

.learn-content li:last-child {
    margin-bottom: 0; /* No margin on the final item */
}

/* This is the custom "bullet" (a checkmark icon) */
.learn-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px; /* Manually align the icon with the first line of text */
    
    width: 1.5rem; /* 24px */
    height: 1.5rem; /* 24px */
    
    /* This is an embedded SVG icon, colored with your theme's primary color: #210E3A
      It's a "check-circle" icon for a premium, professional feel.
    */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23210E3A'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd' /%3E%3C/svg%3E");
    
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Style the <strong> tag inside the list item */
.learn-content li strong {
    font-weight: 800; /* Make it stand out */
    color: #210E3A; /* Use the primary theme color */
}

/* === Responsive styles for the new section === */
@media (max-width: 768px) {
    .what-youll-learn {
        padding-top: 2rem; /* Tighter padding on mobile */
    }

    .learn-content {
        padding: 0 1.5rem; /* Match mobile container padding */
    }

    .learn-content li {
        padding-left: 2.25rem; /* Slightly less icon padding */
        font-size: 1rem; /* A bit smaller for mobile readability */
        margin-bottom: 1.5rem;
    }

    .learn-content li::before {
        width: 1.25rem; /* 20px icon */
        height: 1.25rem; /* 20px icon */
        top: 5px; /* Re-align for new font size */
    }
}

/* Free Resources Section */
.free-resources {
    margin: 3rem 0;
}

.section-title {
    font-size: 2rem;
	font-weight: 600;
    color: #210E3A;
    margin-bottom: 3.5rem;
    text-align: center;
}

.resource-item {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(43, 18, 74, 0.1);
}

.resource-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.resource-text h3 {
    font-size: 1.5rem;
	font-weight: 800;
    color: #210E3A;
    margin-bottom: 1rem;
}

.resource-text p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.resource-image {
    position: relative;
	border: 0px;
}

.resource-image a {
    display: block;
    position: relative;
    overflow: hidden;
	margin-left: auto;
    margin-right: auto;
	border: 0px;
	max-width: 250px;
	max-height: 250px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.resource-image a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.resource-image img {
    width: 100%;
    display: block;
}

.download-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(43, 18, 74, 0.9);
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.resource-image a:hover .download-label {
    transform: translateY(0);
}

/* About Author Section */
.about-author {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(43, 18, 74, 0.1);
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.author-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.author-info h2 {
    font-size: 2rem;
	font-weight: 600;
    color: #210E3A;
    margin-bottom: 1.5rem;
}

.author-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.author-info p a:link,
.author-info p a:visited {
    color: inherit; /* This makes it match the paragraph's text color */
    text-decoration: underline; /* Keeps the underline so users know it's a link */
}
.author-info p a:hover {
    color: #000;
}

.btn-speaking {
    display: inline-block;
    background-color: #210E3A;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 1rem;
}

.btn-speaking:hover {
    background-color: #3d1a65;
    transform: translateY(-2px);
}

/* Newsletter Page Styles */
.newsletter-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(43, 18, 74, 0.1);
}

.newsletter-header h1 {
    font-size: 2.5rem;
    color: #210E3A;
    margin-bottom: 2rem;
}

.subscribe-cta {
    background: rgba(43, 18, 74, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    display: inline-block;
}

.subscribe-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #210E3A;
}

.btn-subscribe {
    display: inline-block;
    background-color: #210E3A;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-subscribe:hover {
    background-color: #3d1a65;
    transform: translateY(-2px);
}

/* Newsletter Articles List */
.newsletter-articles {
    margin-bottom: 4rem;
}

.newsletter-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(43, 18, 74, 0.1);
}

.newsletter-item:last-child {
    border-bottom: none;
}

.article-image {
    order: 2;
}

.article-content {
    order: 1;
}

.article-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-content h2 {
	max-width: 80%;
	font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.article-content h2 a {
	font-weight: 800;
    color: #210E3A;
    text-decoration: none;
    transition: color 0.3s;
}

.article-content h2 a:hover {
    color: #3d1a65;
}

.article-date {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.article-preview {
    margin-bottom: 1.5rem;
	margin-right: 4rem;
    line-height: 1.7;
}

.article-preview p {
    margin-bottom: 0.5rem;
}

.article-actions {
    display: flex;
	margin-top: 1rem;
	margin-bottom: 1rem;
	line-height: 1rem;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: #210E3A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: #3d1a65;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077B5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.linkedin-link-author {
    display: inline-flex;
    align-items: center;
	vertical-align: middle;
	margin-left: 3rem;
    gap: 0.5rem;
    color: #0077B5;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}


.linkedin-link:hover {
    opacity: 0.8;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid rgba(43, 18, 74, 0.1);
    border-bottom: 2px solid rgba(43, 18, 74, 0.1);
}

.pagination-prev,
.pagination-next {
    color: #210E3A;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.pagination-prev:hover,
.pagination-next:hover {
    color: #3d1a65;
}

.pagination-info {
    color: #666;
    font-size: 0.95rem;
}

/* Subscribe Section */
.subscribe-section {
    background: rgba(43, 18, 74, 0.05);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 4rem;
}

.subscribe-section h2 {
    font-size: 2rem;
    color: #210E3A;
    margin-bottom: 1rem;
}

.subscribe-section > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

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

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #210E3A;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.subscribe-form input[type="email"]:focus {
    outline: none;
    border-color: #3d1a65;
}

.btn-submit {
    background-color: #210E3A;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
	font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #3d1a65;
    transform: translateY(-2px);
}

/* Full Newsletter Article */
.newsletter-article-full {
    max-width: 600px;
    margin: 0 auto;
}

.article-header {
	width: 100%;
	border: none;
	background-color: transparent;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
	box-shadow: none; 
	line-height: 1.5rem;
}

.article-header h1 {
	text-align: center;
    font-size: 2.5rem;
	line-height: 3rem;
    color: #210E3A;
    margin-bottom: 1rem;
	max-width: 70%;
	font-weight: 800;
	margin-left: auto;  
    margin-right: auto;  
}

@media (max-width: 768px) {
	.article-header h1 {
		max-width: 90%;
	}
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
}

.article-featured-image {
	width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.article-featured-image img {
    width: 75%;
	text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
	margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.article-body h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #210E3A;
}

.article-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #210E3A;
}

.article-body p {
    margin-bottom: 1.5rem;
}

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

.article-body li {
    margin-bottom: 0.5rem;
}

.article-footer {
    border-top: 2px solid rgba(43, 18, 74, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.subscribe-inline {
    background: rgba(43, 18, 74, 0.05);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.subscribe-inline p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #210E3A;
}

/* === Speaking Page Styles === */

/* 1. Hero Rotator Section */

.speaking-hero-container {
    text-align: center;
    margin-bottom: 4rem; 
}

.speaking-hero {
position: relative;
    padding: 3rem 2rem; 
    min-height: 450px; 
	border-radius: 8px;
	background-color: #210E3A;
	background-size: cover;
	background-position: center;
	text-align: center;
	color: white;
	overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
}

/* Dark overlay for text readability */
.speaking-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(33, 14, 58, 0.1); 
    z-index: 1;
}

/* All content must be above the overlay */
.hero-rotator,
.speaking-hero .btn-speaking,
.hero-dots {
    position: relative;
    z-index: 2;
}

.hero-rotator {
    position: relative; 
    z-index: 2; 
    width: 100%; 
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* NEW: This styles each individual image slide */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* This ensures the image covers the area nicely */
    background-size: cover;
    background-position: center;

    /* This handles the fade effect */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* NEW: This makes the active slide visible */
.hero-bg.active {
    opacity: 1;
}



.hero-quote {
    display: none;
    animation: fadeIn 0.5s; /* Reusing existing animation */
}
.hero-quote.active {
    display: block;
}

.hero-quote h1 {
    font-size: 2.8rem;
    color: white;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1rem;
	text-shadow: 
        0 0 5px rgba(0,0,0,0.7),   /* A tighter, darker shadow */
        0 0 10px rgba(0,0,0,0.5),  /* A slightly larger, softer shadow */
        0 0 15px rgba(0,0,0,0.3);  /* A very light, diffuse glow */
}

.hero-quote p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
	text-shadow: 
        0 0 4px rgba(0,0,0,0.6),   /* A tighter, darker shadow */
        0 0 8px rgba(0,0,0,0.4);   /* A slightly larger, softer shadow */
}

.hero-dots {
	text-align: center;
    margin-top: 1.5rem;      /* <-- ADD new margin for outside the box */
    margin-bottom: 1.5rem;   /* <-- ADD margin to push the button down */
}

/* Re-style rotator dots to be light for the dark hero */
.hero-dots .dot {
	background-color: #bbb; /* <-- CHANGE from rgba(255,255,255,0.4) */
}
.hero-dots .dot.active,
.hero-dots .dot:hover {
	background-color: #210E3A; /* <-- CHANGE from #ffffff */
}


.speaking-quote-text {
	text-indent: -0.15em;
    font-size: 1.1rem;
	/*font-style: italic;*/
    color: #210E3A;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.speaking-quote-author {
	font-size: 1.0rem;
    color: #210E3A;
    text-align: right;
}

.speaking-quote-author b {
    font-weight: 800;
	font-size: 1.0rem;
}


/* 2. Speaking Topics (3-col grid) */
.speaking-topics {
    margin-bottom: 4rem;
}

.speaking-topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.topic-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    border-top: 3px solid #210E3A; 
    transition: transform 0.3s, box-shadow 0.3s;
}

.topic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.topic-item h3 {
    font-size: 1.3rem;
	font-weight: 800;
	line-height: 1.5rem;
    color: #210E3A;
    color: #210E3A;
    margin-bottom: 1rem;
}

/* 3. Praise Section */
.praise-section {
    margin: 4rem 0;
}
/* Center the single quote box */
.praise-section .praise-rotator {
    min-height: auto;
    max-width: 800px;
    margin: 0 auto;
}

/* 4. "As Seen On" Logos */
.as-seen-on {
    margin: 4rem 0;
    text-align: center;
}

.logo-grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2.5rem;
}

.logo-grid-container img {
    max-width: 140px; 
    height: auto;
    filter: grayscale(100%);
    opacity: 0.99;
    transition: filter 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
	.logo-grid-container {
		gap: 2rem;
	}
	.logo-grid-container img {
		max-width: 120px; 
	}
}


.logo-grid-container img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* 5. Final CTA */
.final-cta {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 3.5rem 2rem;
    border-top: 2px solid rgba(43, 18, 74, 0.1);
    background: rgba(43, 18, 74, 0.03); 
    border-radius: 8px;
}

.final-cta .btn-speaking {
    padding: 1rem 2.5rem; 
    font-size: 1.1rem;
}


/* === Resources Page Rotator (NEW STYLES) === */

.resources-hero {
    text-align: center;
    padding: 2rem 0;
	margin-top: 1rem;
    margin-bottom: 1rem;
    overflow: hidden; /* Prevents layout shift from slider */
}

.resources-hero-content {
  margin: 0 auto; 
}

/* 1. The Viewport: This container clips the content */
.book-image-rotator {
    position: relative;
    margin-bottom: 0rem;
    overflow: hidden; 
}

/* 2. The Track: This container holds all slides and moves */
.book-image-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* 3. The Slides: These are now flexible columns */
.book-slide {
    flex-shrink: 0;
    flex-basis: 100%; /* Mobile-first: 1 slide visible */
    width: 100%;
    box-sizing: border-box; 
    padding: 0 0.5rem; 
}

.book-slide img {
    width: auto;
    max-width: 250px; 
    height: auto;
    max-height: 250px;
    margin: 0 auto;
    display: block; 
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Tablet: 2 slides visible */
@media (min-width: 580px) {
    .book-slide {
        flex-basis: 50%;
        width: 50%;
    }
}

/* Desktop: 3 slides visible */
@media (min-width: 880px) {
    .book-slide {
        flex-basis: 33.333%;
        width: 33.333%;
    }
}

.resources-hero .rotator-dots {
    margin-bottom: 2rem;
}

.resources-hero .btn-speaking {
    margin-top: 1rem;
}


/* === EXISTING CONTACT PAGE STYLES === */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header img {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact-form-container h1 {
    font-size: 2.5rem;
    color: #210E3A;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subheading {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #210E3A;
    margin-bottom: 0.5rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select { 
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
    appearance: none;
    background-color: #fff;
}

/* Style for the select dropdown arrow */
.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23210E3A'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    padding-right: 3rem; 
}

/* Fix for iOS to show default style */
.contact-form select:disabled {
    color: #666;
    opacity: 0.7;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus,
.contact-form select:focus { /* ADDED select */
    outline: none;
    border-color: #210E3A;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.contact-form .btn-submit {
    width: 100%;
    max-width: 300px;
    background-color: #210E3A;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s, transform 0.2s;
}

/* === NEW STYLES FOR FORM ENHANCEMENTS === */

.form-group.hp {
    position: absolute;
    left: -5000px; /* Move it off-screen */
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.form-group.recaptcha-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* 3. Form Message Styling (Success/Error) */
#form-messages {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    display: block; 
}

/* Success Message (Green) */
.form-message-success {
    background-color: #e0f8e0;
    color: #1a741a;
    border: 1px solid #a8e0a8;
}

/* Error Message (Red) */
.form-message-error {
    background-color: #f8e0e0;
    color: #a02020;
    border: 1px solid #e0a8a8;
}

/* 4. Submit Button Disabled State */
.btn-submit:disabled {
    background-color: #aaa;
    cursor: not-allowed;
    transform: none;
}


.book-slide img {
    max-width: 280px;
}

/* Responsive Design */
@media (max-width: 768px) {
	
	main {
		padding: 1.5rem 0;
	}
	
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #210E3A;
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    }
    
    .nav-menu-wrapper.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 2rem;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li.separator {
        display: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
/* Footer Responsive */
    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    
    .footer-subscribe,
    .footer-legal,
    .footer-social {
        flex: none; 
        text-align: center; 
    }
	
    .content-container {
        padding: 1.5rem;
		padding-top: 0rem;
    }
    
    .book-feature-content,
    .resource-item,
    .author-content,
	.speaking-topics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
	.book-info h1 {
		margin-top: 0.5rem;
		font-size: 2.2rem;
		line-height: 2.8rem;
	}
	
    .book-image img,
    .author-image img {
        margin: 0 auto;
        display: block;
    }
	
	.book-image img {
		max-width:320px;	
	}
	
	
	.praise-rotator {
		max-width: 100%;
	}
    
	.retailer-links img {
		max-width: 200px;
		margin-left: auto;
		margin-right: auto;
	}
    
	.linkedin-link-author {
		margin-top: 2rem;
		margin-left: 0rem;
		display: block;
	}
	
    .newsletter-item {
        grid-template-columns: 1fr;
    }
    
	.section-title h2 {
		margin: 0rem 0;
	}
	
    .article-image {
        order: 1;
    }
    
    .article-content {
        order: 2;
    }
    
    .article-actions {
        flex-direction: column;
        align-items: flex-start;
		margin-top: 1rem;
		margin-bottom: 1rem;
        gap: 1rem;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
	
    .speaking-hero {
        padding: 4rem 1.5rem 3rem;
    }
    .hero-quote h1 {
        font-size: 2.2rem;
    }
    .hero-quote p {
        font-size: 1.1rem;
    }
    
    .speaking-topics-grid {
        grid-template-columns: 1fr;
    }
    
}
