/* ===================================
   HEALTHY PROFITS PODCAST - GUEST BOOKING
   Premium Professional Design
   =================================== */

/* CSS Variables */
:root {
    --primary-teal: #2d7a7a;
    --deep-teal: #1a5f5f;
    --bright-teal: #3a9494;
    --gold: #c4934a;
    --cream: #f8f7f4;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    --border-color: #e0e0e0;
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background: #b8863f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button.cta-primary {
    padding: 20px 48px;
    font-size: 1.25rem;
    background: var(--gold);
}

.cta-button.cta-large {
    padding: 24px 56px;
    font-size: 1.375rem;
    margin-top: 2rem;
}

/* Section Styling */
section {
    padding: 80px 0;
}

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

.section-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, #ffffff 100%);
    padding: 100px 0 80px;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--deep-teal);
}

.hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Why Guest Section */
.why-guest {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 3rem;
}

.benefit-card {
    padding: 32px;
    background: var(--cream);
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.benefit-card h3 {
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 1rem;
}

/* Ideal Guest Section */
.ideal-guest {
    background: var(--cream);
}

.guest-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

.guest-type {
    padding: 28px;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
    transition: var(--transition);
}

.guest-type:hover {
    border-left-color: var(--gold);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.guest-type h4 {
    color: var(--deep-teal);
    margin-bottom: 0.5rem;
}

.guest-type p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* What to Expect Section */
.what-to-expect {
    background: var(--white);
}

.timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-teal);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 10px;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--primary-teal);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    color: var(--deep-teal);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content ul li {
    padding-left: 28px;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.timeline-content ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-teal);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Topics Section */
.topics {
    background: var(--cream);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

.topic-card {
    padding: 28px;
    background: var(--white);
    border-radius: 12px;
    border-top: 3px solid var(--primary-teal);
    transition: var(--transition);
}

.topic-card:hover {
    border-top-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.topic-card h4 {
    color: var(--deep-teal);
    margin-bottom: 0.5rem;
}

.topic-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.topics-note {
    text-align: center;
    font-style: italic;
    color: var(--text-medium);
    margin-top: 2rem;
    font-size: 1.125rem;
}

/* Listen First Section */
.listen-first {
    background: var(--white);
}

.episodes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 2rem 0;
}

.episode {
    padding: 32px;
    background: var(--cream);
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
}

.episode h4 {
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}

.episode p {
    font-size: 1rem;
    margin-bottom: 0;
}

.spotify-embed {
    text-align: center;
    margin: 3rem 0;
}

.spotify-link {
    display: inline-block;
    padding: 16px 40px;
    background: #1DB954;
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.spotify-link:hover {
    background: #1ed760;
    transform: scale(1.05);
}

.podcast-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-teal);
}

/* Meet Host Section */
.meet-host {
    background: var(--cream);
}

.host-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-top: 3rem;
}

.host-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.host-bio h3 {
    color: var(--deep-teal);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.host-bio p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Mission Section */
.mission {
    background: var(--white);
}

.mission-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.mission-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

/* FAQ Section */
.faq {
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 3rem;
}

.faq-item {
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item h4 {
    color: var(--deep-teal);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--primary-teal) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.final-cta p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.final-cta .highlight {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 2rem 0;
}

.final-cta .closing {
    font-size: 1.375rem;
    font-weight: 500;
    margin: 2rem 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

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

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--bright-teal);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .benefits-grid,
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .guest-types {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .episodes {
        grid-template-columns: 1fr;
    }
    
    .host-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .podcast-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .cta-button.cta-primary {
        padding: 16px 36px;
        font-size: 1.125rem;
    }
    
    .cta-button.cta-large {
        padding: 18px 40px;
        font-size: 1.25rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1.125rem;
    }
    
    .final-cta .highlight {
        font-size: 1.25rem;
    }
}