/* Page-specific styles for auxiliary pages */

/* Page Header Styles */
.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.page-nav {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #4F46E5;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid #4F46E5;
    border-radius: 6px;
}

.nav-link:hover {
    background: #4F46E5;
    color: white;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main Page Content */
.page-main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 12px;
}

.page-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

/* About Page Styles */
.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.about-section h2 {
    color: #4F46E5;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.about-section p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-info {
    display: grid;
    gap: 1.5rem;
}

.info-item h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    color: #64748b;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.value-item h3 {
    color: #4F46E5;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.value-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Legal Pages Styles */
.legal-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    min-height: 400px;
}

.placeholder-text {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px dashed #cbd5e1;
}

/* Legal Content Styles */
.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    color: #4F46E5;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section h3 {
    color: #1e293b;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem 0;
}

.policy-section ul, .policy-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-top: 1rem;
}

.policy-section a {
    color: #4F46E5;
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* Enhanced About Page Styles */
.mission-content, .company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.company-content {
    grid-template-columns: 1fr 1.5fr;
}

.value-item {
    text-align: center;
}

.value-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.why-podcast {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.why-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .about-section,
    .legal-content {
        padding: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 2rem 1rem;
    }
    
    .mission-content, .company-content, .why-podcast {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .about-section,
    .legal-content {
        padding: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .why-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}