/* ========================================
   Positiv Press - Consolidated Stylesheet
   ======================================== */

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

body {
    font-family: 'Inter', sans-serif;
    background: #FFFDF7;
    line-height: 1.6;
    color: #333333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.nav-links {
    display: flex;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFC107;
    text-decoration: none;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-link:hover {
    background: #fff8e1;
    color: #FFC107;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFC107 0%, #ffb300 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin: 3rem 0;
}

.section {
    margin-bottom: 3rem;
}

.section h2 {
    color: #333333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid #FFC107;
    padding-bottom: 0.5rem;
}

.section h3 {
    color: #333333;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.section p {
    color: #333333;
    margin-bottom: 1rem;
}

.section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.section li {
    color: #333333;
    margin-bottom: 0.5rem;
}

.mission-statement {
    background: #f9fafb;
    padding: 2rem;
    border-left: 4px solid #FFC107;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    border-radius: 4px;
}

/* Article Styles */
.date-section {
    margin: 3rem 0 2rem;
}

.date-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.article-count {
    color: #6b7280;
    font-size: 0.875rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-color: #d1d5db;
}

.article-image {
    height: 180px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.outlet {
    font-size: 0.75rem;
    color: #333333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.confidence {
    background: #2c8602;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #2c8602;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-excerpt {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ai-reasoning {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.ai-reasoning-label {
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ai-reasoning-text {
    color: #6b7280;
    font-size: 0.75rem;
    font-style: italic;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.read-more {
    background: #FFC107;
    color: #333333;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.read-more:hover {
    background: #ffb300;
    color: #333333;
}

/* Vote Buttons */
.vote-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vote-btn {
    background: #ffffff;
    color: #333333;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.75rem;
}

.vote-btn:hover {
    background: #dddddd;
    border-color: #dddddd;
}

.vote-btn:active {
    transform: scale(0.95);
}

.vote-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333333;
    min-width: 1.5rem;
    text-align: center;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.empty-icon {
    font-size: 4rem;
    color: #FFC107;
    margin-bottom: 1.5rem;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.empty-text {
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Filter Section */
.filter-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: #333333;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-section .filter-label i {
    margin-right: 0.5rem;
}

.outlet-filter {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    color: #333333;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.outlet-filter:hover {
    border-color: #FFC107;
}

.outlet-filter:focus {
    outline: none;
    border-color: #FFC107;
    box-shadow: 0 0 0 2px rgba(255,193,7,0.2);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255,193,7,0.2);
}

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

.stat-label {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Call to Action */
.call-to-action {
    background: linear-gradient(135deg, #FFC107 0%, #ffb300 100%);
    color: #333333;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.call-to-action h2 {
    color: #333333;
    border-bottom: 2px solid #333333;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.call-to-action p {
    color: #333333;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #FFC107;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,193,7,0.3);
}

/* Footer */
.footer {
    background: #FFC107;;
    color: #ffffff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid #FFC107;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
    animation: slideUp 0.3s ease-out;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: #4FC3F7;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #FFC107;
    color: #333333;
}

.cookie-btn-accept:hover {
    background: #ffb300;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255,193,7,0.3);
}

.cookie-btn-decline {
    background: #f3f4f6;
    color: #333333;
    border: 1px solid #e5e7eb;
}

.cookie-btn-decline:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

