/* ========================================
   BHAARATHH - EXTENDED CUSTOM STYLES
   ======================================== */

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 20px;
}

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

.text-muted {
    color: var(--text-muted);
}

/* Link Styles */
a {
    color: var(--neon-saffron);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Code Blocks */
pre {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border-left: 4px solid var(--neon-saffron);
}

code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin-left: 0;
    color: var(--text-muted);
    font-style: italic;
}

/* Lists */
ul, ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background: #f5f5f5;
    font-weight: 700;
    color: var(--charcoal);
}

table tr:hover {
    background: #fafafa;
}

/* Forms */
input[type="email"],
input[type="text"],
input[type="search"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--neon-saffron);
    box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.1);
}

/* Breadcrumbs */
.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--neon-saffron);
}

.breadcrumb span {
    margin: 0 10px;
    color: var(--text-muted);
}

/* Tags */
.tag {
    display: inline-block;
    background: #f5f5f5;
    color: var(--charcoal);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--neon-saffron);
    color: white;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-primary {
    background: var(--neon-saffron);
    color: white;
}

.badge-secondary {
    background: #f5f5f5;
    color: var(--charcoal);
}

/* Alerts */
.alert {
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-info {
    background: #e3f2fd;
    border-color: #2196f3;
    color: #1565c0;
}

.alert-success {
    background: #e8f5e9;
    border-color: #4caf50;
    color: #2e7d32;
}

.alert-warning {
    background: #fff3e0;
    border-color: #ff9800;
    color: #e65100;
}

.alert-error {
    background: #ffebee;
    border-color: #f44336;
    color: #c62828;
}

/* Print Styles */
@media print {
    header,
    footer,
    .fab-share,
    #progress-bar {
        display: none;
    }

    .post-container {
        box-shadow: none;
        border: none;
    }

    a {
        color: inherit;
    }
}
