/* PremiumPress Demo - Custom Styles */

:root {
    --primary-color: #0d6efd;
    --premium-color: #ffc107;
    --public-color: #198754;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* Article Cards */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-title a:hover {
    color: var(--primary-color) !important;
}

/* Premium Gate */
.premium-gate {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border-left: 4px solid var(--premium-color);
}

/* Article Body */
.article-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

/* Author Bio */
.author-bio {
    border-left: 4px solid var(--primary-color);
}

/* Badges */
.badge {
    font-weight: 500;
    padding: 0.4em 0.6em;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Footer */
footer {
    margin-top: auto;
}

footer a:hover {
    color: var(--premium-color) !important;
}

/* Pricing Cards */
.pricing-card {
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .article-body {
        font-size: 1rem;
    }
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
