/* ================================
   KINDNESS WORKS - MAIN STYLESHEET
   Serious Solutions. Zero BS. Maximum Heart.
   ================================ */

/* ================================
   CSS VARIABLES
   ================================ */
:root {
    /* Colors */
    --primary-teal: #008B8B;
    --primary-teal-dark: #006B6B;
    --primary-teal-light: #E0F7F7;
    --secondary-coral: #FF6B6B;
    --secondary-coral-dark: #E05555;
    --secondary-coral-light: #FFE5E5;
    --charcoal: #2D3436;
    --charcoal-light: #636E72;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --border: #E1E8ED;
    
    /* Typography */
    --font-display: 'Epilogue', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    --container-width: 1200px;
    
    /* Animation */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   RESET & BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.large-text {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--charcoal);
}

.pullquote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-teal);
    border-left: 4px solid var(--secondary-coral);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
}

/* ================================
   UTILITIES
   ================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight {
    color: var(--primary-teal);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-coral);
    margin-bottom: 1rem;
}

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

.section-header.center {
    text-align: center;
}

.section-title {
    margin-bottom: 1.5rem;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary-coral);
    color: var(--white);
    border-color: var(--secondary-coral);
}

.btn-primary:hover {
    background: var(--secondary-coral-dark);
    border-color: var(--secondary-coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
}

.btn-secondary:hover {
    background: var(--primary-teal-dark);
    border-color: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 139, 139, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.text-link {
    color: var(--primary-teal);
    font-weight: 600;
    position: relative;
}

.text-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: var(--transition);
}

.text-link:hover::after {
    width: 100%;
}

/* ================================
   NAVIGATION
   ================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--charcoal-light);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary-coral);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--secondary-coral-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    padding: 180px 0 120px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--charcoal-light);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-teal-light), var(--secondary-coral-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal-light);
    text-align: center;
    padding: 2rem;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--charcoal-light);
    font-weight: 500;
}

.scroll-indicator {
    width: 20px;
    height: 30px;
    border: 2px solid var(--charcoal-light);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: var(--charcoal-light);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

/* ================================
   STATS SECTION
   ================================ */
.stats-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

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

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.stat-detail {
    font-size: 1rem;
    color: var(--charcoal-light);
}

/* ================================
   PROBLEM SECTION
   ================================ */
.problem-section {
    padding: var(--section-padding) 0;
}

.problem-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.problem-list {
    background: var(--primary-teal-light);
    padding: 3rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-teal);
}

.problem-list h3 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.problem-list ul {
    list-style: none;
}

.problem-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 139, 139, 0.2);
}

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

.problem-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--secondary-coral);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ================================
   SOLUTION SECTION
   ================================ */
.solution-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.solution-image-placeholder,
.about-image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--secondary-coral-light), var(--primary-teal-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal-light);
    text-align: center;
    padding: 2rem;
}

/* ================================
   BOOK SECTION
   ================================ */
.book-section {
    padding: var(--section-padding) 0;
}

.book-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.book-cover-placeholder {
    aspect-ratio: 2/3;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 139, 139, 0.3);
}

.book-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.book-highlights {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.book-highlights h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-teal);
}

.book-highlights ul {
    list-style: none;
}

.book-highlights li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

.book-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 1.25rem;
}

.book-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--charcoal-light);
    margin-bottom: 1.5rem;
}

/* ================================
   PODCAST PREVIEW
   ================================ */
.podcast-preview {
    padding: var(--section-padding) 0;
}

.podcast-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.podcast-meta {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    font-size: 0.875rem;
    color: var(--charcoal-light);
    font-weight: 600;
}

.episode-title {
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin: 1rem 0;
}

.subscribe-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.subscribe-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-teal);
    text-decoration: underline;
}

.player-placeholder {
    aspect-ratio: 1;
    background: var(--off-white);
    border-radius: 16px;
    border: 2px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal-light);
    text-align: center;
    padding: 2rem;
}

.podcast-ctas {
    margin-top: 2rem;
}

/* ================================
   ABOUT PREVIEW
   ================================ */
.about-preview {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--secondary-coral);
    border-color: var(--secondary-coral);
}

.cta-section .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary-teal);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

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

.footer-column h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.938rem;
}

.footer-column a:hover {
    color: var(--secondary-coral);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ================================
   PLACEHOLDER STYLES
   ================================ */
.placeholder-text {
    line-height: 1.4;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-content,
    .problem-content,
    .solution-content,
    .book-content,
    .podcast-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    body {
        font-size: 16px;
    }
    
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
