/**
 * Podcastler Sayfası CSS
 */

/* Hero Section */
.podcast-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(45, 55, 72, 0.95) 50%, rgba(26, 32, 44, 0.92) 100%),
                url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=1920&h=600&fit=crop') center/cover no-repeat;
    padding: 20px 0;
    text-align: center;
    overflow: hidden;
}

.podcast-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/podcast-pattern.svg') repeat;
    opacity: 0.03;
}

.podcast-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 40%);
}

.podcast-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.podcast-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.podcast-hero .hero-badge i {
    font-size: 18px;
    color: #6366f1;
}

.podcast-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.podcast-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto!important;
}

/* Main Section */
.podcast-section {
    padding: 60px 0;
    background: #f8fafc;
}

.main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
}

/* Sidebar */
.filters-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px!important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-title i {
    color: #6366f1;
}

.search-form {
    display: flex;
    gap: 8px;
}

.search-input {
    flex: 1;
    padding: 12px 2px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-btn {
    padding: 12px 16px;
    background: #0b41a7;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #4f46e5;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.category-list a:hover,
.category-list a.active {
    background: #f1f5f9;
    color: #1e293b;
}

.category-list a.active {
    background: linear-gradient(135deg, #3d6ed4 0%, #052139 100% 100%);
    color: #fff;
}

.category-list a.active i {
    color: #fff !important;
}

.category-list .count {
    margin-left: auto;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-list a.active .count {
    background: rgba(255, 255, 255, 0.2);
}

/* Platform Card */
.platform-card .platform-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.platform-link:hover {
    opacity: 0.9;
}

.platform-link.spotify {
    background: #1DB954;
}

.platform-link.apple {
    background: linear-gradient(135deg, #fc3c44 0%, #8c4191 100%);
}

.platform-link.youtube {
    background: #FF0000;
}

/* Content Area */
.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.category-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.category-info p {
    color: #64748b;
    font-size: 14px;
}

.search-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
}

.clear-search {
    color: #6366f1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.clear-search:hover {
    text-decoration: underline;
}

/* Podcast Grid */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.podcast-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.podcast-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.podcast-card:hover .card-image img {
    transform: scale(1.05);
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 64px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.podcast-card:hover .play-overlay {
    opacity: 1;
}

.card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.card-content {
    padding: 24px;
}

.card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #64748b;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.card-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #6366f1;
}

.card-speaker {
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-speaker i {
    color: #6366f1;
}

.speaker-title {
    color: #94a3b8;
}

.card-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.listens {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.listen-btn:hover {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
}

.no-results i {
    font-size: 64px;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 8px;
}

.no-results p {
    color: #64748b;
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 260px 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .main-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .filter-card:last-child {
        grid-column: 1 / -1;
    }
    
    .podcast-hero .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .podcast-hero {
        padding: 60px 0;
    }
    
    .podcast-hero .hero-title {
        font-size: 28px;
    }
    
    .podcast-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .filters-sidebar {
        grid-template-columns: 1fr;
    }
    
    .podcast-grid {
        grid-template-columns: 1fr;
    }
    
    .podcast-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .podcast-hero .hero-title {
        font-size: 24px;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .listen-btn {
        width: 100%;
        justify-content: center;
    }
}

