/* Offer786.com Main Styles */

/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding-top: 0;
    color: #333;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: #4a6cf7;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3a5bd6;
}

/* Header */
.site-header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: #fff !important;
}

.site-header .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
}

.site-header .navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.site-header .navbar-nav .nav-link:hover {
    color: #4a6cf7;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #4a6cf7 0%, #6a3de8 100%);
    padding: 80px 0;
    color: white;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    margin-bottom: 1.5rem;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Blog post cards */
.blog-post-card {
    height: 100%;
}

.blog-post-card .card-body {
    display: flex;
    flex-direction: column;
}

.blog-post-card .card-text {
    flex: 1;
}

/* Footer */
.site-footer {
    background: #1a1a2e !important;
    color: #b8b8b8;
    padding: 40px 0 20px;
}

.site-footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.site-footer a {
    color: #b8b8b8;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: white;
}

.site-footer .social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.25rem;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: #4a6cf7;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Content */
.content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.content table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
}

.content table th,
.content table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.content table th {
    background: #f8f9fa;
    font-weight: 600;
}

.content blockquote {
    border-left: 4px solid #4a6cf7;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
}

.content pre {
    background: #1a1a2e;
    color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .card .card-img-top {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
}