/* Custom styles for Truth Is Reason website */

:root {
    --primary-color: #101b2c;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --bs-primary: #cd353a;
    --bs-primary-rgb: 199, 68, 72;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
    font-size: 2.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Article Styles */
article img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

article h2, article h3 {
    color: var(--dark-color);
    margin-top: 2rem;
}

article p {
    font-size: 1.1rem;
    color: #495057;
}

/* Blockquotes */
.blockquote {
    font-size: 1.25rem;
    font-style: italic;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

/* Utilities */
.text-muted {
    color: #6c757d !important;
}

/* Custom button styles */
.btn {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
