/* Color Variables */
:root {
    --sky-blue: #4598D3;
    --dusty-pink: #E595AD;
    --pale-yellow: #F5EF9B;
    --deep-crimson: #A13132;
    --light-gray: #E0E0E0;
    --pure-white: #FFFFFF;
    --charcoal: #2C2C2C;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.hosts-section .section-title {
    color: var(--pure-white);
}

.hosts-section .section-subtitle {
    color: var(--pure-white);
}

.platforms-section .section-title {
    color: var(--charcoal);
}

.platforms-section .section-subtitle {
    color: var(--charcoal);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    background: var(--sky-blue);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-scrolled {
    background: var(--sky-blue);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--pure-white) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.brand-text {
    background: linear-gradient(135deg, var(--dusty-pink) 0%, var(--pale-yellow) 50%, var(--pure-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--pure-white) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: var(--pale-yellow) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(225deg, var(--dusty-pink) 0%, var(--pale-yellow) 100%);
    color: var(--pure-white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--sky-blue);
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 217, 61, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(79, 172, 254, 0.3) 0%, transparent 50%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Floating Book Element */
.floating-book {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    opacity: 0.9;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.book-container {
    position: relative;
    width: 120px;
    height: 160px;
}

.book-spine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 140px;
    background: linear-gradient(145deg, #ffffff 0%, #e0e0e0 100%);
    border: 3px solid #333;
    border-radius: 8px 8px 8px 8px;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.book-spine::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 20px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.book-pages {
    position: absolute;
    top: 5px;
    left: 95px;
    width: 20px;
    height: 130px;
    background: linear-gradient(90deg, #f8f8f8 0%, #e8e8e8 100%);
    border: 2px solid #333;
    border-left: none;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.book-pages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 8px,
        rgba(0, 0, 0, 0.1) 9px,
        rgba(0, 0, 0, 0.1) 10px
    );
}

.blood-drip {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 30px;
    height: 40px;
    background: linear-gradient(180deg, var(--deep-crimson) 0%, #8B1A1B 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: drip 3s ease-in-out infinite;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blood-drip::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10px;
    width: 8px;
    height: 15px;
    background: linear-gradient(180deg, var(--deep-crimson) 0%, #8B1A1B 100%);
    border-radius: 50%;
    animation: droplet 3s ease-in-out infinite 0.5s;
}

@keyframes drip {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.2); }
}

@keyframes droplet {
    0%, 80%, 100% { opacity: 0; transform: translateY(0); }
    10%, 70% { opacity: 1; transform: translateY(10px); }
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Nunito', sans-serif;
    text-shadow: 
        3px 3px 0px var(--sky-blue),
        6px 6px 0px var(--deep-crimson),
        9px 9px 0px rgba(0, 0, 0, 0.3),
        12px 12px 15px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
    background: var(--sky-blue);
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(69, 152, 211, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
    color: var(--pure-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 149, 173, 0.6);
    background: var(--dusty-pink);
    color: var(--pure-white);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light {
    border: 2px solid var(--pale-yellow);
    color: var(--pale-yellow);
    background: transparent;
    padding: 10px 28px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
}

.btn-outline-light:hover {
    background: var(--deep-crimson);
    color: var(--pure-white);
    transform: translateY(-2px);
    border-color: var(--deep-crimson);
}

/* Social Icons */
.social-icons {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.social-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    border-radius: 50%;
    margin: 0 10px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--pure-white);
    color: var(--dusty-pink);
    transform: translateY(-3px);
}

/* About Section */
.about-section {
    background: linear-gradient(225deg, var(--pure-white) 0%, var(--light-gray) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: var(--sky-blue);
    clip-path: polygon(0% 0%, 100% 0%, 60% 100%, 0% 100%);
    z-index: 0;
    opacity: 0.1;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--dusty-pink) 50%, transparent 100%);
    z-index: 1;
}

.about-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.card-icon i {
    color: var(--pure-white);
    font-size: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--charcoal);
}

.about-card p {
    color: #6c757d;
    text-align: center;
    line-height: 1.7;
}

/* Hosts Section */
.hosts-section {
    padding: 80px 0;
    background: var(--dusty-pink);
    position: relative;
    overflow: hidden;
}


.host-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 15px;
    position: relative;
    z-index: 2;
}

.host-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.host-image {
    margin-bottom: 1.5rem;
}

.host-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.host-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.host-title {
    color: var(--dusty-pink);
    font-weight: 700;
    margin-bottom: 1rem;
}

.host-bio {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.host-social {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.social-link {
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: 600;
}

.social-link:hover {
    color: var(--deep-crimson);
    text-decoration: underline;
}

/* Platforms Section */
.platforms-section {
    padding: 80px 0;
    background: var(--sky-blue);
    position: relative;
    overflow: hidden;
}





.platform-card {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 20px;
    background: var(--pure-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: inherit;
    text-decoration: none;
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.platform-icon.spotify {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
}

.platform-icon.apple {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.platform-icon.amazon {
    background: linear-gradient(135deg, #ff9900 0%, #ffad33 100%);
}

.platform-icon.patreon {
    background: linear-gradient(135deg, #ff424d 0%, #ff6b73 100%);
}

.platform-icon.rss {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
}

.platform-card p {
    margin: 0;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--charcoal);
    font-family: 'Nunito', sans-serif;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
}

/* Episodes Section */
.episodes-section {
    padding: 80px 0;
    background: linear-gradient(225deg, var(--light-gray) 0%, var(--pure-white) 100%);
    position: relative;
    overflow: hidden;
}

.episodes-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: var(--dusty-pink);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
    opacity: 0.08;
}

.episodes-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--pale-yellow) 50%, transparent 100%);
    z-index: 1;
}

/* Equal height for episode cards */
#episodes-container.row {
    display: flex;
    flex-wrap: wrap;
}

#episodes-container > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Dynamic Episode Loading */
.dynamic-episode {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.dynamic-episode.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.fallback-episode {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fallback-episode.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Loading state for episodes */
.episodes-loading {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.episodes-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--dusty-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Episode number variations for dynamic content */
.episode-number.latest {
    background: linear-gradient(135deg, var(--dusty-pink) 0%, var(--sky-blue) 100%);
    position: relative;
}

.episode-number.latest::after {
    content: '★';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.8rem;
    color: var(--pale-yellow);
}

.episode-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(69, 172, 211, 0.1);
    position: relative;
    margin-bottom: 2rem;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    height: 100%;
}

.episode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dusty-pink), var(--sky-blue));
}

.episode-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--sky-blue);
}

.episode-number {
    background: linear-gradient(135deg, var(--dusty-pink) 0%, var(--sky-blue) 100%);
    color: var(--pure-white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 4px 15px rgba(69, 172, 211, 0.3);
}

.episode-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    line-height: 1.4;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-author {
    color: var(--sky-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.episode-author::before {
    content: "📚";
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.episode-date {
    color: var(--charcoal);
    opacity: 0.6;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.episode-date::before {
    content: "📅";
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.btn-outline-primary {
    border: 2px solid var(--dusty-pink);
    color: var(--dusty-pink);
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--dusty-pink) 0%, var(--sky-blue) 100%);
    border-color: var(--dusty-pink);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(69, 172, 211, 0.4);
}

/* Transcripts Section */
.transcripts-section {
    background: var(--sky-blue);
    color: var(--pure-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.transcripts-section .section-title {
    color: var(--pure-white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.transcripts-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.transcripts-section .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.transcripts-section .text-primary {
    color: var(--pale-yellow) !important;
}

.transcripts-section .container {
    position: relative;
    z-index: 2;
}

/* Episode Search Styles */
.transcript-search-container {
    max-width: 700px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background: var(--pure-white);
    border: 2px solid rgba(69, 172, 211, 0.1);
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: var(--sky-blue);
    box-shadow: 0 12px 40px rgba(69, 172, 211, 0.2);
    transform: translateY(-2px);
}

.search-input {
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    background: transparent;
    outline: none;
    flex: 1;
    color: var(--charcoal);
    font-weight: 500;
}

.search-input::placeholder {
    color: rgba(52, 52, 52, 0.5);
    font-weight: 400;
}

.search-input:focus {
    box-shadow: none;
    outline: none;
}

.search-btn {
    border: none;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--dusty-pink), var(--sky-blue));
    color: var(--pure-white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--sky-blue), var(--dusty-pink));
    transform: scale(1.05);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.search-examples {
    opacity: 0.8;
}

/* Search Results */
.search-results {
    text-align: left;
    max-width: 900px;
    margin: 3rem auto 0;
}

.search-results h4 {
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.results-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.search-result {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(69, 172, 211, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.search-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dusty-pink), var(--sky-blue));
}

.search-result:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border-color: var(--sky-blue);
}

.search-result-animate {
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-episode-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.result-episode-title:hover {
    color: var(--sky-blue);
}

.result-episode-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.result-transcript-excerpt {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    font-family: Georgia, serif;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.highlight {
    background: var(--pale-yellow);
    color: var(--charcoal);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.result-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-read-transcript {
    background: var(--sky-blue);
    color: var(--pure-white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-read-transcript:hover {
    background: var(--dusty-pink);
    color: var(--pure-white);
    transform: translateY(-2px);
}

/* Search Loading */
.search-loading {
    text-align: center;
    padding: 3rem;
    color: var(--pure-white);
}

.search-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--pure-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--pure-white);
}

.no-results i {
    font-size: 3rem;
    opacity: 0.5;
}

/* Episode Search Section Styling */
.episodes-section h3.section-title {
    color: var(--charcoal);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.episodes-section .section-subtitle {
    color: rgba(52, 52, 52, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-input-group {
        border-radius: 40px;
    }
    
    .search-btn {
        padding: 1rem 1.5rem;
        min-width: 60px;
    }
    
    .search-input {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .result-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .episode-card {
        padding: 1.5rem;
    }
    
    .episode-title {
        font-size: 1.2rem;
    }
    
    .transcript-search-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .search-results {
        margin-top: 2rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(225deg, var(--light-gray) 0%, var(--pure-white) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: var(--pale-yellow);
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
    opacity: 0.15;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--dusty-pink) 50%, transparent 100%);
    z-index: 1;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--dusty-pink);
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: var(--dusty-pink);
}

.social-media-grid {
    margin-top: 3rem;
}

/* Equal height for social cards */
.social-media-grid .row {
    display: flex;
    flex-wrap: wrap;
}

.social-media-grid .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.social-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    height: 100%;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-avatar {
    margin-bottom: 1rem;
}

.social-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.social-card h5 {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.social-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    margin-top: auto;
}

.social-card p a {
    color: var(--dusty-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-card p a:hover {
    color: var(--sky-blue);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--pure-white);
    text-align: center;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        line-height: 45px;
        margin: 0 5px;
    }
    
    .about-card,
    .host-card {
        margin-bottom: 2rem;
    }
    
    .episode-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .episode-title {
        font-size: 1.2rem;
    }
    
    .episode-author::before,
    .episode-date::before {
        font-size: 1rem;
    }
    
    .floating-book {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-card,
    .host-card,
    .social-card {
        padding: 1.5rem;
    }
    
    .episode-card {
        padding: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 30px;
    }
}

/* Smooth Animations - Fix for card blinking/stuttering */
.about-card,
.host-card,
.social-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-card.fade-in,
.host-card.fade-in,
.social-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Episode cards have their own animation system */
.episode-card {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}
