/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Color Variables */
:root {
    --primary-beige: #f4f1eb;
    --secondary-beige: #ede7d9;
    --accent-teal: #2c5f5d;
    --accent-teal-light: #4a7b79;
    --accent-teal-dark: #1a3b39;
    --warm-gold: #d4af37;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-light: #e9ecef;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(244, 241, 235, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--accent-teal);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-teal);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-teal);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-teal);
    transition: 0.3s;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.fab-book { background: var(--accent-teal); }
.fab-newsletter { background: var(--warm-gold); }
.fab-contact { background: var(--accent-teal-light); }

.fab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-teal);
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-teal-dark);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--accent-teal);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--secondary-beige) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

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

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

.hero-text {
    padding-right: 2rem;
}

.hero-headline {
    font-size: 3rem;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-quote {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.hero-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.hero-quote cite {
    color: var(--text-light);
    font-weight: 600;
}

.hero-image {
    text-align: center;
}

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

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button.primary {
    background: var(--accent-teal);
    color: white;
}

.cta-button.secondary {
    background: var(--warm-gold);
    color: white;
}

.cta-button.tertiary {
    background: transparent;
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
}

.cta-button.full-width {
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-button.primary:hover {
    background: var(--accent-teal-dark);
}

.cta-button.secondary:hover {
    background: #b8941f;
}

.cta-button.tertiary:hover {
    background: var(--accent-teal);
    color: white;
}

/* Meet the Author Section */
.meet-author-section {
    background: white;
}

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

.author-profile-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.author-bio h3 {
    color: var(--accent-teal);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.author-tagline {
    color: var(--warm-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.credentials {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.credentials h4 {
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

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

.media-appearances {
    margin-top: 2rem;
}

.media-appearances h4 {
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.media-logos {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.media-item {
    text-align: center;
    max-width: 120px;
}

.media-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.media-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Explore Book Section */
.explore-book-section {
    background: var(--accent-teal);
    color: white;
}

.explore-book-section .section-header h2 {
    color: white;
}

.book-content {
    max-width: 1200px;
    margin: 0 auto;
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.book-cover {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.book-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.book-subtitle {
    color: var(--secondary-beige);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.book-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.book-preview-gallery {
    margin: 2rem 0;
}

.book-preview-gallery h4 {
    color: white;
    margin-bottom: 1rem;
}

.preview-thumbnails {
    display: flex;
    gap: 1rem;
}

.preview-thumb {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.preview-thumb:hover {
    transform: scale(1.05);
    border-color: var(--warm-gold);
}

.book-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Testimonials */
.testimonials {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonials h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 10px;
    color: var(--text-dark);
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    color: var(--accent-teal);
    font-weight: 600;
}

/* Stay Connected Section */
.stay-connected-section {
    background: var(--primary-beige);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-text h2 {
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.newsletter-text h3 {
    color: var(--warm-gold);
    margin-bottom: 1rem;
}

.newsletter-benefits {
    margin: 2rem 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit i {
    color: var(--accent-teal);
    font-size: 1.2rem;
}

.newsletter-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.incentive-offer {
    background: linear-gradient(135deg, var(--warm-gold), #e6c547);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.incentive-offer h4 {
    margin-bottom: 0.5rem;
}

.newsletter-form .form-group {
    margin-bottom: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-teal);
}

.privacy-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

/* Journey Coaching Section */
.journey-coaching-section {
    background: white;
}

.coaching-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.blog-posts {
    display: grid;
    gap: 2rem;
}

.blog-post {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.blog-thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-content h4 {
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 600;
}

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

.media-section, .community-section {
    background: var(--primary-beige);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.media-section h3, .community-section h3 {
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.media-item-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-teal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-button:hover {
    background: var(--accent-teal-dark);
}

.community-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Work With Me Section */
.work-with-me-section {
    background: var(--accent-teal);
    color: white;
}

.work-with-me-section .section-header h2 {
    color: white;
}

.work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.service-item i {
    font-size: 2.5rem;
    color: var(--warm-gold);
    margin-bottom: 1rem;
}

.service-item h4 {
    color: white;
    margin-bottom: 1rem;
}

.service-item p {
    color: rgba(255,255,255,0.9);
}

.target-audience {
    margin-top: 3rem;
}

.target-audience h3 {
    color: white;
    margin-bottom: 1rem;
}

.audience-list {
    list-style: none;
}

.audience-list li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

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

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    color: var(--text-dark);
}

.contact-form-container h3 {
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h4 {
    color: white;
    margin-bottom: 1rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.contact-method i {
    color: var(--warm-gold);
    width: 20px;
}

.social-links h4 {
    color: white;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--warm-gold);
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: var(--accent-teal-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-main h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--warm-gold);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    color: rgba(255,255,255,0.8);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--warm-gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--warm-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.6);
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--warm-gold);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--warm-gold);
}

#lightbox-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-teal);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-beige);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .book-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coaching-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .work-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Form adjustments */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .book-actions {
        flex-direction: column;
    }
    
    .community-actions {
        flex-direction: column;
    }
    
    /* Floating buttons */
    .floating-actions {
        right: 1rem;
        bottom: 1rem;
    }
    
    .fab-button {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
    
    /* Media logos */
    .media-logos {
        justify-content: center;
    }
    
    /* Blog posts */
    .blog-post {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-thumb {
        width: 100%;
        height: 200px;
    }
    
    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Preview thumbnails */
    .preview-thumbnails {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .newsletter-form-container,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .floating-actions {
        gap: 0.5rem;
    }
    
    .fab-button {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
}