/* Hey Jack Podcast - Generated CSS */
/* Brand: Coral/Salmon (#E67169) on dark backgrounds */

:root {
    --bg: #1a1a1a;
    --card: #242424;
    --coral: #E67169;
    --coral-dark: #c95a53;
    --coral-light: #f0918b;
    --text: #f5f5f5;
    --muted: #a0a0a0;
    --secondary: #d4d4d4;
    --border: #333333;
    --white: #ffffff;
    --black: #0a0a0a;
    --surface: #1e1e1e;
    --hover-glow: rgba(230, 113, 105, 0.3);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--coral); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral-light); }
img { max-width: 100%; height: auto; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ---- Navigation ---- */
.top-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 70px;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}
.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--white) !important;
    display: flex; gap: 0.3rem;
}
.logo-hey { color: var(--white); }
.logo-jack { color: var(--coral); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    color: var(--secondary); font-size: 0.95rem; font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-listen-btn {
    background: var(--coral) !important; color: var(--white) !important;
    padding: 0.5rem 1.2rem; border-radius: 8px;
    font-weight: 600 !important; font-size: 0.9rem !important;
}
.nav-listen-btn:hover { background: var(--coral-dark) !important; }
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.mobile-menu-btn span {
    display: block; width: 24px; height: 2px;
    background: var(--white); transition: 0.3s;
}

/* ---- Hero Section ---- */
.hero {
    padding: 120px 2rem 0;
    background: linear-gradient(135deg, var(--bg) 0%, #2a1a18 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(230, 113, 105, 0.3), transparent 70%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem;
    align-items: center; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-block; padding: 0.4rem 1rem;
    background: rgba(230, 113, 105, 0.15); border: 1px solid rgba(230, 113, 105, 0.3);
    border-radius: 20px; font-size: 0.85rem; color: var(--coral);
    font-weight: 600; margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}
.hero-hey {
    display: block; font-size: clamp(3rem, 7vw, 5rem);
    color: var(--white); line-height: 1;
}
.hero-tagline {
    font-size: 1.15rem; color: var(--muted);
    margin: 1.5rem 0 2rem; max-width: 520px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-logo-img {
    width: 300px; height: 300px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(230, 113, 105, 0.3);
    transform: rotate(-3deg);
    transition: transform 0.3s;
}
.hero-logo-img:hover { transform: rotate(0deg) scale(1.02); }
.hero-characters {
    display: flex; justify-content: center;
    margin-top: 1.5rem; margin-bottom: -1px;
    position: relative; z-index: 2;
    line-height: 0; font-size: 0;
}
.hero-characters-img {
    width: 320px;
    display: block; vertical-align: bottom;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.7rem 1.5rem; border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600; font-size: 0.95rem;
    transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary {
    background: var(--coral); color: var(--white);
}
.btn-primary:hover {
    background: var(--coral-dark); color: var(--white);
    transform: translateY(-1px); box-shadow: 0 4px 15px rgba(230, 113, 105, 0.4);
}
.btn-secondary {
    background: var(--card); color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: var(--surface); border-color: var(--coral);
    color: var(--white); transform: translateY(-1px);
}

/* ---- Sections ---- */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 2rem; color: var(--white);
}
.section-header-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.view-all-link {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600; font-size: 0.95rem;
}
.page-header {
    padding: 120px 2rem 40px;
    background: linear-gradient(135deg, var(--bg) 0%, #2a1a18 100%);
    text-align: center;
}
.page-subtitle { color: var(--muted); font-size: 1.1rem; margin-top: 0.5rem; }

/* ---- Topics Grid ---- */
.topics-section {
    padding: 80px 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.topics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.topic-item {
    padding: 2rem; background: var(--card);
    border-radius: 16px; border: 1px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.topic-item:hover {
    border-color: var(--coral);
    box-shadow: 0 4px 20px var(--hover-glow);
}
.topic-icon {
    width: 48px; height: 48px;
    background: rgba(230, 113, 105, 0.12);
    border-radius: 12px; display: flex;
    align-items: center; justify-content: center;
    color: var(--coral);
    margin-bottom: 1.2rem;
}
.topic-item h3 { margin-bottom: 0.5rem; color: var(--white); font-size: 1.1rem; }
.topic-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ---- Episode Cards ---- */
.latest-section { padding: 80px 2rem; }
.featured-episode { margin-bottom: 2.5rem; }
.episodes-grid-below { margin-top: 0; }
.view-all-bottom { text-align: center; margin-top: 2.5rem; }
.view-all-bottom .btn { padding: 0.85rem 2.2rem; font-size: 1rem; }
.episodes-listing { padding: 40px 2rem 80px; }
.episodes-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}
.episode-card {
    background: var(--card); border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden; transition: all 0.3s;
    display: flex; flex-direction: column;
    color: var(--text) !important;
}
.episode-card:hover {
    border-color: var(--coral);
    box-shadow: 0 8px 30px var(--hover-glow);
    transform: translateY(-4px);
    color: var(--text) !important;
}
.episode-card-featured {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: auto 1fr;
}
.card-visual {
    height: 180px; display: flex;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--surface), var(--card));
    position: relative;
}
.episode-card-featured .card-visual {
    height: auto; min-height: 200px; width: 250px;
}
.card-ep-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem; font-weight: 700;
    color: var(--coral); opacity: 0.6;
}
.card-initials {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--coral); color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.card-thumb {
    width: 100%; height: 100%;
    object-fit: cover;
}
.card-thumb-logo {
    object-fit: contain;
    padding: 20px;
    background: var(--surface);
}
.card-guest-img {
    width: 100px; height: 100px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--coral);
}
.card-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-meta {
    display: flex; gap: 1rem; align-items: center;
    margin-bottom: 0.75rem;
}
.card-ep-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem; font-weight: 600;
    color: var(--coral); text-transform: uppercase;
    letter-spacing: 1px;
}
.card-date { font-size: 0.8rem; color: var(--muted); }
.card-title {
    font-size: 1.15rem; color: var(--white);
    margin-bottom: 0.5rem; line-height: 1.4;
}
.card-guest { color: var(--coral-light); font-size: 0.9rem; margin-bottom: 0.5rem; }
.card-topics { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.topic-tag {
    font-size: 0.75rem; padding: 0.25rem 0.75rem;
    background: rgba(230, 113, 105, 0.1);
    border: 1px solid rgba(230, 113, 105, 0.2);
    border-radius: 20px; color: var(--coral);
    font-weight: 500;
}

/* ---- Search ---- */
.search-bar { margin-top: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.search-bar input {
    width: 100%; padding: 0.8rem 1.5rem;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 12px; color: var(--text);
    font-size: 1rem; font-family: 'Inter', sans-serif;
    outline: none; transition: border-color 0.2s;
}
.search-bar input:focus { border-color: var(--coral); }
.search-bar input::placeholder { color: var(--muted); }

/* ---- Hosts ---- */
.hosts-section { padding: 40px 2rem 80px; }
.host-card {
    display: grid; grid-template-columns: 300px 1fr; gap: 3rem;
    background: var(--card); border-radius: 20px;
    border: 1px solid var(--border);
    padding: 2.5rem; margin-bottom: 2rem;
    transition: border-color 0.3s;
}
.host-card:hover { border-color: var(--coral); }
.host-visual { display: flex; justify-content: center; align-items: flex-start; }
.host-photo {
    width: 250px; height: 250px; border-radius: 20px;
    object-fit: cover; border: 3px solid var(--coral);
}
.host-initials {
    width: 200px; height: 200px; border-radius: 20px;
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.host-info h2 { color: var(--white); margin-bottom: 0.5rem; }
.host-role { color: var(--coral); font-weight: 600; margin-bottom: 0.25rem; }
.host-company { color: var(--muted); margin-bottom: 1rem; font-size: 0.9rem; }
.host-bio { color: var(--secondary); line-height: 1.8; margin-bottom: 1rem; }
.host-fun-fact { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ---- Episode Article Page ---- */
.episode-article { padding: 100px 2rem 60px; }
.article-inner { max-width: 800px; margin: 0 auto; }
.back-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem;
    font-weight: 500;
}
.back-link:hover { color: var(--coral); }
.article-meta {
    display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem;
}
.ep-number-badge {
    background: var(--coral); color: var(--white);
    padding: 0.3rem 0.8rem; border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem; font-weight: 600;
}
.article-date { color: var(--muted); font-size: 0.9rem; }
.article-title {
    color: var(--white); margin-bottom: 1.5rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.article-featured-img {
    margin: 1.5rem auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    max-width: 680px;
}
.article-featured-img img {
    width: 100%;
    display: block;
    border-radius: 16px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
.article-topics { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.guest-highlight {
    display: flex; align-items: center; gap: 1rem;
    background: var(--surface); padding: 1rem 1.5rem;
    border-radius: 12px; margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}
.guest-detail-img {
    width: 60px; height: 60px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--coral);
}
.guest-detail-initials {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--coral); color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.guest-label {
    font-size: 0.75rem; color: var(--coral);
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px;
}
.guest-highlight-info h3 { color: var(--white); font-size: 1.1rem; }

/* ---- Article Body ---- */
.article-body {
    padding: 2rem 0; border-top: 1px solid var(--border);
    margin-top: 1rem;
}
.article-body .section-header {
    color: var(--white); margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem; border-bottom: 2px solid var(--coral);
    font-size: 1.4rem;
}
.article-body .quote-header,
.article-body .takeaways-header,
.article-body .wrapup-header {
    color: var(--coral); margin: 2.5rem 0 1rem;
    font-size: 1.3rem;
}
.article-body .article-text {
    color: var(--secondary); margin-bottom: 1.2rem;
    line-height: 1.85; font-size: 1.05rem;
}
.article-body .episode-quote {
    border-left: 4px solid var(--coral);
    padding: 1rem 1.5rem; margin: 1.5rem 0;
    background: rgba(230, 113, 105, 0.05);
    border-radius: 0 8px 8px 0;
    color: var(--text); font-style: italic;
    font-size: 1.05rem; line-height: 1.7;
}
.article-body .takeaway-list {
    list-style: none; padding: 0; margin: 1rem 0;
}
.article-body .takeaway-list li {
    padding: 0.75rem 1rem 0.75rem 2rem;
    position: relative; color: var(--secondary);
    margin-bottom: 0.5rem; line-height: 1.7;
    background: var(--surface); border-radius: 8px;
}
.article-body .takeaway-list li::before {
    content: ''; position: absolute; left: 0.75rem; top: 1.1rem;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--coral);
}

/* ---- Listen Links ---- */
.listen-links {
    display: flex; align-items: center; gap: 0.75rem;
    flex-wrap: wrap; margin: 1rem 0;
}
.listen-label { color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.listen-btn {
    padding: 0.4rem 1rem; border-radius: 8px;
    font-size: 0.85rem; font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.2s;
}
.listen-spotify { background: #1DB954; color: var(--white) !important; }
.listen-spotify:hover { background: #1aa34a; color: var(--white) !important; }
.listen-youtube { background: #FF0000; color: var(--white) !important; }
.listen-youtube:hover { background: #cc0000; color: var(--white) !important; }
.listen-apple { background: var(--coral); color: var(--white) !important; }
.listen-apple:hover { background: var(--coral-dark); color: var(--white) !important; }

/* ---- Episode Nav ---- */
.article-footer {
    border-top: 1px solid var(--border);
    margin-top: 2rem; padding-top: 2rem;
}
.episode-nav {
    display: flex; justify-content: space-between;
    gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap;
}
.nav-prev, .nav-next {
    padding: 0.75rem 1.25rem;
    background: var(--card); border: 1px solid var(--border);
    border-radius: 10px; font-size: 0.9rem;
    color: var(--secondary) !important;
    transition: all 0.2s; max-width: 48%;
}
.nav-prev:hover, .nav-next:hover {
    border-color: var(--coral); color: var(--white) !important;
}
.nav-next { margin-left: auto; text-align: right; }

/* ---- Footer ---- */
.site-footer {
    background: var(--black); border-top: 1px solid var(--border);
    padding: 60px 2rem 30px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { margin-bottom: 2rem; }
.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 700;
}
.footer-tagline { color: var(--muted); margin-top: 0.5rem; }
.footer-links {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-bottom: 2rem;
}
.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--white); margin-bottom: 1rem; font-size: 0.95rem;
}
.footer-col a {
    display: block; color: var(--muted);
    font-size: 0.9rem; margin-bottom: 0.5rem;
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem; text-align: center;
}
.footer-bottom p { color: var(--muted); font-size: 0.85rem; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-tagline { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-logo-img { width: 220px; height: 220px; }
    .hero-characters-img { width: 280px; }
    .host-card { grid-template-columns: 1fr; text-align: center; }
    .host-visual { justify-content: center; }
    .episode-card-featured { grid-template-columns: 1fr; }
    .episode-card-featured .card-visual { height: 180px; width: 100%; }
    .footer-links { grid-template-columns: 1fr; }
    .episodes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .nav-links {
        display: none; position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--bg); border-bottom: 1px solid var(--border);
        flex-direction: column; padding: 1rem 2rem; gap: 1rem;
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: flex; }
    .top-nav { padding: 0 1rem; }
    .hero { padding: 100px 1rem 0; }
    .hero-characters-img { width: 220px; }
    .section-inner { padding: 0 1rem; }
    .episode-article { padding: 80px 1rem 40px; }
    .episode-nav { flex-direction: column; }
    .nav-prev, .nav-next { max-width: 100%; }
}
